22 Jan 2026 08:15 AM - edited 22 Jan 2026 08:25 AM
Good morning all!
I have put the message in the subject, can anybody hint me what Dynatrace is telling me?
Using this option,
I have modified the yaml so no pod is injected.
removing: logMonitoring: {} works.
Who can help me?
KR Henk
Solved! Go to Solution.
22 Jan 2026 08:23 AM
included yaml (tokens removed, names modified)
apiVersion: v1
data:
apiToken:
dataIngestToken:
metadata:
name: my-cluster
namespace: dynatrace
labels:
dynatrace.com/created-by: "dynatrace.kubernetes"
type: Opaque
---
apiVersion: dynatrace.com/v1beta5
kind: DynaKube
metadata:
name: my-name
namespace: dynatrace
labels:
dynatrace.com/created-by: "dynatrace.kubernetes"
annotations:
feature.dynatrace.com/k8s-app-enabled: "true"
# Link to api reference for further information: https://docs.dynatrace.com/docs/ingest-from/setup-on-k8s/reference/dynakube-parameters
spec:
apiUrl: https://environment.live.dynatrace.com/api
metadataEnrichment:
enabled: true
oneAgent:
cloudNativeFullStack:
matchExpressions:
- key: dt-monitoring/true
operator: Exists
tolerations:
- effect: NoSchedule
key: node-role.kubernetes.io/master
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
operator: Exists
activeGate:
capabilities:
- routing
- kubernetes-monitoring
- debugging
resources:
requests:
cpu: 500m
memory: 1.5Gi
limits:
cpu: 1000m
memory: 1.5Gi
templates:
otelCollector:
imageRef:
repository: public.ecr.aws/dynatrace/dynatrace-otel-collector
tag: latest
logMonitoring: {}
telemetryIngest:
protocols:
- jaeger
- otlp
- statsd
- zipkin
serviceName: telemetry-ingest
22 Jan 2026 08:25 AM
Hi,
You are selecting the most right column in this table.
You have a diagram here.
Best regards
22 Jan 2026 11:01 AM
Hi,
You are using Cloud Native Full Stack, which by design relies on OneAgent injection into Pods via the Dynatrace mutating webhook.
logMonitoring: {} enables Pod-level log monitoring, which requires OneAgent injection.
If your goal is “no pod is injected”, then:
By removing logMonitoring: {}:
If you want zero injection, use Kubernetes platform monitoring only
22 Jan 2026 11:24 AM
Thanks for your reply,
For now customer really wants this to be included:
And no pods in the monitoring (yet)
I will remove:
feature.dynatrace.com/k8s-app-enabled: "true"
KR Henk
Featured Posts