Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 2.86 KB

stan.md

File metadata and controls

44 lines (34 loc) · 2.86 KB

STAN

Table of content

Configuration

Setting Env var Default value Description
stan.hostport STAN_HOSTPORT stan://{domain or ip}:{port}, if not empty, STAN output is enabled
stan.subjecttemplate STAN_SUBJECTTEMPLATE falco.<priority>.<rule> Template for the subject, tokens and will be automatically replaced
stan.clusterid STAN_CLUSTERID Cluster name (mandatory)
stan.clientid STAN_CLIENTID Client ID (mandatory)
stan.checkcert STAN_CHECKCERT true Check if ssl certificate of the output is valid
stan.minimumpriority STAN_MINIMUMPRIORITY "" (= debug) Minimum priority of event for using this output, order is emergency,alert,critical,error,warning,notice,informational,debug or ""

Note

The Env var values override the settings from yaml file.

Example of config.yaml

stan:
  hostport: "" # stan://{domain or ip}:{port}, if not empty, STAN output is enabled
  clusterid: "" # Cluster name (mandatory)
  clientid: "" # Client ID (mandatory)
  # subjecttemplate: "falco.<priority>.<rule>" # template for the subject, tokens <priority> and <rule> will be automatically replaced (default: falco.<priority>.<rule>)
  # minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informational|debug or "" (default)
  # mutualtls: false # if true, checkcert flag will be ignored (server cert will always be checked)
  # checkcert: true # check if ssl certificate of the output is valid (default: true)

Additional info

Screenshots