Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added how to modify the log level for Falco #522

Merged
merged 2 commits into from
Mar 26, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion deploy/docs/Best_Practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,17 @@ If you want to filter metrics by namespace, it can be done in the prometheus rem
regex: kube-state-metrics;(namespace1|namespace2)
sourceLabels: [job, namespace]
```
The above section should be added in each of the kube-state remote write blocks.
The above section should be added in each of the kube-state remote write blocks.

### Modify the Log Level for Falco
To modify the default log level for Falco, edit the following section in the values.yaml file. Available log levels can be found in Falco's documentation here: https://falco.org/docs/configuration/.
```
falco:
## Set the enabled flag to false to disable falco.
enabled: true
#ebpf:
# enabled: true
falco:
jsonOutput: true
loglevel: debug
```