https://github.com/osquery/osquery logo
Title
e

Erich Stoekl

04/14/2020, 6:52 PM
Hi Folks. I'm currently testing to see if Redis is working with distributed queries. I have two different osquery nodes connected to two different fleet servers, which are part of the same cluster. I am able to run commands from one of the fleet servers, and it hits all osquery nodes. Is there a redis-cli command I can use to see the distributed query in redis?
z

zwass

04/14/2020, 7:29 PM
If you get the campaign ID returned from the API you could
SUBSCRIBE
in the redis-cli. This is probably going to be tricky.
You won't get live query results at all if Redis isn't working. If you are getting results, Redis is working.
👍 1
e

Erich Stoekl

04/14/2020, 7:42 PM
awesome, thanks!