Document general configuration

This commit is contained in:
Henri DF 2016-05-10 13:27:05 -07:00
parent 1c3ae275d7
commit 4e525e3114
2 changed files with 15 additions and 3 deletions

View File

@ -92,12 +92,15 @@ For many more examples of rules and macros, please take a look at the accompanyi
#### Ignored system calls
For performance reasons, some system calls are currently discarded before Falco processing. The current list is:
For performance reasons, some system calls are currently discarded before Falco processing. The current list is:
`clock_getres,clock_gettime,clock_nanosleep,clock_settime,close,epoll_create,epoll_create1,epoll_ctl,epoll_pwait,epoll_wait,eventfd,fcntl,fcntl64,fstat,fstat64,getitimer,gettimeofday,nanosleep,poll,ppoll,pread64,preadv,pselect6,pwrite64,pwritev,read,readv,recv,recvfrom,recvmmsg,recvmsg,select,send,sendfile,sendfile64,sendmmsg,sendmsg,sendto,setitimer,settimeofday,shutdown,socket,splice,switch,tee,timer_create,timer_delete,timerfd_create,timerfd_gettime,timerfd_settime,timer_getoverrun,timer_gettime,timer_settime,wait4,write,writev`
## Configuration
Falco is configured via a yaml file. The sample config `falco.yaml` in this repo has comments describing the various options.
General configuration is done via a separate yaml file. The
[config file](falco.yaml) in this repo has comments describing the various
configuration options.
## Installation

View File

@ -1,9 +1,18 @@
rules_file: /etc/falco_rules.yaml
# File containing Falco rules, loaded at startup.
rules_file: /etc/falco_rules.conf
# Whether to output events in json or text
json_output: false
# Send information logs to stderr and/or syslog Note these are *not* security
# notification logs! These are just Falco lifecycle (and possibly error) logs.
log_stderr: false
log_syslog: true
# Where security notifications should go.
# Multiple outputs can be enabled.
syslog_output:
enabled: true