I can run `select * from chrome_extensions;` from...
# fleet
r
I can run
select * from chrome_extensions;
from osqueryi but when I run in Fleet it doesn't return any results. No errors either. Running 4.8
z
I see in your other thread that you may have typoed the table name. Are you running the exact same query in Fleet?
If so, it's possible you are running into the difference between running osquery as root vs. nonroot. If you're running as root you may need to use
select * from users cross join chrome_extensions using (uid);
4
r
That did it
🍻 1