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
Copy file name to clipboardExpand all lines: dynatrace/api/builtin/processgroup/cloudapplication/workloaddetection/schema.json
+48-5
Original file line number
Diff line number
Diff line change
@@ -70,8 +70,8 @@
70
70
}
71
71
},
72
72
"docker": {
73
-
"description": "Enable this setting for plain Docker environments to get \n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).",
74
-
"displayName": "Docker",
73
+
"description": "Enable this setting for plain Docker and Podman environments to get \n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). \n * Docker support requires OneAgent 1.257+. \n * Podman support requires OneAgent 1.267+.",
74
+
"displayName": "Docker and Podman",
75
75
"documentation": "",
76
76
"maxObjects": 1,
77
77
"metadata": {
@@ -96,6 +96,20 @@
96
96
"type": {
97
97
"$ref": "#/types/KubernetesOpenShiftCAWD"
98
98
}
99
+
},
100
+
"serverless": {
101
+
"description": "Enable this setting to \n * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, [and many more](https://dt-url.net/2m02q7b).\n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).",
102
+
"displayName": "Serverless Container Services",
103
+
"documentation": "",
104
+
"maxObjects": 1,
105
+
"metadata": {
106
+
"minAgentVersion": "1.297"
107
+
},
108
+
"modificationPolicy": "DEFAULT",
109
+
"nullable": false,
110
+
"type": {
111
+
"$ref": "#/types/ServerlessCAWD"
112
+
}
99
113
}
100
114
},
101
115
"schemaGroups": [
@@ -136,7 +150,7 @@
136
150
"enabled": {
137
151
"default": true,
138
152
"description": "",
139
-
"displayName": "Enable cloud application and workload detection for Docker",
153
+
"displayName": "Enable cloud application and workload detection for Docker and Podman",
140
154
"documentation": "",
141
155
"maxObjects": 1,
142
156
"metadata": {
@@ -277,7 +291,7 @@
277
291
"filters": {
278
292
"constraints": [
279
293
{
280
-
"customMessage": "Namespace name and match operator must be unique",
294
+
"customMessage": "The list of defined rules violates uniqueness constraints. Check, whether each combination of namespace name and match operator is unique and that there is only one rule present which uses the \"exists\" operator.",
281
295
"type": "UNIQUE",
282
296
"uniqueProperties": [
283
297
"matchFilter.namespace",
@@ -310,22 +324,27 @@
310
324
"columns": [
311
325
{
312
326
"displayName": "Namespace name",
327
+
"id": "incNamespace",
313
328
"propertyRef": "./inclusionToggles/incNamespace"
314
329
},
315
330
{
316
331
"displayName": "Base pod name",
332
+
"id": "incBasepod",
317
333
"propertyRef": "./inclusionToggles/incBasepod"
318
334
},
319
335
{
320
336
"displayName": "Container name",
337
+
"id": "incContainer",
321
338
"propertyRef": "./inclusionToggles/incContainer"
322
339
},
323
340
{
324
341
"displayName": "Stage",
342
+
"id": "incStage",
325
343
"propertyRef": "./inclusionToggles/incStage"
326
344
},
327
345
{
328
346
"displayName": "Product",
347
+
"id": "incProduct",
329
348
"propertyRef": "./inclusionToggles/incProduct"
330
349
}
331
350
]
@@ -385,7 +404,31 @@
385
404
"type": "object",
386
405
"version": "0",
387
406
"versionInfo": ""
407
+
},
408
+
"ServerlessCAWD": {
409
+
"description": "",
410
+
"displayName": "",
411
+
"documentation": "",
412
+
"properties": {
413
+
"enabled": {
414
+
"default": false,
415
+
"description": "",
416
+
"displayName": "Enable container detection for serverless container services",
Copy file name to clipboardExpand all lines: dynatrace/api/builtin/processgroup/cloudapplication/workloaddetection/settings/settings.go
+23-14
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,9 @@ import (
24
24
25
25
typeSettingsstruct {
26
26
CloudFoundry*CloudFoundryCAWD`json:"cloudFoundry"`// Enable this setting to get \n * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. \n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).
27
-
Docker*DockerCAWD`json:"docker"`// Enable this setting for plain Docker environments to get \n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).
27
+
Docker*DockerCAWD`json:"docker"`// Enable this setting for plain Docker and Podman environments to get \n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). \n * Docker support requires OneAgent 1.257+. \n * Podman support requires OneAgent 1.267+.
28
28
Kubernetes*KubernetesOpenShiftCAWD`json:"kubernetes"`// Enable this setting to get \n * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). \n * Container resource metrics (container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). \n * Similar workloads merged into process groups based on defined rules (see below). \n * Version detection for services that run in Kubernetes workloads.
29
+
Serverless*ServerlessCAWD`json:"serverless"`// Enable this setting to \n * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, [and many more](https://dt-url.net/2m02q7b).\n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).
Description: "Enable this setting to get \n * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. \n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).",
Description: "Enable this setting for plain Docker environments to get \n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).",
48
+
Description: "Enable this setting for plain Docker and Podman environments to get \n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). \n * Docker support requires OneAgent 1.257+. \n * Podman support requires OneAgent 1.267+.",
Description: "Enable this setting to get \n * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). \n * Container resource metrics (container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). \n * Similar workloads merged into process groups based on defined rules (see below). \n * Version detection for services that run in Kubernetes workloads.",
Description: "Enable this setting to \n * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, [and many more](https://dt-url.net/2m02q7b).\n * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).",
0 commit comments