![]() |
VOOZH | about |
Datadog’s Live Processes gives you real-time visibility into the processes running on your infrastructure. Use Live Processes to:
If you are using Agent 5, follow this specific installation process. If you are using Agent 6 or 7, see the instructions below.
Once the Datadog Agent is installed, enable Live Processes collection by editing the Agent main configuration file by setting the following parameter to true:
process_config:process_collection:enabled:trueAdditionally, some configuration options may be set as environment variables.
Note: Options set as environment variables override the settings defined in the configuration file.
After configuration is complete, restart the Agent.
Follow the instructions for the Docker Agent, passing in the following attributes, in addition to any other custom settings as appropriate:
-v /etc/passwd:/etc/passwd:ro
-e DD_PROCESS_CONFIG_PROCESS_COLLECTION_ENABLED=true
Note:
dd-agent user must have permissions to access docker.sock.Update your datadog-values.yaml file with the following process collection configuration:
datadog:# (...)processAgent:enabled:trueprocessCollection:trueThen, upgrade your Helm chart:
helm upgrade -f datadog-values.yaml <RELEASE_NAME> datadog/datadog
Note: Running the Agent as a container still allows you to collect host processes.
In your datadog-agent.yaml, set features.liveProcessCollection.enabled to true.
apiVersion:datadoghq.com/v2alpha1kind:DatadogAgentmetadata:name:datadogspec:global:credentials:apiKey:<DATADOG_API_KEY>features:liveProcessCollection:enabled:trueAfter making your changes, apply the new configuration by using the following command:
kubectl apply -n $DD_NAMESPACE -f datadog-agent.yaml
Note: Running the Agent as a container still allows you to collect host processes.
In the datadog-agent.yaml manifest used to create the DaemonSet, add the following environmental variables, volume mount, and volume:
env:- name:DD_PROCESS_CONFIG_PROCESS_COLLECTION_ENABLEDvalue:"true"volumeMounts:- name:passwdmountPath:/etc/passwdreadOnly:truevolumes:- hostPath:path:/etc/passwdname:passwdSee the standard DaemonSet installation and the Docker Agent information pages for further documentation.
Note: Running the Agent as a container still allows you to collect host processes.
In order to collect processes, the Datadog Agent must be running as a container within the task.
To enable process monitoring in ECS Fargate, set the DD_PROCESS_AGENT_PROCESS_COLLECTION_ENABLED environment variable to true in the Datadog Agent container definition within the task definition.
For example:
{
"taskDefinitionArn": "...",
"containerDefinitions": [
{
"name": "datadog-agent",
"image": "public.ecr.aws/datadog/agent:latest",
...
"environment": [
{
"name": "DD_PROCESS_AGENT_PROCESS_COLLECTION_ENABLED",
"value": "true"
}
...
]
...
}
]
...
}
To start collecting process information in ECS Fargate, add the pidMode parameter to the Task Definition and set it to task as follows:
"pidMode": "task"
Once enabled, use the AWS Fargate Containers facet on the Live Processes page to filter for processes running in ECS, or enter fargate:ecs in the search query.
For more information about installing the Datadog Agent with AWS ECS Fargate, see the ECS Fargate integration documentation.
I/O and open files stats can be collected by the Datadog system-probe, which runs with elevated privileges. To collect these stats, enable the process module of the system-probe:
Copy the system-probe example configuration:
sudo -u dd-agent install -m 0640 /etc/datadog-agent/system-probe.yaml.example /etc/datadog-agent/system-probe.yaml
Edit /etc/datadog-agent/system-probe.yaml to enable the process module:
system_probe_config:process_config:enabled:truesudo systemctl restart datadog-agent
Note: If the systemctl command is not available on your system, run the following command instead: sudo service datadog-agent restart
On Linux, the Datadog Agent’s overall footprint is reduced by running container and process collection in the core Datadog Agent (instead of the separate Process Agent). In Datadog Agent v7.65.0+, this is enabled by default. Note: the Process Agent is still required for Cloud Network Monitoring.
The Agent status for this feature is listed under the Process Component section, for example:
=================
Process Component
=================
Enabled Checks: [process rtprocess]
System Probe Process Module Status: Not running
Process Language Detection Enabled: False
=================
Process Endpoints
=================
https://process.datadoghq.com. - API Key ending with:
- *****
=========
Collector
=========
Last collection time: 2026-01-14 10:04:49
Docker socket: /var/run/docker.sock
Number of processes: 48
Number of containers: 0
Process Queue length: 0
RTProcess Queue length: 0
Connections Queue length: 0
Event Queue length: 0
Pod Queue length: 0
Process Bytes enqueued: 0
RTProcess Bytes enqueued: 0
Connections Bytes enqueued: 0
Event Bytes enqueued: 0
Pod Bytes enqueued: 0
Drop Check Payloads: []
Number of submission errors: 0
In order to hide sensitive data on the Live Processes page, the Agent scrubs sensitive arguments from the process command line. This feature is enabled by default and any process argument that matches one of the following words has its value hidden.
"password", "passwd", "mysql_pwd", "access_token", "auth_token", "api_key", "apikey", "secret", "credentials", "stripetoken"
Note: The matching is case insensitive.
Define your own list to be merged with the default one, using the custom_sensitive_words field in datadog.yaml file under the process_config section. Use wildcards (*) to define your own matching scope. However, a single wildcard ('*') is not supported as a sensitive word.
process_config:scrub_args:truecustom_sensitive_words:['personal_key','*token','sql*','*pass*d*']Note: Words in custom_sensitive_words must contain only alphanumeric characters, underscores, or wildcards ('*'). A wildcard-only sensitive word is not supported.
The next image shows one process on the Live Processes page whose arguments have been hidden by using the configuration above.
Set scrub_args to false to completely disable the process arguments scrubbing.
You can also scrub all arguments from processes by enabling the strip_proc_arguments flag in your datadog.yaml configuration file:
process_config:strip_proc_arguments:trueYou can use the Helm chart to define your own list, which is merged with the default one. Add the environment variables DD_SCRUB_ARGS and DD_CUSTOM_SENSITIVE_WORDS to your datadog-values.yaml file, and upgrade your Datadog Helm chart:
datadog:# (...)processAgent:enabled:trueprocessCollection:trueagents:containers:processAgent:env:- name:DD_SCRUB_ARGSvalue:"true"- name:DD_CUSTOM_SENSITIVE_WORDSvalue:"personal_key,*token,*token,sql*,*pass*d*"Use wildcards (*) to define your own matching scope. However, a single wildcard ('*') is not supported as a sensitive word.
Set DD_SCRUB_ARGS to false to completely disable the process arguments scrubbing.
Alternatively, you can scrub all arguments from processes by enabling the DD_STRIP_PROCESS_ARGS variable in your datadog-values.yaml file:
datadog:# (...)processAgent:enabled:trueprocessCollection:trueagents:containers:processAgent:env:- name:DD_STRIP_PROCESS_ARGSvalue:"true"Processes are, by nature, extremely high cardinality objects. To refine your scope to view relevant processes, you can use text and tag filters.
When you input a text string into the search bar, fuzzy string search is used to query processes containing that text string in their command lines or paths. Enter a string of two or more characters to see results. Below is Datadog’s demo environment, filtered with the string postgres /9..
Note: /9. has matched in the command path, and postgres matches the command itself.
To combine multiple string searches into a complex query, use any of the following Boolean operators:
ANDjava AND elasticsearchORjava OR pythonNOT / !NOT or ! character to perform the same operationjava NOT elasticsearch or java !elasticsearchUse parentheses to group operators together. For example, (NOT (elasticsearch OR kafka) java) OR python .
You can also filter your processes using Datadog tags, such as host, pod, user, and service. Input tag filters directly into the search bar, or select them in the facet panel on the left of the page.
Datadog automatically generates a command tag, so that you can filter for:
command:mongod, command:nginxcommand:docker, command:kubeletcommand:ssh, command:CRONFurthermore, processes in ECS containers are also tagged by:
task_nametask_versionecs_clusterProcesses in Kubernetes containers are tagged by:
pod_namekube_servicekube_namespacekube_replica_setkube_daemon_setkube_jobkube_deploymentkube_cluster_nameIf you have configuration for Unified Service Tagging in place, env, service, and version are picked up automatically.
Having these tags available lets you tie together APM, logs, metrics, and process data.
Note: This setup applies to containerized environments only.
Process Tags Read and Process Tag Write Datadog role permissionsYou can create rule definitions to add manual tags to processes based on the command line.
After a rule is created, tags are available for all process command line values that match the rule criteria. These tags are available in search and can be used in the definition of Live Process Monitors and Custom Metrics.
Use the scatter plot analytic to compare two metrics with one another in order to better understand the performance of your containers.
To access the scatter plot analytic in the Processes page click on the Show Summary graph button then select the “Scatter Plot” tab:
By default, the graph groups by the command tag key. The size of each dot represents the number of processes in that group, and clicking on a dot displays the individual processes and containers that contribute to the group.
The options at the top of the graph allow you to control your scatter plot analytic:
Use the Live Process Monitor to generate alerts based on the count of any group of processes across hosts or tags. You can configure process alerts in the Monitors page. To learn more, see the Live Process Monitor documentation.
You can graph process metrics in dashboards and notebooks using the Timeseries widget. To configure:
From fieldDatadog uses process collection to autodetect the technologies running on your hosts. This identifies Datadog integrations that can help you monitor these technologies. These auto-detected integrations are displayed in the Integrations search:
Each integration has one of two status types:
Hosts that are running the integration, but where the integration is not enabled, can be found in the Hosts tab of the integrations tile.
After a third-party software has been detected, Live Processes helps to analyze the performance of that software.
You can customize integration views (for example, when aggregating a query for Nginx processes by host) and other custom queries by clicking the +Save button at the top of the page. This saves your query, table column selections, and visualization settings. Create saved views for quick access to the processes you care about without addition configuration, and to share process data with your teammates.
Live Processes adds extra visibility to your container deployments by monitoring the processes running on each of your containers. Click on a container in the Live Containers page to view its process tree, including the commands it is running and their resource consumption. Use this data alongside other container metrics to determine the root cause of failing containers or deployments.
In APM Traces, you can click on a service’s span to see the processes running on its underlying infrastructure. A service’s span processes are correlated with the hosts or pods on which the service runs at the time of the request. Analyze process metrics such as CPU and RSS memory alongside code-level errors to distinguish between application-specific and wider infrastructure issues. Clicking on a process brings you to the Live Processes page. Related processes are not supported for serverless and browser traces.
When you inspect a dependency in the Network Analytics page, you can view processes running on the underlying infrastructure of the endpoints such as services communicating with one another. Use process metadata to determine whether poor network connectivity (indicated by a high number of TCP retransmits) or high network call latency (indicated by high TCP round-trip time) could be due to heavy workloads consuming those endpoints’ resources, and thus, affecting the health and efficiency of their communication.
Processes are normally collected at 10s resolution. While actively working with the Live Processes page, metrics are collected at 2s resolution and displayed in real time, which is important for volatile metrics such as CPU. However, for historical context, metrics are ingested at the default 10s resolution.
/etc/passwd file mounted into the docker-dd-agent is necessary to collect usernames for each process. This is a public file and the Process Agent does not use any fields except the username. If the Agent is running unprivileged, the mount does not occur. Even without access to the /etc/passwd file, all features except the user metadata field still function. Note: Live Processes only uses the host passwd file and does not perform username resolution for users created within containers.Additional helpful documentation, links, and articles:
| |