mirror of
https://github.com/falcosecurity/falco.git
synced 2025-07-18 08:41:31 +00:00
chore(falco.yaml): added config maturity to index.
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
This commit is contained in:
parent
c03ce122e7
commit
1b22c4566a
92
falco.yaml
92
falco.yaml
@ -26,49 +26,50 @@
|
|||||||
# (Falco command-line arguments)
|
# (Falco command-line arguments)
|
||||||
# (Falco environment variables)
|
# (Falco environment variables)
|
||||||
# Falco configs files
|
# Falco configs files
|
||||||
# configs_files
|
# configs_files [Stable]
|
||||||
|
# watch_config_files [Stable]
|
||||||
# Falco rules files
|
# Falco rules files
|
||||||
# rules_files
|
# rules_files [Stable]
|
||||||
|
# Falco rules
|
||||||
|
# rules [Incubating]
|
||||||
# Falco engine
|
# Falco engine
|
||||||
# engine
|
# engine [Stable]
|
||||||
# Falco plugins
|
# Falco plugins
|
||||||
# load_plugins
|
# load_plugins [Stable]
|
||||||
# plugins
|
# plugins [Stable]
|
||||||
# Falco config files
|
|
||||||
# watch_config_files
|
|
||||||
# Falco outputs settings
|
# Falco outputs settings
|
||||||
# time_format_iso_8601
|
# time_format_iso_8601 [Stable]
|
||||||
# priority
|
# priority [Stable]
|
||||||
# json_output
|
# json_output [Stable]
|
||||||
# json_include_output_property
|
# json_include_output_property [Stable]
|
||||||
# json_include_tags_property
|
# json_include_tags_property [Stable]
|
||||||
# buffered_outputs
|
# buffered_outputs [Stable]
|
||||||
# rule_matching
|
# rule_matching [Incubating]
|
||||||
# outputs_queue
|
# outputs_queue [Stable]
|
||||||
# Falco outputs channels
|
# Falco outputs channels
|
||||||
# stdout_output
|
# stdout_output [Stable]
|
||||||
# syslog_output
|
# syslog_output [Stable]
|
||||||
# file_output
|
# file_output [Stable]
|
||||||
# http_output
|
# http_output [Stable]
|
||||||
# program_output
|
# program_output [Stable]
|
||||||
# grpc_output
|
# grpc_output [Stable]
|
||||||
# Falco exposed services
|
# Falco exposed services
|
||||||
# grpc
|
# grpc [Stable]
|
||||||
# webserver
|
# webserver [Stable]
|
||||||
# Falco logging / alerting / metrics related to software functioning (basic)
|
# Falco logging / alerting / metrics related to software functioning (basic)
|
||||||
# log_stderr
|
# log_stderr [Stable]
|
||||||
# log_syslog
|
# log_syslog [Stable]
|
||||||
# log_level
|
# log_level [Stable]
|
||||||
# libs_logger
|
# libs_logger [Stable]
|
||||||
# Falco logging / alerting / metrics related to software functioning (advanced)
|
# Falco logging / alerting / metrics related to software functioning (advanced)
|
||||||
# output_timeout
|
# output_timeout [Stable]
|
||||||
# syscall_event_timeouts
|
# syscall_event_timeouts [Stable]
|
||||||
# syscall_event_drops -> [CHANGE NOTICE] Automatic notifications will be simplified in Falco 0.38! If you depend on the detailed drop counters payload, use 'metrics.output_rule' along with 'metrics.kernel_event_counters_enabled' instead
|
# syscall_event_drops [Stable] -> [CHANGE NOTICE] Automatic notifications will be simplified in Falco 0.38! If you depend on the detailed drop counters payload, use 'metrics.output_rule' along with 'metrics.kernel_event_counters_enabled' instead
|
||||||
# metrics
|
# metrics [Stable]
|
||||||
# Falco performance tuning (advanced)
|
# Falco performance tuning (advanced)
|
||||||
# base_syscalls
|
# base_syscalls [Stable]
|
||||||
# Falco libs
|
# Falco libs
|
||||||
# falco_libs
|
# falco_libs [Incubating]
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Config maturity tags #
|
# Config maturity tags #
|
||||||
@ -145,6 +146,16 @@
|
|||||||
configs_files:
|
configs_files:
|
||||||
- /etc/falco/config.d
|
- /etc/falco/config.d
|
||||||
|
|
||||||
|
# [Stable] `watch_config_files`
|
||||||
|
#
|
||||||
|
# Falco monitors configuration and rule files for changes and automatically
|
||||||
|
# reloads itself to apply the updated configuration when any modifications are
|
||||||
|
# detected. This feature is particularly useful when you want to make real-time
|
||||||
|
# changes to the configuration or rules of Falco without interrupting its
|
||||||
|
# operation or losing its state. For more information about Falco's state
|
||||||
|
# engine, please refer to the `base_syscalls` section.
|
||||||
|
watch_config_files: true
|
||||||
|
|
||||||
#####################
|
#####################
|
||||||
# Falco rules files #
|
# Falco rules files #
|
||||||
#####################
|
#####################
|
||||||
@ -470,21 +481,6 @@ plugins:
|
|||||||
library_path: libjson.so
|
library_path: libjson.so
|
||||||
|
|
||||||
|
|
||||||
######################
|
|
||||||
# Falco config files #
|
|
||||||
######################
|
|
||||||
|
|
||||||
# [Stable] `watch_config_files`
|
|
||||||
#
|
|
||||||
# Falco monitors configuration and rule files for changes and automatically
|
|
||||||
# reloads itself to apply the updated configuration when any modifications are
|
|
||||||
# detected. This feature is particularly useful when you want to make real-time
|
|
||||||
# changes to the configuration or rules of Falco without interrupting its
|
|
||||||
# operation or losing its state. For more information about Falco's state
|
|
||||||
# engine, please refer to the `base_syscalls` section.
|
|
||||||
watch_config_files: true
|
|
||||||
|
|
||||||
|
|
||||||
##########################
|
##########################
|
||||||
# Falco outputs settings #
|
# Falco outputs settings #
|
||||||
##########################
|
##########################
|
||||||
|
Loading…
Reference in New Issue
Block a user