[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-datadog-labs-dd-audit-key-compromise":3,"mdc--arq5ii-key":39,"related-repo-datadog-labs-dd-audit-key-compromise":1181,"related-org-datadog-labs-dd-audit-key-compromise":1290},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"dd-audit-key-compromise","investigate Datadog API key compromise","Investigate a potentially compromised Datadog API key — timeline of actions, geo\u002FIP breakdown, endpoints called, anomaly flags, and remediation steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"datadog-labs","Datadog Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdatadog-labs.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Security","security","tag",{"name":17,"slug":18,"type":15},"Compliance","compliance",{"name":20,"slug":21,"type":15},"Datadog","datadog",{"name":23,"slug":24,"type":15},"Audit","audit",{"name":26,"slug":27,"type":15},"Incident Response","incident-response",145,"https:\u002F\u002Fgithub.com\u002Fdatadog-labs\u002Fagent-skills","2026-05-08T05:05:11.828511",null,19,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"Public repository for Datadog Agent Skills","https:\u002F\u002Fgithub.com\u002Fdatadog-labs\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fdd-audit\u002Fkey-compromise","---\nname: dd-audit-key-compromise\ndescription: Investigate a potentially compromised Datadog API key — timeline of actions, geo\u002FIP breakdown, endpoints called, anomaly flags, and remediation steps.\nmetadata:\n  version: \"0.1.0\"\n  author: datadog-labs\n  repository: https:\u002F\u002Fgithub.com\u002Fdatadog-labs\u002Fagent-skills\n  tags: datadog,audit,security,api-key,compromise,dd-audit\n  alwaysApply: \"false\"\n---\n\n# Audit Trail: API Key Compromise Investigation\n\nReconstruct what a Datadog API key did, where requests originated, and which resources were affected.\n\n## Prerequisites\n\n```bash\npup auth login   # OAuth2 (recommended)\n# or set DD_API_KEY + DD_APP_KEY with audit_logs_read scope\n```\n\nYou need the **key ID** of the suspect key (not the key value). Find it in Datadog UI under Organization Settings > API Keys, or from context showing `@metadata.api_key.id`.\n\n## Investigation Workflow\n\n### Step 1 — Establish timeline\n\n```bash\npup audit-logs search --query \"@metadata.api_key.id:KEY_ID\" --from 90d --limit 200 -o json \\\n  | jq '[.data[] | {\n      timestamp: .attributes.timestamp,\n      action: .attributes.attributes.action,\n      event: .attributes.attributes.evt.name,\n      resource_type: .attributes.attributes.asset.type,\n      resource_id: .attributes.attributes.asset.id,\n      endpoint: .attributes.attributes.http.url_details.path,\n      method: .attributes.attributes.http.method,\n      ip: .attributes.attributes.network.client.ip,\n      city: .attributes.attributes.network.client.geoip.city.name,\n      country: .attributes.attributes.network.client.geoip.country.name,\n      asn: .attributes.attributes.network.client.geoip.as.name\n    }]'\n```\n\n### Step 2 — Geo\u002FIP breakdown\n\n```bash\npup audit-logs search --query \"@metadata.api_key.id:KEY_ID\" --from 90d --limit 500 -o json \\\n  | jq '[.data[] | {\n      country: .attributes.attributes.network.client.geoip.country.name,\n      asn: .attributes.attributes.network.client.geoip.as.name,\n      ip: .attributes.attributes.network.client.ip\n    }]\n    | group_by(.country)\n    | map({\n        country: .[0].country,\n        count: length,\n        asns: [.[].asn] | unique,\n        ips: [.[].ip] | unique\n      })\n    | sort_by(-.count)'\n```\n\n### Step 3 — Endpoint breakdown\n\n```bash\npup audit-logs search --query \"@metadata.api_key.id:KEY_ID\" --from 90d --limit 500 -o json \\\n  | jq '[.data[] | {\n      method: .attributes.attributes.http.method,\n      path: .attributes.attributes.http.url_details.path\n    }]\n    | group_by(.path)\n    | map({path: .[0].path, methods: [.[].method] | unique, count: length})\n    | sort_by(-.count)'\n```\n\n### Step 4 — Destructive action check\n\n```bash\npup audit-logs search --query \"@metadata.api_key.id:KEY_ID @action:deleted\" --from 90d -o json \\\n  | jq '[.data[] | {\n      timestamp: .attributes.timestamp,\n      resource_type: .attributes.attributes.asset.type,\n      resource_id: .attributes.attributes.asset.id,\n      ip: .attributes.attributes.network.client.ip,\n      country: .attributes.attributes.network.client.geoip.country.name\n    }]'\n```\n\n### Step 5 — When was the key created and by whom?\n\n```bash\npup audit-logs search --query \"@asset.type:api_key @asset.id:KEY_ID @action:created\" --from 90d -o json \\\n  | jq '[.data[] | {\n      created_at: .attributes.timestamp,\n      created_by: .attributes.attributes.usr.email,\n      creator_ip: .attributes.attributes.network.client.ip,\n      creator_country: .attributes.attributes.network.client.geoip.country.name\n    }]'\n```\n\n## Anomaly Flags\n\n| Signal | Why it matters |\n|--------|----------------|\n| Country not in org's normal baseline | Possible exfiltration from unexpected region |\n| ASN is a cloud\u002FVPN provider (AWS, Cloudflare, NordVPN, etc.) | Proxied traffic; obscured origin |\n| DELETE actions on monitors, dashboards, or log pipelines | Potential sabotage |\n| Burst of activity in short window | Automated scraping or bulk exfiltration |\n| Activity outside business hours | Off-hours access |\n| Key used from multiple IPs simultaneously | Key shared or stolen |\n\n## Investigation Output Format\n\n```\nKey ID: \u003Ckey_id>\nCreated: \u003Ctimestamp> by \u003Cuser_email>\nActive period: \u003Cfirst_seen> to \u003Clast_seen>\nTotal events: \u003CN>\n\nOrigins:\n  - \u003CCountry> (\u003CASN>): \u003CN> events — [NORMAL \u002F FLAG: first-time origin]\n\nEndpoints called (top 5):\n  - \u003CMETHOD> \u003Cpath>: \u003CN> calls\n\nDestructive actions: \u003CN> deletions — [resource types affected]\n\nRecommended actions:\n  1. Revoke the key immediately if not already done\n  2. Review affected resources: [list]\n  3. Check if any deleted resources need restoration\n  4. Audit who else had access to this key\n```\n\n## Remediation\n\nRevoke in Datadog UI: Organization Settings > API Keys > Revoke.\n\nOr via API (requires `manage_api_keys` scope):\n```bash\npup api-keys delete KEY_ID\n```\n\n## References\n\n- [Audit Trail API](https:\u002F\u002Fdocs.datadoghq.com\u002Fapi\u002Flatest\u002Faudit\u002F)\n- [API Keys management](https:\u002F\u002Fdocs.datadoghq.com\u002Faccount_management\u002Fapi-app-keys\u002F)\n",{"data":40,"body":45},{"name":4,"description":6,"metadata":41},{"version":42,"author":8,"repository":29,"tags":43,"alwaysApply":44},"0.1.0","datadog,audit,security,api-key,compromise,dd-audit","false",{"type":46,"children":47},"root",[48,57,63,70,120,141,147,154,372,378,563,569,703,709,834,840,961,967,1073,1079,1089,1095,1100,1113,1142,1148,1175],{"type":49,"tag":50,"props":51,"children":53},"element","h1",{"id":52},"audit-trail-api-key-compromise-investigation",[54],{"type":55,"value":56},"text","Audit Trail: API Key Compromise Investigation",{"type":49,"tag":58,"props":59,"children":60},"p",{},[61],{"type":55,"value":62},"Reconstruct what a Datadog API key did, where requests originated, and which resources were affected.",{"type":49,"tag":64,"props":65,"children":67},"h2",{"id":66},"prerequisites",[68],{"type":55,"value":69},"Prerequisites",{"type":49,"tag":71,"props":72,"children":77},"pre",{"className":73,"code":74,"language":75,"meta":76,"style":76},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","pup auth login   # OAuth2 (recommended)\n# or set DD_API_KEY + DD_APP_KEY with audit_logs_read scope\n","bash","",[78],{"type":49,"tag":79,"props":80,"children":81},"code",{"__ignoreMap":76},[82,111],{"type":49,"tag":83,"props":84,"children":87},"span",{"class":85,"line":86},"line",1,[88,94,100,105],{"type":49,"tag":83,"props":89,"children":91},{"style":90},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[92],{"type":55,"value":93},"pup",{"type":49,"tag":83,"props":95,"children":97},{"style":96},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[98],{"type":55,"value":99}," auth",{"type":49,"tag":83,"props":101,"children":102},{"style":96},[103],{"type":55,"value":104}," login",{"type":49,"tag":83,"props":106,"children":108},{"style":107},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[109],{"type":55,"value":110},"   # OAuth2 (recommended)\n",{"type":49,"tag":83,"props":112,"children":114},{"class":85,"line":113},2,[115],{"type":49,"tag":83,"props":116,"children":117},{"style":107},[118],{"type":55,"value":119},"# or set DD_API_KEY + DD_APP_KEY with audit_logs_read scope\n",{"type":49,"tag":58,"props":121,"children":122},{},[123,125,131,133,139],{"type":55,"value":124},"You need the ",{"type":49,"tag":126,"props":127,"children":128},"strong",{},[129],{"type":55,"value":130},"key ID",{"type":55,"value":132}," of the suspect key (not the key value). Find it in Datadog UI under Organization Settings > API Keys, or from context showing ",{"type":49,"tag":79,"props":134,"children":136},{"className":135},[],[137],{"type":55,"value":138},"@metadata.api_key.id",{"type":55,"value":140},".",{"type":49,"tag":64,"props":142,"children":144},{"id":143},"investigation-workflow",[145],{"type":55,"value":146},"Investigation Workflow",{"type":49,"tag":148,"props":149,"children":151},"h3",{"id":150},"step-1-establish-timeline",[152],{"type":55,"value":153},"Step 1 — Establish timeline",{"type":49,"tag":71,"props":155,"children":157},{"className":73,"code":156,"language":75,"meta":76,"style":76},"pup audit-logs search --query \"@metadata.api_key.id:KEY_ID\" --from 90d --limit 200 -o json \\\n  | jq '[.data[] | {\n      timestamp: .attributes.timestamp,\n      action: .attributes.attributes.action,\n      event: .attributes.attributes.evt.name,\n      resource_type: .attributes.attributes.asset.type,\n      resource_id: .attributes.attributes.asset.id,\n      endpoint: .attributes.attributes.http.url_details.path,\n      method: .attributes.attributes.http.method,\n      ip: .attributes.attributes.network.client.ip,\n      city: .attributes.attributes.network.client.geoip.city.name,\n      country: .attributes.attributes.network.client.geoip.country.name,\n      asn: .attributes.attributes.network.client.geoip.as.name\n    }]'\n",[158],{"type":49,"tag":79,"props":159,"children":160},{"__ignoreMap":76},[161,236,259,268,277,286,295,304,313,322,331,340,349,358],{"type":49,"tag":83,"props":162,"children":163},{"class":85,"line":86},[164,168,173,178,183,189,194,199,204,209,214,220,225,230],{"type":49,"tag":83,"props":165,"children":166},{"style":90},[167],{"type":55,"value":93},{"type":49,"tag":83,"props":169,"children":170},{"style":96},[171],{"type":55,"value":172}," audit-logs",{"type":49,"tag":83,"props":174,"children":175},{"style":96},[176],{"type":55,"value":177}," search",{"type":49,"tag":83,"props":179,"children":180},{"style":96},[181],{"type":55,"value":182}," --query",{"type":49,"tag":83,"props":184,"children":186},{"style":185},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[187],{"type":55,"value":188}," \"",{"type":49,"tag":83,"props":190,"children":191},{"style":96},[192],{"type":55,"value":193},"@metadata.api_key.id:KEY_ID",{"type":49,"tag":83,"props":195,"children":196},{"style":185},[197],{"type":55,"value":198},"\"",{"type":49,"tag":83,"props":200,"children":201},{"style":96},[202],{"type":55,"value":203}," --from",{"type":49,"tag":83,"props":205,"children":206},{"style":96},[207],{"type":55,"value":208}," 90d",{"type":49,"tag":83,"props":210,"children":211},{"style":96},[212],{"type":55,"value":213}," --limit",{"type":49,"tag":83,"props":215,"children":217},{"style":216},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[218],{"type":55,"value":219}," 200",{"type":49,"tag":83,"props":221,"children":222},{"style":96},[223],{"type":55,"value":224}," -o",{"type":49,"tag":83,"props":226,"children":227},{"style":96},[228],{"type":55,"value":229}," json",{"type":49,"tag":83,"props":231,"children":233},{"style":232},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[234],{"type":55,"value":235}," \\\n",{"type":49,"tag":83,"props":237,"children":238},{"class":85,"line":113},[239,244,249,254],{"type":49,"tag":83,"props":240,"children":241},{"style":185},[242],{"type":55,"value":243},"  |",{"type":49,"tag":83,"props":245,"children":246},{"style":90},[247],{"type":55,"value":248}," jq",{"type":49,"tag":83,"props":250,"children":251},{"style":185},[252],{"type":55,"value":253}," '",{"type":49,"tag":83,"props":255,"children":256},{"style":96},[257],{"type":55,"value":258},"[.data[] | {\n",{"type":49,"tag":83,"props":260,"children":262},{"class":85,"line":261},3,[263],{"type":49,"tag":83,"props":264,"children":265},{"style":96},[266],{"type":55,"value":267},"      timestamp: .attributes.timestamp,\n",{"type":49,"tag":83,"props":269,"children":271},{"class":85,"line":270},4,[272],{"type":49,"tag":83,"props":273,"children":274},{"style":96},[275],{"type":55,"value":276},"      action: .attributes.attributes.action,\n",{"type":49,"tag":83,"props":278,"children":280},{"class":85,"line":279},5,[281],{"type":49,"tag":83,"props":282,"children":283},{"style":96},[284],{"type":55,"value":285},"      event: .attributes.attributes.evt.name,\n",{"type":49,"tag":83,"props":287,"children":289},{"class":85,"line":288},6,[290],{"type":49,"tag":83,"props":291,"children":292},{"style":96},[293],{"type":55,"value":294},"      resource_type: .attributes.attributes.asset.type,\n",{"type":49,"tag":83,"props":296,"children":298},{"class":85,"line":297},7,[299],{"type":49,"tag":83,"props":300,"children":301},{"style":96},[302],{"type":55,"value":303},"      resource_id: .attributes.attributes.asset.id,\n",{"type":49,"tag":83,"props":305,"children":307},{"class":85,"line":306},8,[308],{"type":49,"tag":83,"props":309,"children":310},{"style":96},[311],{"type":55,"value":312},"      endpoint: .attributes.attributes.http.url_details.path,\n",{"type":49,"tag":83,"props":314,"children":316},{"class":85,"line":315},9,[317],{"type":49,"tag":83,"props":318,"children":319},{"style":96},[320],{"type":55,"value":321},"      method: .attributes.attributes.http.method,\n",{"type":49,"tag":83,"props":323,"children":325},{"class":85,"line":324},10,[326],{"type":49,"tag":83,"props":327,"children":328},{"style":96},[329],{"type":55,"value":330},"      ip: .attributes.attributes.network.client.ip,\n",{"type":49,"tag":83,"props":332,"children":334},{"class":85,"line":333},11,[335],{"type":49,"tag":83,"props":336,"children":337},{"style":96},[338],{"type":55,"value":339},"      city: .attributes.attributes.network.client.geoip.city.name,\n",{"type":49,"tag":83,"props":341,"children":343},{"class":85,"line":342},12,[344],{"type":49,"tag":83,"props":345,"children":346},{"style":96},[347],{"type":55,"value":348},"      country: .attributes.attributes.network.client.geoip.country.name,\n",{"type":49,"tag":83,"props":350,"children":352},{"class":85,"line":351},13,[353],{"type":49,"tag":83,"props":354,"children":355},{"style":96},[356],{"type":55,"value":357},"      asn: .attributes.attributes.network.client.geoip.as.name\n",{"type":49,"tag":83,"props":359,"children":361},{"class":85,"line":360},14,[362,367],{"type":49,"tag":83,"props":363,"children":364},{"style":96},[365],{"type":55,"value":366},"    }]",{"type":49,"tag":83,"props":368,"children":369},{"style":185},[370],{"type":55,"value":371},"'\n",{"type":49,"tag":148,"props":373,"children":375},{"id":374},"step-2-geoip-breakdown",[376],{"type":55,"value":377},"Step 2 — Geo\u002FIP breakdown",{"type":49,"tag":71,"props":379,"children":381},{"className":73,"code":380,"language":75,"meta":76,"style":76},"pup audit-logs search --query \"@metadata.api_key.id:KEY_ID\" --from 90d --limit 500 -o json \\\n  | jq '[.data[] | {\n      country: .attributes.attributes.network.client.geoip.country.name,\n      asn: .attributes.attributes.network.client.geoip.as.name,\n      ip: .attributes.attributes.network.client.ip\n    }]\n    | group_by(.country)\n    | map({\n        country: .[0].country,\n        count: length,\n        asns: [.[].asn] | unique,\n        ips: [.[].ip] | unique\n      })\n    | sort_by(-.count)'\n",[382],{"type":49,"tag":79,"props":383,"children":384},{"__ignoreMap":76},[385,445,464,471,479,487,495,503,511,519,527,535,543,551],{"type":49,"tag":83,"props":386,"children":387},{"class":85,"line":86},[388,392,396,400,404,408,412,416,420,424,428,433,437,441],{"type":49,"tag":83,"props":389,"children":390},{"style":90},[391],{"type":55,"value":93},{"type":49,"tag":83,"props":393,"children":394},{"style":96},[395],{"type":55,"value":172},{"type":49,"tag":83,"props":397,"children":398},{"style":96},[399],{"type":55,"value":177},{"type":49,"tag":83,"props":401,"children":402},{"style":96},[403],{"type":55,"value":182},{"type":49,"tag":83,"props":405,"children":406},{"style":185},[407],{"type":55,"value":188},{"type":49,"tag":83,"props":409,"children":410},{"style":96},[411],{"type":55,"value":193},{"type":49,"tag":83,"props":413,"children":414},{"style":185},[415],{"type":55,"value":198},{"type":49,"tag":83,"props":417,"children":418},{"style":96},[419],{"type":55,"value":203},{"type":49,"tag":83,"props":421,"children":422},{"style":96},[423],{"type":55,"value":208},{"type":49,"tag":83,"props":425,"children":426},{"style":96},[427],{"type":55,"value":213},{"type":49,"tag":83,"props":429,"children":430},{"style":216},[431],{"type":55,"value":432}," 500",{"type":49,"tag":83,"props":434,"children":435},{"style":96},[436],{"type":55,"value":224},{"type":49,"tag":83,"props":438,"children":439},{"style":96},[440],{"type":55,"value":229},{"type":49,"tag":83,"props":442,"children":443},{"style":232},[444],{"type":55,"value":235},{"type":49,"tag":83,"props":446,"children":447},{"class":85,"line":113},[448,452,456,460],{"type":49,"tag":83,"props":449,"children":450},{"style":185},[451],{"type":55,"value":243},{"type":49,"tag":83,"props":453,"children":454},{"style":90},[455],{"type":55,"value":248},{"type":49,"tag":83,"props":457,"children":458},{"style":185},[459],{"type":55,"value":253},{"type":49,"tag":83,"props":461,"children":462},{"style":96},[463],{"type":55,"value":258},{"type":49,"tag":83,"props":465,"children":466},{"class":85,"line":261},[467],{"type":49,"tag":83,"props":468,"children":469},{"style":96},[470],{"type":55,"value":348},{"type":49,"tag":83,"props":472,"children":473},{"class":85,"line":270},[474],{"type":49,"tag":83,"props":475,"children":476},{"style":96},[477],{"type":55,"value":478},"      asn: .attributes.attributes.network.client.geoip.as.name,\n",{"type":49,"tag":83,"props":480,"children":481},{"class":85,"line":279},[482],{"type":49,"tag":83,"props":483,"children":484},{"style":96},[485],{"type":55,"value":486},"      ip: .attributes.attributes.network.client.ip\n",{"type":49,"tag":83,"props":488,"children":489},{"class":85,"line":288},[490],{"type":49,"tag":83,"props":491,"children":492},{"style":96},[493],{"type":55,"value":494},"    }]\n",{"type":49,"tag":83,"props":496,"children":497},{"class":85,"line":297},[498],{"type":49,"tag":83,"props":499,"children":500},{"style":96},[501],{"type":55,"value":502},"    | group_by(.country)\n",{"type":49,"tag":83,"props":504,"children":505},{"class":85,"line":306},[506],{"type":49,"tag":83,"props":507,"children":508},{"style":96},[509],{"type":55,"value":510},"    | map({\n",{"type":49,"tag":83,"props":512,"children":513},{"class":85,"line":315},[514],{"type":49,"tag":83,"props":515,"children":516},{"style":96},[517],{"type":55,"value":518},"        country: .[0].country,\n",{"type":49,"tag":83,"props":520,"children":521},{"class":85,"line":324},[522],{"type":49,"tag":83,"props":523,"children":524},{"style":96},[525],{"type":55,"value":526},"        count: length,\n",{"type":49,"tag":83,"props":528,"children":529},{"class":85,"line":333},[530],{"type":49,"tag":83,"props":531,"children":532},{"style":96},[533],{"type":55,"value":534},"        asns: [.[].asn] | unique,\n",{"type":49,"tag":83,"props":536,"children":537},{"class":85,"line":342},[538],{"type":49,"tag":83,"props":539,"children":540},{"style":96},[541],{"type":55,"value":542},"        ips: [.[].ip] | unique\n",{"type":49,"tag":83,"props":544,"children":545},{"class":85,"line":351},[546],{"type":49,"tag":83,"props":547,"children":548},{"style":96},[549],{"type":55,"value":550},"      })\n",{"type":49,"tag":83,"props":552,"children":553},{"class":85,"line":360},[554,559],{"type":49,"tag":83,"props":555,"children":556},{"style":96},[557],{"type":55,"value":558},"    | sort_by(-.count)",{"type":49,"tag":83,"props":560,"children":561},{"style":185},[562],{"type":55,"value":371},{"type":49,"tag":148,"props":564,"children":566},{"id":565},"step-3-endpoint-breakdown",[567],{"type":55,"value":568},"Step 3 — Endpoint breakdown",{"type":49,"tag":71,"props":570,"children":572},{"className":73,"code":571,"language":75,"meta":76,"style":76},"pup audit-logs search --query \"@metadata.api_key.id:KEY_ID\" --from 90d --limit 500 -o json \\\n  | jq '[.data[] | {\n      method: .attributes.attributes.http.method,\n      path: .attributes.attributes.http.url_details.path\n    }]\n    | group_by(.path)\n    | map({path: .[0].path, methods: [.[].method] | unique, count: length})\n    | sort_by(-.count)'\n",[573],{"type":49,"tag":79,"props":574,"children":575},{"__ignoreMap":76},[576,635,654,661,669,676,684,692],{"type":49,"tag":83,"props":577,"children":578},{"class":85,"line":86},[579,583,587,591,595,599,603,607,611,615,619,623,627,631],{"type":49,"tag":83,"props":580,"children":581},{"style":90},[582],{"type":55,"value":93},{"type":49,"tag":83,"props":584,"children":585},{"style":96},[586],{"type":55,"value":172},{"type":49,"tag":83,"props":588,"children":589},{"style":96},[590],{"type":55,"value":177},{"type":49,"tag":83,"props":592,"children":593},{"style":96},[594],{"type":55,"value":182},{"type":49,"tag":83,"props":596,"children":597},{"style":185},[598],{"type":55,"value":188},{"type":49,"tag":83,"props":600,"children":601},{"style":96},[602],{"type":55,"value":193},{"type":49,"tag":83,"props":604,"children":605},{"style":185},[606],{"type":55,"value":198},{"type":49,"tag":83,"props":608,"children":609},{"style":96},[610],{"type":55,"value":203},{"type":49,"tag":83,"props":612,"children":613},{"style":96},[614],{"type":55,"value":208},{"type":49,"tag":83,"props":616,"children":617},{"style":96},[618],{"type":55,"value":213},{"type":49,"tag":83,"props":620,"children":621},{"style":216},[622],{"type":55,"value":432},{"type":49,"tag":83,"props":624,"children":625},{"style":96},[626],{"type":55,"value":224},{"type":49,"tag":83,"props":628,"children":629},{"style":96},[630],{"type":55,"value":229},{"type":49,"tag":83,"props":632,"children":633},{"style":232},[634],{"type":55,"value":235},{"type":49,"tag":83,"props":636,"children":637},{"class":85,"line":113},[638,642,646,650],{"type":49,"tag":83,"props":639,"children":640},{"style":185},[641],{"type":55,"value":243},{"type":49,"tag":83,"props":643,"children":644},{"style":90},[645],{"type":55,"value":248},{"type":49,"tag":83,"props":647,"children":648},{"style":185},[649],{"type":55,"value":253},{"type":49,"tag":83,"props":651,"children":652},{"style":96},[653],{"type":55,"value":258},{"type":49,"tag":83,"props":655,"children":656},{"class":85,"line":261},[657],{"type":49,"tag":83,"props":658,"children":659},{"style":96},[660],{"type":55,"value":321},{"type":49,"tag":83,"props":662,"children":663},{"class":85,"line":270},[664],{"type":49,"tag":83,"props":665,"children":666},{"style":96},[667],{"type":55,"value":668},"      path: .attributes.attributes.http.url_details.path\n",{"type":49,"tag":83,"props":670,"children":671},{"class":85,"line":279},[672],{"type":49,"tag":83,"props":673,"children":674},{"style":96},[675],{"type":55,"value":494},{"type":49,"tag":83,"props":677,"children":678},{"class":85,"line":288},[679],{"type":49,"tag":83,"props":680,"children":681},{"style":96},[682],{"type":55,"value":683},"    | group_by(.path)\n",{"type":49,"tag":83,"props":685,"children":686},{"class":85,"line":297},[687],{"type":49,"tag":83,"props":688,"children":689},{"style":96},[690],{"type":55,"value":691},"    | map({path: .[0].path, methods: [.[].method] | unique, count: length})\n",{"type":49,"tag":83,"props":693,"children":694},{"class":85,"line":306},[695,699],{"type":49,"tag":83,"props":696,"children":697},{"style":96},[698],{"type":55,"value":558},{"type":49,"tag":83,"props":700,"children":701},{"style":185},[702],{"type":55,"value":371},{"type":49,"tag":148,"props":704,"children":706},{"id":705},"step-4-destructive-action-check",[707],{"type":55,"value":708},"Step 4 — Destructive action check",{"type":49,"tag":71,"props":710,"children":712},{"className":73,"code":711,"language":75,"meta":76,"style":76},"pup audit-logs search --query \"@metadata.api_key.id:KEY_ID @action:deleted\" --from 90d -o json \\\n  | jq '[.data[] | {\n      timestamp: .attributes.timestamp,\n      resource_type: .attributes.attributes.asset.type,\n      resource_id: .attributes.attributes.asset.id,\n      ip: .attributes.attributes.network.client.ip,\n      country: .attributes.attributes.network.client.geoip.country.name\n    }]'\n",[713],{"type":49,"tag":79,"props":714,"children":715},{"__ignoreMap":76},[716,768,787,794,801,808,815,823],{"type":49,"tag":83,"props":717,"children":718},{"class":85,"line":86},[719,723,727,731,735,739,744,748,752,756,760,764],{"type":49,"tag":83,"props":720,"children":721},{"style":90},[722],{"type":55,"value":93},{"type":49,"tag":83,"props":724,"children":725},{"style":96},[726],{"type":55,"value":172},{"type":49,"tag":83,"props":728,"children":729},{"style":96},[730],{"type":55,"value":177},{"type":49,"tag":83,"props":732,"children":733},{"style":96},[734],{"type":55,"value":182},{"type":49,"tag":83,"props":736,"children":737},{"style":185},[738],{"type":55,"value":188},{"type":49,"tag":83,"props":740,"children":741},{"style":96},[742],{"type":55,"value":743},"@metadata.api_key.id:KEY_ID @action:deleted",{"type":49,"tag":83,"props":745,"children":746},{"style":185},[747],{"type":55,"value":198},{"type":49,"tag":83,"props":749,"children":750},{"style":96},[751],{"type":55,"value":203},{"type":49,"tag":83,"props":753,"children":754},{"style":96},[755],{"type":55,"value":208},{"type":49,"tag":83,"props":757,"children":758},{"style":96},[759],{"type":55,"value":224},{"type":49,"tag":83,"props":761,"children":762},{"style":96},[763],{"type":55,"value":229},{"type":49,"tag":83,"props":765,"children":766},{"style":232},[767],{"type":55,"value":235},{"type":49,"tag":83,"props":769,"children":770},{"class":85,"line":113},[771,775,779,783],{"type":49,"tag":83,"props":772,"children":773},{"style":185},[774],{"type":55,"value":243},{"type":49,"tag":83,"props":776,"children":777},{"style":90},[778],{"type":55,"value":248},{"type":49,"tag":83,"props":780,"children":781},{"style":185},[782],{"type":55,"value":253},{"type":49,"tag":83,"props":784,"children":785},{"style":96},[786],{"type":55,"value":258},{"type":49,"tag":83,"props":788,"children":789},{"class":85,"line":261},[790],{"type":49,"tag":83,"props":791,"children":792},{"style":96},[793],{"type":55,"value":267},{"type":49,"tag":83,"props":795,"children":796},{"class":85,"line":270},[797],{"type":49,"tag":83,"props":798,"children":799},{"style":96},[800],{"type":55,"value":294},{"type":49,"tag":83,"props":802,"children":803},{"class":85,"line":279},[804],{"type":49,"tag":83,"props":805,"children":806},{"style":96},[807],{"type":55,"value":303},{"type":49,"tag":83,"props":809,"children":810},{"class":85,"line":288},[811],{"type":49,"tag":83,"props":812,"children":813},{"style":96},[814],{"type":55,"value":330},{"type":49,"tag":83,"props":816,"children":817},{"class":85,"line":297},[818],{"type":49,"tag":83,"props":819,"children":820},{"style":96},[821],{"type":55,"value":822},"      country: .attributes.attributes.network.client.geoip.country.name\n",{"type":49,"tag":83,"props":824,"children":825},{"class":85,"line":306},[826,830],{"type":49,"tag":83,"props":827,"children":828},{"style":96},[829],{"type":55,"value":366},{"type":49,"tag":83,"props":831,"children":832},{"style":185},[833],{"type":55,"value":371},{"type":49,"tag":148,"props":835,"children":837},{"id":836},"step-5-when-was-the-key-created-and-by-whom",[838],{"type":55,"value":839},"Step 5 — When was the key created and by whom?",{"type":49,"tag":71,"props":841,"children":843},{"className":73,"code":842,"language":75,"meta":76,"style":76},"pup audit-logs search --query \"@asset.type:api_key @asset.id:KEY_ID @action:created\" --from 90d -o json \\\n  | jq '[.data[] | {\n      created_at: .attributes.timestamp,\n      created_by: .attributes.attributes.usr.email,\n      creator_ip: .attributes.attributes.network.client.ip,\n      creator_country: .attributes.attributes.network.client.geoip.country.name\n    }]'\n",[844],{"type":49,"tag":79,"props":845,"children":846},{"__ignoreMap":76},[847,899,918,926,934,942,950],{"type":49,"tag":83,"props":848,"children":849},{"class":85,"line":86},[850,854,858,862,866,870,875,879,883,887,891,895],{"type":49,"tag":83,"props":851,"children":852},{"style":90},[853],{"type":55,"value":93},{"type":49,"tag":83,"props":855,"children":856},{"style":96},[857],{"type":55,"value":172},{"type":49,"tag":83,"props":859,"children":860},{"style":96},[861],{"type":55,"value":177},{"type":49,"tag":83,"props":863,"children":864},{"style":96},[865],{"type":55,"value":182},{"type":49,"tag":83,"props":867,"children":868},{"style":185},[869],{"type":55,"value":188},{"type":49,"tag":83,"props":871,"children":872},{"style":96},[873],{"type":55,"value":874},"@asset.type:api_key @asset.id:KEY_ID @action:created",{"type":49,"tag":83,"props":876,"children":877},{"style":185},[878],{"type":55,"value":198},{"type":49,"tag":83,"props":880,"children":881},{"style":96},[882],{"type":55,"value":203},{"type":49,"tag":83,"props":884,"children":885},{"style":96},[886],{"type":55,"value":208},{"type":49,"tag":83,"props":888,"children":889},{"style":96},[890],{"type":55,"value":224},{"type":49,"tag":83,"props":892,"children":893},{"style":96},[894],{"type":55,"value":229},{"type":49,"tag":83,"props":896,"children":897},{"style":232},[898],{"type":55,"value":235},{"type":49,"tag":83,"props":900,"children":901},{"class":85,"line":113},[902,906,910,914],{"type":49,"tag":83,"props":903,"children":904},{"style":185},[905],{"type":55,"value":243},{"type":49,"tag":83,"props":907,"children":908},{"style":90},[909],{"type":55,"value":248},{"type":49,"tag":83,"props":911,"children":912},{"style":185},[913],{"type":55,"value":253},{"type":49,"tag":83,"props":915,"children":916},{"style":96},[917],{"type":55,"value":258},{"type":49,"tag":83,"props":919,"children":920},{"class":85,"line":261},[921],{"type":49,"tag":83,"props":922,"children":923},{"style":96},[924],{"type":55,"value":925},"      created_at: .attributes.timestamp,\n",{"type":49,"tag":83,"props":927,"children":928},{"class":85,"line":270},[929],{"type":49,"tag":83,"props":930,"children":931},{"style":96},[932],{"type":55,"value":933},"      created_by: .attributes.attributes.usr.email,\n",{"type":49,"tag":83,"props":935,"children":936},{"class":85,"line":279},[937],{"type":49,"tag":83,"props":938,"children":939},{"style":96},[940],{"type":55,"value":941},"      creator_ip: .attributes.attributes.network.client.ip,\n",{"type":49,"tag":83,"props":943,"children":944},{"class":85,"line":288},[945],{"type":49,"tag":83,"props":946,"children":947},{"style":96},[948],{"type":55,"value":949},"      creator_country: .attributes.attributes.network.client.geoip.country.name\n",{"type":49,"tag":83,"props":951,"children":952},{"class":85,"line":297},[953,957],{"type":49,"tag":83,"props":954,"children":955},{"style":96},[956],{"type":55,"value":366},{"type":49,"tag":83,"props":958,"children":959},{"style":185},[960],{"type":55,"value":371},{"type":49,"tag":64,"props":962,"children":964},{"id":963},"anomaly-flags",[965],{"type":55,"value":966},"Anomaly Flags",{"type":49,"tag":968,"props":969,"children":970},"table",{},[971,990],{"type":49,"tag":972,"props":973,"children":974},"thead",{},[975],{"type":49,"tag":976,"props":977,"children":978},"tr",{},[979,985],{"type":49,"tag":980,"props":981,"children":982},"th",{},[983],{"type":55,"value":984},"Signal",{"type":49,"tag":980,"props":986,"children":987},{},[988],{"type":55,"value":989},"Why it matters",{"type":49,"tag":991,"props":992,"children":993},"tbody",{},[994,1008,1021,1034,1047,1060],{"type":49,"tag":976,"props":995,"children":996},{},[997,1003],{"type":49,"tag":998,"props":999,"children":1000},"td",{},[1001],{"type":55,"value":1002},"Country not in org's normal baseline",{"type":49,"tag":998,"props":1004,"children":1005},{},[1006],{"type":55,"value":1007},"Possible exfiltration from unexpected region",{"type":49,"tag":976,"props":1009,"children":1010},{},[1011,1016],{"type":49,"tag":998,"props":1012,"children":1013},{},[1014],{"type":55,"value":1015},"ASN is a cloud\u002FVPN provider (AWS, Cloudflare, NordVPN, etc.)",{"type":49,"tag":998,"props":1017,"children":1018},{},[1019],{"type":55,"value":1020},"Proxied traffic; obscured origin",{"type":49,"tag":976,"props":1022,"children":1023},{},[1024,1029],{"type":49,"tag":998,"props":1025,"children":1026},{},[1027],{"type":55,"value":1028},"DELETE actions on monitors, dashboards, or log pipelines",{"type":49,"tag":998,"props":1030,"children":1031},{},[1032],{"type":55,"value":1033},"Potential sabotage",{"type":49,"tag":976,"props":1035,"children":1036},{},[1037,1042],{"type":49,"tag":998,"props":1038,"children":1039},{},[1040],{"type":55,"value":1041},"Burst of activity in short window",{"type":49,"tag":998,"props":1043,"children":1044},{},[1045],{"type":55,"value":1046},"Automated scraping or bulk exfiltration",{"type":49,"tag":976,"props":1048,"children":1049},{},[1050,1055],{"type":49,"tag":998,"props":1051,"children":1052},{},[1053],{"type":55,"value":1054},"Activity outside business hours",{"type":49,"tag":998,"props":1056,"children":1057},{},[1058],{"type":55,"value":1059},"Off-hours access",{"type":49,"tag":976,"props":1061,"children":1062},{},[1063,1068],{"type":49,"tag":998,"props":1064,"children":1065},{},[1066],{"type":55,"value":1067},"Key used from multiple IPs simultaneously",{"type":49,"tag":998,"props":1069,"children":1070},{},[1071],{"type":55,"value":1072},"Key shared or stolen",{"type":49,"tag":64,"props":1074,"children":1076},{"id":1075},"investigation-output-format",[1077],{"type":55,"value":1078},"Investigation Output Format",{"type":49,"tag":71,"props":1080,"children":1084},{"className":1081,"code":1083,"language":55},[1082],"language-text","Key ID: \u003Ckey_id>\nCreated: \u003Ctimestamp> by \u003Cuser_email>\nActive period: \u003Cfirst_seen> to \u003Clast_seen>\nTotal events: \u003CN>\n\nOrigins:\n  - \u003CCountry> (\u003CASN>): \u003CN> events — [NORMAL \u002F FLAG: first-time origin]\n\nEndpoints called (top 5):\n  - \u003CMETHOD> \u003Cpath>: \u003CN> calls\n\nDestructive actions: \u003CN> deletions — [resource types affected]\n\nRecommended actions:\n  1. Revoke the key immediately if not already done\n  2. Review affected resources: [list]\n  3. Check if any deleted resources need restoration\n  4. Audit who else had access to this key\n",[1085],{"type":49,"tag":79,"props":1086,"children":1087},{"__ignoreMap":76},[1088],{"type":55,"value":1083},{"type":49,"tag":64,"props":1090,"children":1092},{"id":1091},"remediation",[1093],{"type":55,"value":1094},"Remediation",{"type":49,"tag":58,"props":1096,"children":1097},{},[1098],{"type":55,"value":1099},"Revoke in Datadog UI: Organization Settings > API Keys > Revoke.",{"type":49,"tag":58,"props":1101,"children":1102},{},[1103,1105,1111],{"type":55,"value":1104},"Or via API (requires ",{"type":49,"tag":79,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":55,"value":1110},"manage_api_keys",{"type":55,"value":1112}," scope):",{"type":49,"tag":71,"props":1114,"children":1116},{"className":73,"code":1115,"language":75,"meta":76,"style":76},"pup api-keys delete KEY_ID\n",[1117],{"type":49,"tag":79,"props":1118,"children":1119},{"__ignoreMap":76},[1120],{"type":49,"tag":83,"props":1121,"children":1122},{"class":85,"line":86},[1123,1127,1132,1137],{"type":49,"tag":83,"props":1124,"children":1125},{"style":90},[1126],{"type":55,"value":93},{"type":49,"tag":83,"props":1128,"children":1129},{"style":96},[1130],{"type":55,"value":1131}," api-keys",{"type":49,"tag":83,"props":1133,"children":1134},{"style":96},[1135],{"type":55,"value":1136}," delete",{"type":49,"tag":83,"props":1138,"children":1139},{"style":96},[1140],{"type":55,"value":1141}," KEY_ID\n",{"type":49,"tag":64,"props":1143,"children":1145},{"id":1144},"references",[1146],{"type":55,"value":1147},"References",{"type":49,"tag":1149,"props":1150,"children":1151},"ul",{},[1152,1165],{"type":49,"tag":1153,"props":1154,"children":1155},"li",{},[1156],{"type":49,"tag":1157,"props":1158,"children":1162},"a",{"href":1159,"rel":1160},"https:\u002F\u002Fdocs.datadoghq.com\u002Fapi\u002Flatest\u002Faudit\u002F",[1161],"nofollow",[1163],{"type":55,"value":1164},"Audit Trail API",{"type":49,"tag":1153,"props":1166,"children":1167},{},[1168],{"type":49,"tag":1157,"props":1169,"children":1172},{"href":1170,"rel":1171},"https:\u002F\u002Fdocs.datadoghq.com\u002Faccount_management\u002Fapi-app-keys\u002F",[1161],[1173],{"type":55,"value":1174},"API Keys management",{"type":49,"tag":1176,"props":1177,"children":1178},"style",{},[1179],{"type":55,"value":1180},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1182,"total":1289},[1183,1200,1218,1229,1245,1259,1275],{"slug":1184,"name":1184,"fn":1185,"description":1186,"org":1187,"tags":1188,"stars":28,"repoUrl":29,"updatedAt":1199},"agent-install","install Datadog Agent on Kubernetes","Install the Datadog Agent on Kubernetes using the Datadog Operator — required before enabling Single Step Instrumentation (SSI), which automatically instruments applications for APM without code changes. Only use if no Datadog Agent is deployed on the cluster yet.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1189,1190,1193,1196],{"name":20,"slug":21,"type":15},{"name":1191,"slug":1192,"type":15},"Deployment","deployment",{"name":1194,"slug":1195,"type":15},"Kubernetes","kubernetes",{"name":1197,"slug":1198,"type":15},"Observability","observability","2026-04-15T04:57:27.489805",{"slug":1201,"name":1201,"fn":1202,"description":1203,"org":1204,"tags":1205,"stars":28,"repoUrl":29,"updatedAt":1217},"agent-observability-auto-experiment","run iterative code improvements using Datadog data","Run an iterative code-improvement hill-climb against real Datadog LLM-Obs data, locally, with Claude Code as the agent. Establishes a baseline eval, makes one focused change, re-scores with the same harness, keeps the change if it improves the score in the goal's direction (labeling within-noise gains tentative), and repeats. Use when the user says \"run an auto experiment\", \"hill-climb this code\", \"iteratively improve X and measure the delta\", \"optimize this prompt\u002Ffile against my traces\", \"auto-optimize against LLM-Obs\", or wants the local equivalent of the auto_experiments worker. Works from a local dataset file, an ml_app, a dataset_id, or a list of trace_ids.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1206,1207,1210,1213,1216],{"name":20,"slug":21,"type":15},{"name":1208,"slug":1209,"type":15},"Debugging","debugging",{"name":1211,"slug":1212,"type":15},"Evals","evals",{"name":1214,"slug":1215,"type":15},"LLM","llm",{"name":1197,"slug":1198,"type":15},"2026-07-31T05:52:13.711906",{"slug":1219,"name":1219,"fn":1220,"description":1221,"org":1222,"tags":1223,"stars":28,"repoUrl":29,"updatedAt":1228},"agent-observability-eval-bootstrap","bootstrap evaluators from production traces","Bootstrap evaluators from production traces — by default propose online LLM-judge evaluators and, after you confirm, create them in Datadog as disabled drafts (never auto-enabled); on request emit Python SDK code or a framework-agnostic JSON spec instead. Use when user says \"bootstrap evaluators\", \"generate evaluators\", \"create evals from traces\", \"eval bootstrap\", \"write evaluators\", \"build eval suite\", \"publish evaluators\", or wants to generate BaseEvaluator\u002FLLMJudge code or online judge configs from production LLM trace data. Works with ml_app and optional RCA report or failure hypothesis.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1224,1225,1226,1227],{"name":20,"slug":21,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},"2026-06-19T09:04:19.259734",{"slug":1230,"name":1230,"fn":1231,"description":1232,"org":1233,"tags":1234,"stars":28,"repoUrl":29,"updatedAt":1244},"agent-observability-eval-pipeline","run agent observability and evaluation pipelines","End-to-end Agent Observability pipeline for an instrumented ml_app — classify production traces, root-cause failures, bootstrap evaluators, then (optionally) sample + publish a dataset, generate + run an experiment, and analyze results. Six narrated phases with a standardized banner and a \"continue\" checkpoint between each. Pure orchestration over the agent-observability sub-skills (`agent-observability-session-classify`, `agent-observability-trace-rca`, `agent-observability-eval-bootstrap`, `agent-observability-experiment-py-bootstrap`, `agent-observability-experiment-analyzer`). Use when user says \"run the eval pipeline\", \"go from traces to evals\", \"bootstrap evals end to end\", \"classify then RCA then bootstrap\", \"build an eval set from scratch\", \"onboard me to datasets and experiments\", \"walk me through experiments\", \"I have an ml_app, now what\", \"Agent Observability onboarding\", \"guided experiment setup\", \"from traces to experiments\", or wants a deterministic, narrated tour from production data through evaluators, datasets, and experiments. Stop early with `--stop-after \u003Cphase>` to short-circuit at evaluators or dataset, or resume mid-flow with `--start-at \u003Cphase>`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1235,1238,1241,1242,1243],{"name":1236,"slug":1237,"type":15},"Agents","agents",{"name":1239,"slug":1240,"type":15},"Data Pipeline","data-pipeline",{"name":20,"slug":21,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1197,"slug":1198,"type":15},"2026-06-19T09:04:17.231423",{"slug":1246,"name":1246,"fn":1247,"description":1248,"org":1249,"tags":1250,"stars":28,"repoUrl":29,"updatedAt":1258},"agent-observability-experiment-analyzer","analyze LLM experiment results","Analyze LLM experiment results. Handles single or comparative experiments, exploratory or Q&A modes. Use when user says \"analyze experiment\", \"compare experiments\", \"analyze against baseline\", or provides one or two experiment IDs for analysis.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1251,1254,1255,1256,1257],{"name":1252,"slug":1253,"type":15},"Analytics","analytics",{"name":20,"slug":21,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},"2026-06-19T09:04:21.212498",{"slug":1260,"name":1260,"fn":1261,"description":1262,"org":1263,"tags":1264,"stars":28,"repoUrl":29,"updatedAt":1274},"agent-observability-experiment-py-bootstrap","generate Python experiment clients for LLM observability","Generates a self-contained Python experiment client that uses the ddtrace.llmobs SDK. Emits either a runnable .py script or a Jupyter .ipynb notebook matching the canonical DataDog reference notebook style. Use when the user says \"generate Python experiment\", \"write an SDK experiment\", \"create a ddtrace experiment\", \"Python notebook experiment\", \"use the Agent Observability SDK\", or has `ddtrace` installed and wants idiomatic SDK code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1265,1266,1269,1270,1271],{"name":20,"slug":21,"type":15},{"name":1267,"slug":1268,"type":15},"Jupyter","jupyter",{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},{"name":1272,"slug":1273,"type":15},"Python","python","2026-06-19T09:04:22.640384",{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1279,"tags":1280,"stars":28,"repoUrl":29,"updatedAt":1288},"agent-observability-replay-trace","iterate on LLM traces with local code","Use when a developer wants to iterate on ONE specific Agent Observability \u002F LLM Obs trace whose output they didn't like — re-running that trace against their LOCAL code, seeing a concise diff of the old vs new output, and looping (change code → replay → diff) until satisfied. Invoked as \u002Fagent-observability-replay-trace \u003Ctrace-id> [changes to test]. Signals: \"replay this trace\"; \"iterate on a trace\"; \"this trace's output is wrong, fix it and re-run\"; \"re-run trace \u003Cid> with \u003Cchange>\"; pasting a trace id from the Agent Observability UI with a description of what to fix. It fetches the trace via the datadog-llmo MCP or the pup CLI, edits code, re-runs the app to emit a NEW trace, and diffs the two — no local server, no browser. For agents traced with ddtrace \u002F LLM Obs (Python first-class), with JSON-serializable entry input. Do NOT use for: scored Experiments or the browser \"Replay\" button (that's agent-observability-replay-experiment), building an experiment from a dataset\u002FCSV, writing evaluators, root-causing failed traces, or RUM\u002FHTTP session replay.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1281,1282,1283,1284,1285],{"name":20,"slug":21,"type":15},{"name":1208,"slug":1209,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},{"name":1286,"slug":1287,"type":15},"Tracing","tracing","2026-07-31T05:52:08.594182",34,{"items":1291,"total":1417},[1292,1299,1307,1314,1322,1330,1338,1346,1358,1370,1382,1402],{"slug":1184,"name":1184,"fn":1185,"description":1186,"org":1293,"tags":1294,"stars":28,"repoUrl":29,"updatedAt":1199},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1295,1296,1297,1298],{"name":20,"slug":21,"type":15},{"name":1191,"slug":1192,"type":15},{"name":1194,"slug":1195,"type":15},{"name":1197,"slug":1198,"type":15},{"slug":1201,"name":1201,"fn":1202,"description":1203,"org":1300,"tags":1301,"stars":28,"repoUrl":29,"updatedAt":1217},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1302,1303,1304,1305,1306],{"name":20,"slug":21,"type":15},{"name":1208,"slug":1209,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},{"slug":1219,"name":1219,"fn":1220,"description":1221,"org":1308,"tags":1309,"stars":28,"repoUrl":29,"updatedAt":1228},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1310,1311,1312,1313],{"name":20,"slug":21,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},{"slug":1230,"name":1230,"fn":1231,"description":1232,"org":1315,"tags":1316,"stars":28,"repoUrl":29,"updatedAt":1244},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1317,1318,1319,1320,1321],{"name":1236,"slug":1237,"type":15},{"name":1239,"slug":1240,"type":15},{"name":20,"slug":21,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1197,"slug":1198,"type":15},{"slug":1246,"name":1246,"fn":1247,"description":1248,"org":1323,"tags":1324,"stars":28,"repoUrl":29,"updatedAt":1258},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1325,1326,1327,1328,1329],{"name":1252,"slug":1253,"type":15},{"name":20,"slug":21,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},{"slug":1260,"name":1260,"fn":1261,"description":1262,"org":1331,"tags":1332,"stars":28,"repoUrl":29,"updatedAt":1274},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1333,1334,1335,1336,1337],{"name":20,"slug":21,"type":15},{"name":1267,"slug":1268,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},{"name":1272,"slug":1273,"type":15},{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1339,"tags":1340,"stars":28,"repoUrl":29,"updatedAt":1288},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1341,1342,1343,1344,1345],{"name":20,"slug":21,"type":15},{"name":1208,"slug":1209,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},{"name":1286,"slug":1287,"type":15},{"slug":1347,"name":1347,"fn":1348,"description":1349,"org":1350,"tags":1351,"stars":28,"repoUrl":29,"updatedAt":1357},"agent-observability-session-classify","evaluate user intent satisfaction in sessions","Classify whether user intent was satisfied in a Datadog Agent Observability trace or session. Three modes: (1) session_id — classify a single CMD+I assistant session with RUM; (2) trace_id — classify a single Agent Observability trace without RUM; (3) ml_app — sample and classify multiple sessions or traces from a given LLM app. Output is compact by default (verdict + one-sentence reason). Use when evaluating satisfaction, classifying sessions\u002Ftraces, labeling data, or generating signal for agent-observability-eval-pipeline or agent-observability-trace-rca.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1352,1353,1354,1355,1356],{"name":1252,"slug":1253,"type":15},{"name":20,"slug":21,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},"2026-06-19T09:04:26.341497",{"slug":1359,"name":1359,"fn":1360,"description":1361,"org":1362,"tags":1363,"stars":28,"repoUrl":29,"updatedAt":1369},"agent-observability-trace-rca","diagnose LLM application failures from traces","Root cause analysis on production LLM traces. Diagnoses why an LLM application is failing — works from eval judge verdicts, runtime errors, or structural anomalies depending on what signals are present. Walks the span tree from symptom to root cause. Use when user says \"what's wrong with my app\", \"why is my eval failing\", \"analyze errors\", \"root cause analysis\", \"diagnose failures\", or wants to understand production failure patterns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1364,1365,1366,1367,1368],{"name":20,"slug":21,"type":15},{"name":1208,"slug":1209,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1197,"slug":1198,"type":15},"2026-06-19T09:04:24.316244",{"slug":1371,"name":1371,"fn":1372,"description":1373,"org":1374,"tags":1375,"stars":28,"repoUrl":29,"updatedAt":1381},"agent-skills","use Datadog observability skills","Datadog skills for AI agents. Essential monitoring, logging, tracing and observability.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1376,1377,1380],{"name":20,"slug":21,"type":15},{"name":1378,"slug":1379,"type":15},"Monitoring","monitoring",{"name":1197,"slug":1198,"type":15},"2026-04-06T18:08:33.337476",{"slug":1383,"name":1383,"fn":1384,"description":1385,"org":1386,"tags":1387,"stars":28,"repoUrl":29,"updatedAt":1401},"datadog-app","build and manage Datadog applications","Guides developers building Datadog Apps with TypeScript, React, the @datadog\u002Fapps scaffolder, and @datadog\u002Fvite-plugin. Use when a user wants to scaffold, run, debug, upgrade, build, upload, publish, upload without publishing (draft upload), add an upload-no-publish script, set up CI\u002FCD, use OAuth or API\u002Fapplication key auth, trigger\u002Fpoll Workflow Automation, choose DDSQL or Action Catalog for backend data access, or query app datastores with DDSQL, including backend function troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1388,1389,1392,1395,1398],{"name":20,"slug":21,"type":15},{"name":1390,"slug":1391,"type":15},"Frontend","frontend",{"name":1393,"slug":1394,"type":15},"React","react",{"name":1396,"slug":1397,"type":15},"TypeScript","typescript",{"name":1399,"slug":1400,"type":15},"Vite","vite","2026-06-18T08:01:32.562331",{"slug":1403,"name":1403,"fn":1404,"description":1405,"org":1406,"tags":1407,"stars":28,"repoUrl":29,"updatedAt":1416},"dd-apm","query Datadog APM traces","APM - install, onboard, instrument, enable, set up, configure, traces, services, dependencies, performance analysis. Use for any request involving Datadog APM setup, instrumentation (SSI, ddtrace, agent install), or analysis.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1408,1409,1412,1413],{"name":20,"slug":21,"type":15},{"name":1410,"slug":1411,"type":15},"Distributed Tracing","distributed-tracing",{"name":1197,"slug":1198,"type":15},{"name":1414,"slug":1415,"type":15},"Performance","performance","2026-04-06T18:08:34.575282",35]