用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CopilotKit/channels-sdk --skill dd-apm命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | dd-apm |
| description | Query Datadog APM services, dependencies, performance, and traces with Pup. |
| metadata | {"version":"1.0.0","author":"datadog-labs","repository":"https://github.com/datadog-labs/agent-skills"} |
Use the Datadog Labs Pup CLI for APM and trace investigations.
brew tap datadog-labs/pack
brew install pup
pup auth login
Always pass --env to APM service commands.
pup apm services list --env prod
pup apm services stats --env prod --from 4h
pup apm services operations --env prod --service app-api
pup apm services resources --env prod --service app-api --name <operation>
pup apm dependencies list --env prod
pup apm flow-map --query "service:app-api" --env prod
List operations before querying resources and use an exact returned operation
name. Do not assume http.request.
Trace commands are top-level. Durations are nanoseconds, so one second is
1000000000.
pup traces search --query="service:app-api" --from="1h"
pup traces search --query="service:app-api status:error" --from="1h"
pup traces search --query="service:app-api @duration:>1000000000" --from="1h"
pup traces aggregate \
--query="service:app-api" \
--compute="avg(@duration)" \
--group-by="resource_name" \
--from="1h"
Trace sampling means search results may not include every request. Avoid high-cardinality tags such as user IDs and request IDs.