update fylgja.example.yml
This commit is contained in:
parent
7988853b57
commit
2082b844b4
1 changed files with 29 additions and 6 deletions
|
@ -3,8 +3,8 @@
|
|||
|
||||
# Slack settings
|
||||
slack:
|
||||
bot_token: "xoxb-TOKEN_HERE"
|
||||
signing_secret: "SIGNING_SECRET_HERE"
|
||||
bot_token: "xoxb-TOKEN"
|
||||
signing_secret: "SIGNING_SECRET"
|
||||
|
||||
# Server settings
|
||||
server:
|
||||
|
@ -26,10 +26,33 @@ sigma:
|
|||
url: "https://github.com/SigmaHQ/sigma.git"
|
||||
branch: "main"
|
||||
|
||||
# Elastic settings
|
||||
elastic:
|
||||
api-endpoint: "http://localhost:5601/api/detection_engine/rules"
|
||||
elastic-authentication-credentials: "elastic:changeme"
|
||||
# Elasticsearch settings
|
||||
elasticsearch:
|
||||
protocol: "http"
|
||||
hosts: ["localhost:9200"]
|
||||
username: "elastic"
|
||||
password: "changeme"
|
||||
api_endpoint: "http://localhost:5601/api/detection_engine/rules"
|
||||
spaces: [
|
||||
{
|
||||
name: "Default",
|
||||
id: "default",
|
||||
indexPattern: "logs-*",
|
||||
emoji: "🔍"
|
||||
},
|
||||
{
|
||||
name: "space2",
|
||||
id: "space2",
|
||||
indexPattern: ["space2-*", "test2-*"],
|
||||
emoji: "🟢"
|
||||
},
|
||||
{
|
||||
name: "space3",
|
||||
id: "space3",
|
||||
indexPattern: "space3-*",
|
||||
emoji: "🐧"
|
||||
}
|
||||
]
|
||||
|
||||
# Logging settings
|
||||
logging:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue