Home/AI Skills/AI Research/Logs Commands [ PROMPT_NODE_22265 ] Logs Commands [ SKILL_DOCUMENTATION ] # Log Commands Reference ## logs search Search logs with filters. ```bash npx @leoflores/datadog-cli logs search --query "" [--from ] [--to ] [--limit ] [--sort ] ``` | Flag | Default | Description | |------|---------|-------------| | `--query` | `*` | Datadog search query | | `--from` | `15m` | Start time | | `--to` | `now` | End time | | `--limit` | `100` | Max results (max: 1000) | | `--sort` | `-timestamp` | Sort order | ```bash npx @leoflores/datadog-cli logs search --query "service:api status:error" --from 1h --pretty ``` ## logs tail Stream logs in real-time. Press Ctrl+C to stop. ```bash npx @leoflores/datadog-cli logs tail --query "" [--interval ] ``` | Flag | Default | Description | |------|---------|-------------| | `--interval` | `2` | Polling interval in seconds | ```bash npx @leoflores/datadog-cli logs tail --query "status:error" --pretty ``` ## logs trace Find all logs for a distributed trace across services. ```bash npx @leoflores/datadog-cli logs trace --id "" [--from ] [--to ] ``` Searches both `@trace_id` and `@dd.trace_id` attributes. ```bash npx @leoflores/datadog-cli logs trace --id "abc123def456" --from 24h --pretty ``` ## logs context Get logs before and after a specific timestamp. ```bash npx @leoflores/datadog-cli logs context --timestamp "" [--before ] [--after ] [--service ] ``` | Flag | Default | Description | |------|---------|-------------| | `--before` | `5m` | Time window before | | `--after` | `5m` | Time window after | | `--service` | - | Filter by service | ```bash npx @leoflores/datadog-cli logs context --timestamp "2024-01-15T10:30:00Z" --service api --before 5m --after 2m --pretty ``` ## logs patterns Group similar log messages to find patterns. Replaces UUIDs, numbers, IPs, etc. ```bash npx @leoflores/datadog-cli logs patterns --query "" [--from ] [--limit ] ``` Returns top 50 patterns with counts and sample messages. ```bash npx @leoflores/datadog-cli logs patterns --query "status:error" --from 1h --pretty ``` ## logs compare Compare log counts between current period and previous period. ```bash npx @leoflores/datadog-cli logs compare --query "" --period ``` Shows absolute and percentage change with directional arrows. ```bash npx @leoflores/datadog-cli logs compare --query "status:error" --period 1h --pretty ``` ## logs multi Run multiple queries in parallel. ```bash npx @leoflores/datadog-cli logs multi --queries "name1:query1,name2:query2" [--from ] ``` ```bash npx @leoflores/datadog-cli logs multi --queries "errors:status:error,warnings:status:warn" --from 1h --pretty ``` ## logs agg Aggregate logs by facet. ```bash npx @leoflores/datadog-cli logs agg --query "" --facet [--from ] ``` **Common facets:** `status`, `service`, `host`, `@http.status_code`, `@error.kind` ```bash npx @leoflores/datadog-cli logs agg --query "*" --facet status --from 1h --pretty ``` Source: claude-code-templates (MIT). See About Us for full credits.