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

slevchenko

09/06/2022, 6:44 AM
Is there any documentation on creating logger plugin\extension for osquery ? I need to pipe osquery results to my extension without external storages like kafka
s

sharvil

09/06/2022, 10:49 AM
We have a very basic getting started guide here: https://osquery.readthedocs.io/en/latest/development/logger-plugins/ I am not aware of other such documentation
s

slevchenko

09/06/2022, 10:55 AM
@sharvil Thank you very much, is there any possibility to do the same with Python or Go? Asking because I have 0 C\C++ experience.
s

sharvil

09/06/2022, 10:59 AM
hello @slevchenko, does something like this help https://github.com/osquery/osquery-go/blob/master/examples/logger/main.go ? It will use the osquery-go bindings, which itself will use thrift under the hood
s

slevchenko

09/06/2022, 11:00 AM
@sharvil Thanks that's 100% what I need. Thanks alot