Dt Obs Kubernetes logo

Dt Obs Kubernetes

Organization
Dynatrace
dt-obs-kubernetes

Kubernetes cluster, pod, node, and workload monitoring. Use when analyzing K8s health, resource optimization, pod failures, OOMKills, scheduling, or security posture. Also use for Kubernetes operational events like pod restarts, OOM events, evictions, and cluster event history. Trigger: "Kubernetes pods", "K8s cluster health", "OOMKill", "pod restarts", "container CPU", "namespace resource usage", "over-provisioned pods", "privileged containers", "pod placement", "K8s node capacity", "running containers by cluster", "workload scheduling", "pod evictions", "K8s labels and annotations", "kubernetes events", "pod restart events", "OOM events", "K8s event history". Do NOT use for explaining existing queries, product documentation questions, AWS-specific resource queries, service-level RED metrics, distributed tracing, or log analysis — use the relevant skill instead.

Overview

PublisherDynatrace
Repositorydynatrace-for-ai
Skill namedt-obs-kubernetes
Stars
156
Forks
30
Bundled files
8
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 8 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by Dynatrace on GitHub. Read the source before you install it.

Installation

Install the Dt Obs Kubernetes AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Dynatrace/dynatrace-for-ai.git /tmp/dynatrace-for-ai
mkdir -p .claude/skills
cp -r /tmp/dynatrace-for-ai/skills/dt-obs-kubernetes .claude/skills/dt-obs-kubernetes
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Dt Obs Kubernetes in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Dt Obs Kubernetes on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Dt Obs Kubernetes is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Infrastructure Kubernetes

Monitor and analyze Kubernetes infrastructure using Dynatrace DQL. Query cluster resources, monitor workload health, analyze pod placement, optimize costs, and assess security posture.

When to Use This Skill

  • Monitoring Kubernetes cluster health and capacity
  • Analyzing pod and container resource utilization
  • Investigating pod failures, OOMKills, evictions, or crash loops
  • Debugging degraded deployments, stuck rollouts, or node pressure
  • Optimizing Kubernetes resource costs
  • Assessing security posture and compliance
  • Troubleshooting workload scheduling and placement
  • Auditing ingress routing and network policies

Knowledge Base Structure

Core Monitoring (Start Here)

  1. Cluster Inventoryreferences/cluster-inventory.md - Clusters, namespaces, resource distribution
  2. Node Monitoring - Node capacity, CPU/memory usage, pod density
  3. Pod Monitoring - Pod CPU, memory, lifecycle events
  4. Workload Monitoring - Deployment, StatefulSet, DaemonSet resources

Advanced Topics

  1. Configuration Analysisreferences/labels-annotations.md - Parse k8s.object, labels, annotations
  2. Scheduling & Placementreferences/pod-node-placement.md - Node selectors, affinity, taints, HA
  3. Cost Optimization - Right-sizing, waste detection, efficiency scoring
  4. Security & Compliance - Privileged containers, security contexts

Key Concepts

Entity Types

Workloads: K8S_DEPLOYMENT, K8S_STATEFULSET, K8S_DAEMONSET, K8S_JOB, K8S_CRONJOB, K8S_HORIZONTALPODAUTOSCALER
Infrastructure: K8S_CLUSTER, K8S_NAMESPACE, K8S_NODE, K8S_POD
Configuration: K8S_SERVICE, K8S_CONFIGMAP, K8S_SECRET, K8S_PERSISTENTVOLUMECLAIM, K8S_PERSISTENTVOLUME, K8S_INGRESS, K8S_NETWORKPOLICY

Note: HPA, Job, CronJob, and configuration entity types are listed for inventory queries only. For HPA scaling analysis see references/workload-health.md; for PVC/PV see references/pv-pvc.md; for Ingress/NetworkPolicy see the corresponding reference files.

Query Types

smartscapeNodes - Query K8s entities (current state, no time range needed):

dql
smartscapeNodes K8S_POD
| filter k8s.namespace.name == "production"
| fields k8s.cluster.name, k8s.pod.name

timeseries - Monitor metrics over time (always specify a from: range):

dql
timeseries cpu = sum(dt.kubernetes.container.cpu_usage),
  by: {k8s.pod.name, k8s.namespace.name},
  from: now()-1h
| fieldsAdd avg_cpu = arrayAvg(cpu)

timeseries returns each metric as a time-bucket array. To collapse it to a scalar in a downstream fieldsAdd, use arrayAvg(series) or arraySum(series) — calling avg() or sum() on a series field outside the timeseries {} block is not supported.

fetch logs - Analyze log events:

dql
fetch logs
| filter k8s.namespace.name == "production" and loglevel == "ERROR"

Core Fields

  • k8s.cluster.name, k8s.namespace.name, k8s.pod.name, k8s.node.name
  • k8s.workload.name, k8s.workload.kind, k8s.container.name
  • k8s.object - Full JSON configuration for deep inspection
  • tags[label] - Access labels and annotations

k8s.workload.kind values (always lowercase in DT — not Pascal-case as in the K8s API): "deployment", "statefulset", "daemonset", "replicaset", "job", "cronjob"

k8s.object availability:

Entity typek8s.object available?
K8S_PODYes
K8S_NAMESPACEYes
K8S_NODEYes
Workload types (K8S_DEPLOYMENT, etc.)Yes
K8S_CLUSTERNo

Available Metrics

CPU: dt.kubernetes.container.cpu_usage, cpu_throttled, limits_cpu, requests_cpu
Memory: dt.kubernetes.container.memory_working_set, limits_memory, requests_memory
Operations: dt.kubernetes.container.restarts, oom_kills
Node: dt.kubernetes.node.pods_allocatable, cpu_allocatable, memory_allocatable, dt.kubernetes.pods

Aggregation rule for requests/limits: Always use sum() — never avg() — when aggregating requests_cpu, limits_cpu, requests_memory, or limits_memory. avg() returns a per-container average and silently undercounts multi-container pods and multi-replica workloads. For DaemonSets (one pod per node), this error is proportional to cluster size.

Entity Disambiguation

K8S_POD vs CONTAINER: these are different entity types in Dynatrace.

  • K8S_POD — K8s-native entities with k8s.object JSON, scheduling state, conditions, and K8s metrics. Use this skill.
  • CONTAINER — Host-level container inventory (image, lifetime, host assignment). Use dt-obs-hosts skill instead.

The smartscape edge is CONTAINER --(is_part_of)--> K8S_POD. To reach containers from a pod, traverse backward:

dql
smartscapeNodes K8S_POD
| filter k8s.namespace.name == "<namespace>"
| traverse edgeTypes: {is_part_of}, targetTypes: {CONTAINER}, direction: backward, fieldsKeep: {id}
| fields k8s.cluster.name, k8s.namespace.name, k8s.pod.name, container.id=id

Service → K8S_POD Correlation

No direct smartscape edge exists between SERVICE and K8S_POD. The correlation key is the shared dimension k8s.workload.name. See Service → Pod Drill-Down in references/pod-debugging.md for the full two-step pattern.

Common Workflows

1. Cluster Health Check

List all clusters:

dql
smartscapeNodes K8S_CLUSTER
| fields k8s.cluster.name, k8s.cluster.version, k8s.cluster.distribution

Check node capacity:

dql
timeseries {
  current_pods = avg(dt.kubernetes.pods),
  max_pods = avg(dt.kubernetes.node.pods_allocatable)
}, by: {k8s.node.name, k8s.cluster.name},
from: now()-1h
| fieldsAdd pod_capacity_pct = (arrayAvg(current_pods) / arrayAvg(max_pods)) * 100
| filter pod_capacity_pct > 80

Identify pods in non-Running state:

dql
smartscapeNodes K8S_POD
| parse k8s.object, "JSON:config"
| fieldsAdd phase = config[status][phase]
| filter not(in(phase, {"Running", "Succeeded"}))
| fields k8s.cluster.name, k8s.namespace.name, k8s.pod.name, phase

Succeeded is a healthy terminal phase for completed Job pods — excluding it avoids false positives. Adjust if you specifically want to audit completed Jobs.

2. Resource Optimization

Pod-level — find over-provisioned pods (usage < 30%):

dql
timeseries {
  cpu_usage = sum(dt.kubernetes.container.cpu_usage),
  cpu_requests = sum(dt.kubernetes.container.requests_cpu)
}, by: {k8s.pod.name, k8s.namespace.name, k8s.cluster.name},
from: now()-7d
| fieldsAdd usage_pct = (arrayAvg(cpu_usage) / arrayAvg(cpu_requests)) * 100
| filter usage_pct < 30 and arrayAvg(cpu_requests) > 0

Workload-level — aggregate across all replicas (required for correct DaemonSet accounting):

dql
timeseries {
  cpu_usage = sum(dt.kubernetes.container.cpu_usage),
  cpu_requests = sum(dt.kubernetes.container.requests_cpu)
}, by: {k8s.workload.name, k8s.workload.kind, k8s.namespace.name, k8s.cluster.name},
from: now()-7d
| fieldsAdd
    avg_usage = arrayAvg(cpu_usage),
    avg_requests = arrayAvg(cpu_requests)
| fieldsAdd usage_pct = (avg_usage / avg_requests) * 100
| filter usage_pct < 30 and avg_requests > 0
| sort usage_pct asc

Use sum() for both cpu_usage and cpu_requests at every aggregation level. A DaemonSet running on 50 nodes has 50× the per-pod request total; avg() would report 1/50th of the true reserved capacity.

Identify containers without limits:

dql
smartscapeNodes K8S_POD
| parse k8s.object, "JSON:config"
| expand container = config[spec][containers]
| fieldsAdd
    container_name = container[name],
    cpu_limit = container[resources][limits][cpu],
    memory_limit = container[resources][limits][memory]
| filter isNull(cpu_limit) or isNull(memory_limit)

3. Troubleshooting Pod Issues

Pod troubleshooting benefits from combining metrics (timeseries) with Kubernetes events (event stream) for a complete picture.

Metrics-Based Troubleshooting

Find pods with OOMKills:

dql
timeseries oom_kills = sum(dt.kubernetes.container.oom_kills),
  by: {k8s.pod.name, k8s.namespace.name, k8s.cluster.name},
  from: now()-1h
| filter arraySum(oom_kills) > 0
| fieldsAdd total_oom_kills = arraySum(oom_kills)
| sort total_oom_kills desc

Analyze pod restart patterns:

dql
timeseries restarts = sum(dt.kubernetes.container.restarts),
  by: {k8s.pod.name, k8s.namespace.name, k8s.cluster.name},
  from: now()-1h
| fieldsAdd total_restarts = arraySum(restarts)
| filter total_restarts > 5
Event-Based Troubleshooting

For operational events (pod restarts, OOM kills, evictions, scheduling failures), Kubernetes events provide richer context than metrics alone — including event reasons, messages, and timestamps.

When to use Kubernetes events over metrics:

  • User asks about recent operational events ("show me pod restart events")
  • User wants event details like reasons and messages
  • User asks about events in a specific time window ("last 48 hours")
  • User wants to correlate events with root causes

Kubernetes events are available through the get-events-for-kubernetes-cluster tool (a Dynatrace MCP tool). Call it with findAllK8Events: true to get events for all clusters, or findAllK8Events: false with either clusterId (k8s.cluster.uid) or kubernetesEntityId (dt.entity.kubernetes_cluster) to scope to one cluster. Use history to set the lookback window (e.g. "1h", "24h", "7d"; max "60d"). Prefer this tool when the user asks about OOM events, pod restarts, evictions, or cluster-wide event history. Fall back to the fetch events DQL pattern below if the tool is unavailable.

Important: distinguish event types when filtering results. Kubernetes events cover many categories. When the user asks about a specific event type, filter the results accordingly — do not report unrelated events:

User Asks AboutRelevant Event ReasonsNOT Related
Pod restartsBackOff, CrashLoopBackOff, KillingReadiness probe failures, CPU throttling
OOM eventsOOMKilling, OOMKilledMemory pressure warnings
EvictionsEvicted, PreemptingNode pressure
Scheduling failuresFailedScheduling, UnschedulableResource quotas

For a complete answer, combine both approaches:

  1. Use the events tool to get the event details (what happened, when, why)
  2. Use timeseries metrics to show the quantitative impact (how many restarts, OOM kill counts over time)
Fetch Kubernetes Events via DQL

Pod restart and operational events can also be queried via DQL from the events table:

dql
fetch events
| filter event.kind == "K8S_EVENT"
| filter event.type == "Warning"
| fields timestamp, k8s.cluster.name, k8s.namespace.name, k8s.pod.name,
    event.reason, event.message
| sort timestamp desc
| limit 50

Filter for specific event reasons:

dql
fetch events
| filter event.kind == "K8S_EVENT"
| filter in(event.reason, {"OOMKilling", "BackOff", "Evicted", "FailedScheduling"})
| fields timestamp, k8s.cluster.name, k8s.namespace.name, k8s.pod.name,
    event.reason, event.message
| sort timestamp desc

Field names in fetch events: Use event.reason and event.message — not dt.kubernetes.event.reason. The dt.kubernetes.* prefix is for timeseries metrics, not the events table. Queries using the wrong prefix return zero results.

4. Security Assessment

Identify privileged containers:

dql
smartscapeNodes K8S_POD
| parse k8s.object, "JSON:config"
| expand container = config[spec][containers]
| fieldsAdd
    container_name = container[name],
    privileged = container[securityContext][privileged]
| filter privileged == true

Find containers running as root:

dql
smartscapeNodes K8S_POD
| parse k8s.object, "JSON:config"
| expand container = config[spec][containers]
| fieldsAdd
    container_name = container[name],
    run_as_user = container[securityContext][runAsUser],
    run_as_non_root = container[securityContext][runAsNonRoot]
| filter (isNull(run_as_user) or run_as_user == 0) and run_as_non_root != true

5. Scheduling Analysis

Verify pod distribution (HA compliance) for Deployments and StatefulSets:

dql
smartscapeNodes K8S_POD
| filter in(k8s.workload.kind, {"deployment", "statefulset"})
| summarize pod_count = count(),
            node_count = countDistinct(k8s.node.name),
            by: {k8s.cluster.name, k8s.namespace.name, k8s.workload.name, k8s.workload.kind}
| fieldsAdd ha_compliant = node_count > 1
| filter pod_count >= 2 and not ha_compliant

DaemonSets are intentionally excluded — each pod runs on exactly one node by design, so single-node placement is not an HA violation for them.

6. DAVIS Problems affecting K8s Entities

Find active DAVIS problems affecting K8s entities:

dql
fetch dt.davis.problems, from:now() - 2h
| filter not(dt.davis.is_duplicate) and event.status == "ACTIVE"
| filter iAny(startsWith(smartscape.affected_entities[][type], "K8S_"))
| fields display_id, event.name, event.category, affected_entity_ids = smartscape.affected_entities[][id]

smartscape.affected_entities is a record array; each record has id, type, and name. Use [][id] to get the array of Smartscape IDs to look up the affected entity, or [id] after expand smartscape.affected_entities. Without a preceding expand, [id] returns null silently. A filter cannot take a bare iterative expression, so wrap it in iAny(...).

Best Practices

Choosing the Right Data Source

User QuestionBest ApproachWhy
"Show me OOM events"Events tool + metricsEvents give reasons/messages; metrics show trends
"Show me pod restart events"Events tool + timeseries metricsEvents reveal the reason (BackOff, Killing, CrashLoopBackOff); dt.kubernetes.container.restarts metric gives the actual restart counts
"How many pod restarts?"Timeseries metricsQuantitative data over time
"What happened to my pods in the last 48h?"Events toolOperational event history with context
"Which pods are using the most CPU?"Timeseries metricsResource utilization analysis
"List all clusters/namespaces"smartscapeNodesEntity discovery and inventory
"Are there scheduling failures?"Events toolEvent reasons explain why
"Which workloads are over-provisioned?"Timeseries metrics, workload-levelMust use sum() for requests; group by k8s.workload.name

Time Ranges

  • smartscapeNodes — no time range; always returns current entity state.
  • timeseries — always add from: now()-<window>. Default window is system-determined and often too short for trend analysis. Recommended defaults: now()-1h for recent spikes, now()-24h for daily patterns, now()-7d for weekly trends.
  • fetch events — adding from: is recommended for reproducible results; without it the system default window applies.
  • fetch dt.davis.problems — use from: now()-2h for active problems; extend to now()-7d to include recently closed problems.

Query Performance

  1. Filter early - Apply cluster/namespace filters immediately
  2. Use specific entity types - Avoid wildcards
  3. Limit result sets - Use limit for exploration
  4. Cache cluster lists - Store in variables
  5. Omit k8s.object unless needed - Parsing it increases query cost significantly

Monitoring Recommendations

  1. Set resource limits on all containers
  2. Monitor OOMKills and adjust memory limits
  3. Track CPU throttling and adjust CPU limits
  4. Review resource efficiency regularly (target 70-80%)
  5. Implement security best practices (non-root, read-only filesystem)
  6. Use specific image tags (avoid :latest)

Configuration Standards

  1. Use labels for organization (app, environment, team)
  2. Set resource requests and limits
  3. Configure health checks (liveness/readiness probes)
  4. Use TLS for all ingress resources
  5. Document with annotations

Troubleshooting

ProblemCauseSolution
No pod data returnedWrong entity type or missing cluster filterUse K8S_POD (not POD); add k8s.cluster.name filter
k8s.object parsing errorsComplex JSON structureUse parse k8s.object, "JSON:config" then access nested fields
Pod network metrics unavailableNot available in GrailUse service mesh metrics or host-level network metrics
Large result setsNo time range or cluster filterAdd time range and filter by cluster/namespace early
Missing labels in outputLabels accessed incorrectlyUse tags[label_name] to access labels
k8s.workload.kind filter returns no resultsValue is Pascal-case (e.g. "Deployment")Values are lowercase in DT: "deployment", "statefulset", "daemonset"

Limitations

Unavailable Metrics:

  • Pod network metrics (rx_bytes, tx_bytes) are NOT available in Grail
  • Workaround: Use service mesh metrics or host-level network metrics

Query Considerations:

  • Minimize result set size: Do not include the k8s.object field if not necessary
  • Keep result set as simple as possible: Parsing k8s.object increases query complexity
  • Large clusters may require pagination or time-range limits
  • Some K8s status fields update asynchronously

When to Load References

Load cluster-inventory.md when:

  • Performing cluster, namespace, or resource distribution analysis
  • Auditing workload counts across clusters

references/cluster-inventory.md

Load labels-annotations.md when:

  • Filtering by labels or annotations
  • Parsing k8s.object for detailed configuration inspection

references/labels-annotations.md

Load pod-node-placement.md when:

  • Analyzing scheduling constraints (affinity, taints, tolerations)
  • Verifying HA compliance and pod distribution

references/pod-node-placement.md

Load pod-debugging.md when:

  • Investigating pod exit codes, crash loops, or init container failures
  • Diagnosing image pull errors or service-to-pod connectivity issues
  • Drilling down from a service problem to pod-level details

references/pod-debugging.md

Load workload-health.md when:

  • Investigating degraded deployments or stuck rollouts
  • Checking node conditions, CPU throttling, or HPA scaling
  • Analyzing StatefulSet ordering or DaemonSet coverage

references/workload-health.md

Load pv-pvc.md when:

  • Working with persistent storage (PVC/PV lifecycle, orphaned volumes)
  • Checking StorageClass configurations

references/pv-pvc.md

Load ingress.md when:

  • Analyzing ingress routing rules or TLS certificates
  • Auditing ingress controller configurations

references/ingress.md

Load network-policies.md when:

  • Listing or auditing network policies
  • Checking namespace isolation configurations

references/network-policies.md

References

Related Skills

  • dt-obs-problems — For problems associated with Kubernetes clusters (use dt.smartscape_source.id with K8S_ prefix filters)
  • dt-dql-essentials — Core DQL syntax and query structure
  • dt-obs-hosts — Host-level metrics for K8s nodes

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Dt Obs Kubernetes AI skill do?

Kubernetes cluster, pod, node, and workload monitoring. Use when analyzing K8s health, resource optimization, pod failures, OOMKills, scheduling, or security posture. Also use for Kubernetes operational events like pod restarts, OOM events, evictions, and cluster event history. Trigger: "Kubernetes pods", "K8s cluster health", "OOMKill", "pod restarts", "container CPU", "namespace resource usage", "over-provisioned pods", "privileged containers", "pod placement", "K8s node capacity", "running containers by cluster", "workload scheduling", "pod evictions", "K8s labels and annotations", "kube...

Why use Dt Obs Kubernetes on TypingMind?

Because you install it once and use it with any model. Dt Obs Kubernetes is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Dt Obs Kubernetes in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Dynatrace/dynatrace-for-ai/tree/main/skills/dt-obs-kubernetes. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Dt Obs Kubernetes?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Dt Obs Kubernetes?

As many as you like. As long as a model supports skills, you can use Dt Obs Kubernetes with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Dt Obs Kubernetes AI skill free?

Yes. It is published on GitHub by Dynatrace under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇