Agent skill · Frontend

datadog-logs

Query and filter Datadog logs from the shell using the Composio CLI. Run scoped log searches, pivot across services/environments, and export structured JSON for downstream agents instead of click-driving the Datadog UI.

composio-communitygithub.com/composio-communityGitHub ↗
codex
Install
npx skills add composio-community/awesome-codex-skills --skill datadog-logs --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: datadog-logs/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 15,591
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Datadog Logs Query Datadog logs through the [Composio CLI](https://docs.composio.dev/docs/cli) so the agent can filter, pivot, and summarize without you pasting screenshots. ## When to Use - Investigating a spike, error surge, or latency regression and you want structured JSON back. - Correlating a deploy with log volume changes across services/environments. - Building a scheduled "what broke overnight" digest. ## Prereqs ```bash curl -fsSL https://composio.dev/install | bash composio login composio link datadog # prompts for site + API/APP keys ``` ## Discover Tools ```bash composio search "search logs" --toolkits datadog composio search "aggregate logs" --toolkits datadog composio tools list datadog ``` Commonly used slugs (confirm with `--get-schema`): - `DATADOG_SEARCH_LOGS` - `DATADOG_AGGREGATE_LOGS` - `DATADOG_LIST_ACTIVE_METRICS` - `DATADOG_GET_EVENT` ## Filter Recipes ### Errors from one service in the last 15 minutes ```bash composio execute DATADOG_SEARCH_LOGS -d '{ "filter": { "query": "service:checkout status:error env:prod", "from": "now-15m", "to": "now" }, "page": { "limit": 100 }, "sort": "-timestamp" }' ``` ### Aggregate error count by endpoint ```bash composio e

What's inside
Steps it walks through
  1. When to Use
  2. Prereqs
  3. Discover Tools
  4. Filter Recipes
  5. Errors from one service in the last 15 minutes
  6. Aggregate error count by endpoint
  7. Trace a single request across services
  8. Save a reusable query
  9. Pipe into Local Analysis
  10. Multi-Step Workflow
  11. Schedule a Daily Digest
  12. Troubleshooting
Commands it runs
curl -fsSL https://composio.dev/install | bash
composio login
composio link datadog       # prompts for site + API/APP keys
composio search "search logs" --toolkits datadog
composio search "aggregate logs" --toolkits datadog
composio tools list datadog
composio execute DATADOG_SEARCH_LOGS -d '{
composio execute DATADOG_AGGREGATE_LOGS -d '{
composio search "save log view" --toolkits datadog
composio execute DATADOG_CREATE_SAVED_VIEW -d '{
More from awesome-codex-skills
All skills →
About this skill
What does the datadog-logs skill do?

Query and filter Datadog logs from the shell using the Composio CLI. Run scoped log searches, pivot across services/environments, and export structured JSON for downstream agents instead of click-driving the Datadog UI.

How do I install it?

Run `npx skills add composio-community/awesome-codex-skills --skill datadog-logs --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From composio-community/awesome-codex-skills, a repository with 15,591 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going