mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
22 lines
593 B
JSON
22 lines
593 B
JSON
{%- set MANAGER = grains['manager'] -%}
|
|
{%- set SENSORONIKEY = salt['pillar.get']('static:sensoronikey', '') -%}
|
|
{
|
|
"logFilename": "/opt/sensoroni/logs/sensoroni.log",
|
|
"logLevel":"debug",
|
|
"agent": {
|
|
"pollIntervalMs": 10000,
|
|
"serverUrl": "https://{{ MANAGER }}/sensoroniagents",
|
|
"verifyCert": false,
|
|
"modules": {
|
|
"statickeyauth": {
|
|
"apiKey": "{{ SENSORONIKEY }}"
|
|
},
|
|
"stenoquery": {
|
|
"executablePath": "/opt/sensoroni/scripts/stenoquery.sh",
|
|
"pcapInputPath": "/nsm/pcap",
|
|
"pcapOutputPath": "/nsm/pcapout"
|
|
}
|
|
}
|
|
}
|
|
}
|