datadog-cli

davila7/claude-code-templates · updated Apr 8, 2026

$npx skills add https://github.com/davila7/claude-code-templates --skill datadog-cli
0 commentsdiscussion
summary

A CLI tool for AI agents to debug and triage using Datadog logs and metrics.

skill.md

Datadog CLI

A CLI tool for AI agents to debug and triage using Datadog logs and metrics.

Required Reading

You MUST read the relevant reference docs before using any command:

Setup

Environment Variables (Required)

export DD_API_KEY="your-api-key"
export DD_APP_KEY="your-app-key"

Get keys from: https://app.datadoghq.com/organization-settings/api-keys

Running the CLI

npx @leoflores/datadog-cli <command>

For non-US Datadog sites, use --site flag:

npx @leoflores/datadog-cli logs search --query "*" --site datadoghq.eu

Commands Overview

Command Description
logs search Search logs with filters
logs tail Stream logs in real-time
logs trace Find logs for a distributed trace
logs context Get logs before/after a timestamp
logs patterns Group similar log messages
logs compare Compare log counts between periods
logs multi Run multiple queries in parallel
logs agg Aggregate logs by facet
metrics query Query timeseries metrics
errors Quick error summary by service/type
services List services with log activity
dashboards Manage dashboards (CRUD)
dashboard-lists Manage dashboard lists

Quick Examples

Search Errors

npx @leoflores/datadog-cli logs search --query "status:error" --from 1h --pretty

Tail Logs (Real-time)

npx @leoflores/datadog-cli logs tail --query "service:api status:error" --pretty

Error Summary

npx @leoflores/datadog-cli errors --from 1h --pretty

Trace Correlation

npx @leoflores/datadog-cli logs trace --id "abc123def456" --pretty

Query Metrics

npx @leoflores/datadog-cli metrics query --query "avg:system.cpu.user{*}" --from 1h --pretty

Compare Periods

npx @leoflores/datadog-cli logs compare --query "status:error" --period 1h --pretty

Global Flags

Flag Description
--pretty Human-readable output with colors
--output <file> Export results to JSON file
--site <site> Datadog site (e.g., datadoghq.eu)

Time Formats

  • Relative: 30m, 1h, 6h, 24h, 7d
  • ISO 8601: 2024-01-15T10:30:00Z

Incident Triage Workflow

# 1. Quick error overview
npx @leoflores/datadog-cli errors --from 1h --pretty

# 2. Is this new? Compare to previous period
npx @leoflores/datadog-cli logs compare --query "status:error" --period 1h --pretty

# 3. Find error patterns
npx @leoflores/datadog-cli logs patterns --query "status:error" --from 1h --pretty

# 4. Narrow down by service
npx @leoflores/datadog-cli logs search --query "status:error service:api" --from 1h --pretty

# 5. Get context around a timestamp
npx @leoflores/datadog-cli logs context --timestamp "2024-01-15T10:30:00Z" --service api --pretty

# 6. Follow the distributed trace
npx @leoflores/datadog-cli logs trace --id "TRACE_ID" --pretty

See workflows.md for more debugging workflows.

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.775 reviews
  • Xiao White· Dec 28, 2024

    datadog-cli is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Hana Johnson· Dec 28, 2024

    Solid pick for teams standardizing on skills: datadog-cli is focused, and the summary matches what you get after install.

  • Hana Lopez· Dec 16, 2024

    I recommend datadog-cli for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Alexander Haddad· Dec 16, 2024

    We added datadog-cli from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Pratham Ware· Dec 12, 2024

    Solid pick for teams standardizing on skills: datadog-cli is focused, and the summary matches what you get after install.

  • Jin Martinez· Dec 12, 2024

    datadog-cli reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Alexander Choi· Nov 23, 2024

    Keeps context tight: datadog-cli is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Alexander Park· Nov 19, 2024

    datadog-cli reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Hana Flores· Nov 19, 2024

    We added datadog-cli from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Luis Thompson· Nov 7, 2024

    Solid pick for teams standardizing on skills: datadog-cli is focused, and the summary matches what you get after install.

showing 1-10 of 75

1 / 8