Output Formatting
Previous guides introduced the Output Fields of Falco Rules and provided Guidelines on how to use them. This section specifically highlights additional global formatting options for your deployment, complementing the information previously provided.
First, note that you can always manually edit any rule to output more or fewer fields by simply editing output
section for a given rule within the rules' YAML file.
However, adding the same output field to multiple rules manually can be tedious. Thankfully Falco has a shortcut to make this eaier.
Falco inherently supports event decoration for associated Container and Kubernetes metadata using a special placeholder field (%container.info
) in a rule's output section.
To take advantage of event decoration, you need to run Falco with either the -pk
or -pc
command-line option.
If you have an even more customized use case, Falco also provides a -p
flag where you can define additional custom output fields to be included in each rule.
Example Rule
Scenario 1
The rule outputs include %container.info
, but Falco is started without any command line flags:
In this case Falco will output %container.id
and %container.name
but no other container metadata will be displayed:
Scenario 2
The rule outputs include %container.info
, and Falco is started with the -pc
flag:
The output includes the default container fields:
Scenario 3
The rule outputs include %container.info
, and Falco is started with the -pk
flag:
Output includes the default container fields and the default Kubernetes fields:
Scenario 4
The rule outputs include %container.info
, and you run Falco with the -p
flag while providing custom output fields:
The output includes your custom output fields along with the default %container.id
and %container.name
because the rule still contained the %container.info
placeholder field:
Was this page helpful?
Let us know! You feedback will help us to improve the content and to stay in touch with our users.
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.