CptOfEvilMinions
05/24/2022, 8:27 PM<http://github.com/osquery/osquery-go|github.com/osquery/osquery-go> v1.0.0
to my go.mod
seph
v0.0.0-20220317165851-954ac78f381f
which is what it looks like today?
And the v0
pattern is pretty common for go modules.seph
CptOfEvilMinions
05/24/2022, 9:37 PMv0.0.0-20220317165851-954ac78f381f
.
Also I like when the osquery project does releases, it includes the changes between releases which is nice. I understand if it’s a big lift for a small change but just something I wanted to ask about.CptOfEvilMinions
05/24/2022, 9:39 PMv0.0.0-*
notation can signal that a golang module is still in development. Is osquery-go still considered in development?zwass
seph
seph
seph
seph
seph
seph
seph
seph
seph
seph
Lucas Rodriguez
07/06/2023, 8:03 PM.github/workflows/go.yml
), any reason there's a failed CircleCI link in the repository README?Rebecca Mahany-Horton
07/07/2023, 2:56 PMRebecca Mahany-Horton
07/07/2023, 3:48 PMAleksandr Maus
09/19/2023, 4:50 PM*osquery.ExtensionManagerQueryArgs.sql (1) field write error: i/o timeout
, or query: out of order sequence response
As far as I remember the timeout at RPC level doesn’t stop the running query.
Would appreciate some advice in case if somebody already saw that or have some suggestions how to handle this better.
@seph maybe you have some insight?Aleksandr Maus
09/21/2023, 5:52 PMseph
seph
Rebecca Mahany-Horton
10/06/2023, 1:39 PMmessages
key we weren't currently extracting in osquery-go, so I've updated to include: https://github.com/osquery/osquery-go/pull/115Lucas Rodriguez
11/07/2023, 8:49 PMExtensionManagerServer.Shutdown
more than once (I believe this was introduced here).Ronald Cardoso
02/08/2024, 7:00 PMZane Alumbaugh
03/06/2024, 5:48 PM.ext
binary). We have successfully managed to get the plugins to communicate with osqueryd
using extensions_require
and not specifying the extensions_autoload
flag.
However, we have noticed that before osqueryd
sets up the scheduler, it still waits the extensions_timeout
interval and then prints that it was unable to load the required extension (however, it does not crash because it was registered via connection to the socket from our process). Is there a way to disable the autoload behavior and only attempt to connect the plugins from the extension manager creation?John Doe
06/13/2024, 4:03 PMschedule_splay_percent
flag enabled by default when using small or identical intervals?
My Observations:
1. When queries have the same interval, they are executed within that interval. For example, with a 30-second interval, execution happens within 30 seconds, and with a 60-second interval, it happens within 60 seconds. However, I've noticed that the execution time increases as the interval increases. Why does this happen?
2. It seems like osquery executes the queries sequentially.
3. I couldn't find any information about the schedule_splay_percent
flag.
Any insights or clarifications would be greatly appreciated. Thanks for your help!Jun S/hen
06/17/2024, 5:21 PMRebecca Mahany-Horton
01/29/2025, 5:00 PM