FEAT(falco): add loki output to falcosidekick
- Send Falco events directly to Loki - Enables viewing detailed events in Grafana with all fields - Same data as Falco UI but queryable in Grafana
This commit is contained in:
@@ -35,6 +35,10 @@ falco:
|
|||||||
# Performance tuning
|
# Performance tuning
|
||||||
buffered_outputs: true
|
buffered_outputs: true
|
||||||
|
|
||||||
|
# Rate limiting - reduce duplicate alerts
|
||||||
|
outputs_rate: 1 # Max 1 alert per second per rule
|
||||||
|
outputs_max_burst: 10 # Allow burst of 10 alerts
|
||||||
|
|
||||||
# Rules configuration
|
# Rules configuration
|
||||||
rules_files:
|
rules_files:
|
||||||
- /etc/falco/falco_rules.yaml
|
- /etc/falco/falco_rules.yaml
|
||||||
@@ -130,6 +134,12 @@ falcosidekick:
|
|||||||
# Output to stdout/logs
|
# Output to stdout/logs
|
||||||
debug: false
|
debug: false
|
||||||
|
|
||||||
|
# Loki integration - send events directly to Loki
|
||||||
|
loki:
|
||||||
|
hostport: "http://loki.loki.svc.cluster.local:3100"
|
||||||
|
minimumpriority: "" # Send all priorities
|
||||||
|
format: "json" # JSON format for easier parsing in Grafana
|
||||||
|
|
||||||
# Slack integration (optional)
|
# Slack integration (optional)
|
||||||
# slack:
|
# slack:
|
||||||
# webhookurl: ""
|
# webhookurl: ""
|
||||||
|
|||||||
Reference in New Issue
Block a user