https://github.com/osquery/osquery logo
#general
Title
# general
z

Zach Zeid

07/28/2020, 8:27 PM
I'm working on splitting results to multiple interfaces, but I'm running into an issue. it says I can enable multiple loggers by setting
--logger_plugin
to a comma separate list. My config file is JSON, but when I do
Copy code
"logger_plugin": "aws_firehose","tls",
it fails
config-check
but when I do
Copy code
"logger_plugin": ["aws_firehose","tls"],
it doesn't like that either.
z

zwass

07/28/2020, 8:28 PM
"logger_plugin": "aws_firehose,tls"
The first is invalid JSON. The second is valid JSON but not the expected schema.
z

Zach Zeid

07/28/2020, 8:29 PM
facepalm This is where I give up tech and become a potato farmer.
z

zwass

07/28/2020, 8:30 PM
heh, these kind of things are always fun
4 Views