Configure Sysdig Linux Agent
Follow the instructions on this page to implement configurations found in the Configuration Library.
For the latest Helm-based configuration options, see the Shields chart.
Modify the dragent.yaml file to configure the agent. How you configure dragent.yaml depends on whether the agent was installed:
- In a Kubernetes environment.
- In a non-orchestrated container, such as a Docker.
- As a Linux package.
Kubernetes
If Sysdig agent is installed in a Kubernetes environment with Helm, you can edit the dragent.yaml with Helm.
To edit dragent.yaml with Helm, you can:
- Add configuration to
values.yaml. - Use key-values as inline arguments with
helm install.
For example, to edit dragent.yaml in Helm syntax:
helm install sysdig-agent \
--namespace sysdig-agent \
--set global.clusterConfig.name='my_cluster' \
--set global.sysdig.tags.{tag_name_1}={tag_value_1} \
--set global.sysdig.tags.{tag_name_2}={tag_value_2} \
--set global.sysdig.tags.{tag_name_3}={tag_value_3} \
sysdig/sysdig-deploy
where for each tag_name you have a specific tag_value like:
helm install sysdig-agent \
--namespace sysdig-agent \
--set global.clusterConfig.name='my_cluster' \
--set global.sysdig.tags.linux=ubuntu \
--set global.sysdig.tags.dept=dev \
--set global.sysdig.tags.local=nyc \
sysdig/sysdig-deploy
This command will be translated into the following:
data:
dragent.yaml: |
tags: linux:ubuntu,dept:dev,local:nyc
k8s_cluster_name: my_cluster
For more details, including instruction on utilizing values.yaml see Sysdig Deploy.
Container
If Sysdig agent is installed in a non-orchestrated environment such as Docker, you can edit the dragent.yaml file in one or more of the following ways:
Mount the
dragent.yamlfile as a Docker volume inside the container.docker run -v /home/admin-user/config-files/sysdig-agent/dragent.yaml:/opt/draios/etc/dragent.yaml ... quay.io/sysdig/agentPass parameters that will be appended to a dynamically generated
dragent.yamlfile via theADDITIONAL_CONFenvironment variable.docker run -e ADDITIONAL_CONF="<dragent.yaml parameters>" ... quay.io/sysdig/agentIf
dragent.yamlis mounted as a Docker volume inside the container, theADDITIONAL_CONFenvironment variable will be ignored.Use environment variables such as
COLLECTOR,ACCESS_KEY,TAGS, and so on to add or override specific parameters indragent.yaml.
- Format the
TAGSenvironment variable as a comma-separated list of key-value pairs in one line. For example,-e TAGS="key1:value1,key2:value2,key3:value3". - Avoid using multiline values or line breaks, as they will result in a malformed
dragent.yaml.
- Pass environment variables directly to the agent such as
SYSDIG_AGENT_DRIVERorSYSDIG_BPF_PROBE.
Edit dragent.yaml
Mount
dragent.yamlas a container.Log in to the host where the agent is installed.
Locate and open
dragent.yaml.If
dragent.yamlis mounted inside an agent container as a Docker volume, it may be located anywhere on the host that the administrator finds convenient.Edit the file using proper YAML syntax.
For changes to take effect, restart the agent with the command:
docker restart sysdig-agent
docker run
Use the docker run command with -e ADDITIONAL_CONF="<VARIABLES>" where <VARIABLES> contains all the customized parameters you want to include.
Convert YAML Parameters to Single-Line Format
To insert ADDITIONAL_CONF parameters in a docker run command or a DaemonSet file, you must convert the YAML code into a single line. You can do the conversion manually for short snippets. To convert longer portions of YAML, use echo|sed commands:
Write your configuration in YAML, as it would be entered directly in
dragent.yaml.In a Bash shell, use
echoandsedto convert to a single line:echo '<YAML_CONTENT>' | sed -e ':a' -e 'N' -e '$!ba' -e 's/\n/\\n/g'Insert the resulting line into the
docker runcommand or add it to the DaemonSet file as anADDITIONAL_CONF.
Linux
If the Sysdig agent is installed in a Linux host via a .rpm or .deb package, edit dragent.yaml directly.
On
.rpminstallations, environment variables may be specified in/etc/sysconfig/dragent.On
.debinstallations, environment variables may be specified in/etc/default/dragent.
The systemd supervisor does not support inline comments for environment variables. If you edit the file after setup, do not write comments on the same line where you define the environment variable.
The agent and its probe-loader shell script understand the following environment variables:
SYSDIG_AGENT_DRIVER(12.17.0 and newer)SYSDIG_BPF_PROBE
Use one of the following:
- Agent version 12.17.0 or newer
SYSDIG_AGENT_DRIVER=universal_ebpf - Agent versions before 12.17.0
export SYSDIG_BPF_PROBE=""
This environment file is sourced directly by the agent init script. For agent versions before 12.17.0, the export keyword is required.
Edit dragent.yaml
Log in to the host where the agent is installed.
Open
/opt/draios/etc/dragent.yaml.Edit the file using proper YAML syntax. See Examples.
For changes to take effect, restart the agent with the command:
service dragent restart
Environment Variables Used by Entry Point Script for Non-Orchestrated Containers
Name | Value | Description |
|---|---|---|
| Your Sysdig access key. | Required. |
| Meaningful tags you want applied to your instances. | Optional. For example:
|
| The region associated with your Sysdig SaaS application. | Enter the SaaS region. |
|
| Enter the hostname or IP address of the Sysdig collector service. Note that when used within For SaaS regions, see SaaS Regions and IP Ranges. For SaaS applications, you must use either `REGION` or `COLLECTOR`. |
|
| On-prem only. The port used by the Sysdig collector service. Default: |
|
| Use SSL/TLS to connect to collector service, defaults to |
|
| On-prem only. Set to |
| Optional. A place to provide custom configuration values to the agent as environment variables. If `dragent.yaml` is mounted as a Docker volume inside the container, `ADDITIONAL_CONF` will be ignored. | |
| Optional. An alternative URL to download precompiled kernel modules. |
Environment Variables Used by the Agent Probe-Loader Shell Script
Name | Value | Description |
|---|---|---|
| kmod, universal_ebpf, or legacy_ebpf | Optional. The syscall capture driver that is used by the agent. Agent defaults to `kmod` if this environment variable is not set. |
|
| Optional. Deprecated and superseded by Note:The agent will exit with an error if |
Here is a sample Docker command using environment variables in an on-prem environment with a self-signed certificate:
docker run \
--name sysdig-agent \
--privileged \
--net host \
--pid host \
-e ACCESS_KEY=<ACCESS_KEY> \
-e COLLECTOR=<ONPREM_COLLECTOR_HOST> \
-e COLLECTOR_PORT=6443 \
-e CHECK_CERTIFICATE=false \
-e TAGS="my_tag:value,my_tag2:value" \
-e ADDITIONAL_CONF="log:\n file_priority: debug\n console_priority: error" \
-v /var/run/docker.sock:/host/var/run/docker.sock \
-v /dev:/host/dev \
-v /proc:/host/proc:ro \
-v /boot:/host/boot:ro \
-v /lib/modules:/host/lib/modules:ro \
-v /usr:/host/usr:ro \
--shm-size=350m \
quay.io/sysdig/agent