You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Datadog Operator enables the Process Agent by default.
56
+
The Datadog Operator enables container collection by default.
55
57
56
58
For verification, ensure that `features.liveContainerCollection.enabled` is set to `true` in your `datadog-agent.yaml`:
57
59
@@ -73,38 +75,40 @@ spec:
73
75
{{% /tab %}}
74
76
{{% tab "Helm" %}}
75
77
76
-
If you are using the [official Helm chart][1], enable the `processAgent.enabled` parameter in your [`values.yaml`][2] file:
78
+
If you are using the [official Helm chart][1], container collection is enabled by default.
79
+
80
+
For verification, ensure that the `processAgent.containerCollection` parameter is set to `true` in your [`values.yaml`][2] file:
77
81
78
82
```yaml
79
83
datadog:
80
84
# (...)
81
85
processAgent:
82
-
enabled: true
86
+
containerCollection: true
83
87
```
84
88
85
89
Then, upgrade your Helm chart.
86
90
87
-
In some setups, the Process Agent and Cluster Agent cannot automatically detect a Kubernetes cluster name. If this happens, the feature does not start, and the following warning displays in the Cluster Agent log: `Orchestrator explorer enabled but no cluster name set: disabling.`In this case, you must set `datadog.clusterName` to your cluster name in `values.yaml`.
91
+
In some setups, the Cluster Agent cannot automatically detect a Kubernetes cluster name. If this happens, the feature does not start, and the following warning displays in the Cluster Agent log: `Orchestrator explorer enabled but no cluster name set: disabling.`In this case, you must set `datadog.clusterName` to your cluster name in `values.yaml`.
@@ -169,14 +173,13 @@ ECS containers are tagged by:
169
173
Kubernetes containers are tagged by:
170
174
171
175
* `pod_name`
172
-
* `kube_pod_ip`
173
176
* `kube_service`
174
177
* `kube_namespace`
175
178
* `kube_replica_set`
176
179
* `kube_daemon_set`
177
180
* `kube_job`
178
181
* `kube_deployment`
179
-
* `kube_cluster`
182
+
* `kube_cluster_name`
180
183
181
184
If you have a configuration for [Unified Service Tagging][7] in place, Datadog automatically picks up `env`, `service`, and `version` tags. Having these tags available lets you tie together APM, logs, metrics, and container data.
182
185
@@ -194,7 +197,7 @@ You can switch between the "Scatter Plot" and "Timeseries" tabs in the collapsib
194
197
195
198
By default, the graph groups by the `short_image` tag key. The size of each dot represents the number of containers in that group, and clicking on a dot displays the individual containers and hosts that contribute to the group.
196
199
197
-
The query at the top of the scatter plot analytic allows you to control your scatter plot analytic:
200
+
The options at the top of the graph allows you to control your scatter plot analytic:
198
201
199
202
* Selection of metrics to display.
200
203
* Selection of the aggregation method for both metrics.
@@ -226,7 +229,7 @@ You can see indexed logs that you have chosen to index and persist by selecting
226
229
227
230
{{< img src="infrastructure/livecontainers/errorlogs.png" alt="Preview Logs Side panel" style="width:100%;">}}
228
231
229
-
## Notes and known issues
232
+
## Additional information
230
233
231
234
* Real-time (2s) data collection is turned off after 30 minutes. To resume real-time collection, refresh the page.
232
235
* RBAC settings can restrict Kubernetes metadata collection. See the [RBAC entities for the Datadog Agent][14].
0 commit comments