[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-datadog-dd-pup":3,"mdc-fl6htn-key":34,"related-repo-datadog-dd-pup":5023,"related-org-datadog-dd-pup":5108},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":21,"repoUrl":22,"updatedAt":23,"license":24,"forks":25,"topics":26,"repo":29,"sourceUrl":32,"mdContent":33},"dd-pup","authenticate with Datadog CLI","Datadog CLI (pup). OAuth2 auth with token refresh.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"datadog","Datadog","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdatadog.png","DataDog",[13,15,18],{"name":9,"slug":8,"type":14},"tag",{"name":16,"slug":17,"type":14},"CLI","cli",{"name":19,"slug":20,"type":14},"Authentication","authentication",952,"https:\u002F\u002Fgithub.com\u002FDataDog\u002Fpup","2026-07-12T07:55:07.105248",null,90,[17,27,8,28],"client","observability",{"repoUrl":22,"stars":21,"forks":25,"topics":30,"description":31},[17,27,8,28],"Give your AI agent a Pup — a CLI companion with 200+ commands across 33+ Datadog products.","https:\u002F\u002Fgithub.com\u002FDataDog\u002Fpup\u002Ftree\u002FHEAD\u002Fskills\u002Fdd-pup","---\nname: dd-pup\ndescription: Datadog CLI (pup). OAuth2 auth with token refresh.\nmetadata:\n  version: \"1.0.0\"\n  author: datadog-labs\n  repository: https:\u002F\u002Fgithub.com\u002Fdatadog-labs\u002Fagent-skills\n  tags: datadog,cli,dd-pup,pup\n  alwaysApply: \"false\"\n---\n\n# pup (Datadog CLI)\n\nPup CLI for Datadog API operations. Supports OAuth2 and API key auth.\n\n## Quick Reference\n\n| Task | Command |\n|------|---------|\n| Search error logs | `pup logs search --query \"status:error\" --from 1h` |\n| List monitors | `pup monitors list` |\n| Create downtime | `pup downtime create --file downtime.json` |\n| Find slow traces | `pup traces search --query=\"@duration:>500000000\" --from=\"1h\"` |\n| List incidents | `pup incidents list` |\n| Query metrics | `pup metrics query --query \"avg:system.cpu.user{*}\"` |\n| List hosts | `pup infrastructure hosts list` |\n| Check SLOs | `pup slos list` |\n| On-call teams | `pup on-call teams list` |\n| Security signals | `pup security signals list --query \"*\" --from 24h` |\n| Inspect runtime values | `pup debugger probes create --service my-svc --env prod --probe-location \"com.example.MyClass:myMethod\"` or `\"com.example.MyClass:myMethod(String, int)\"` |\n| Find probe-able methods | `pup symdb search --service my-svc --query MyController --view probe-locations` |\n| Check auth | `pup auth status` |\n| Refresh token | `pup auth refresh` |\n\n## Prerequisites\n\n```bash\n# Install pup via Homebrew (recommended)\nbrew tap datadog-labs\u002Fpack\nbrew install pup\n```\n\n## Auth\n\n```bash\npup auth login          # OAuth2 browser flow (recommended)\npup auth status         # Check token validity\npup auth refresh        # Refresh expired token (no browser)\npup auth logout         # Clear credentials\n```\n\n**⚠️ Tokens expire (~1 hour)**. If a command fails with 401\u002F403 mid-conversation:\n\n```bash\npup auth refresh        # Try refresh first\npup auth login          # If refresh fails, full re-auth\n```\n\n### Headless\u002FCI (no browser)\n\n```bash\n# Use env vars or:\nexport DD_API_KEY=your-api-key\nexport DD_APP_KEY=your-app-key\nexport DD_SITE=datadoghq.com    # or datadoghq.eu, etc.\n```\n\n## Command Reference\n\n### Monitors\n```bash\npup monitors list --limit 10\npup monitors list --tags \"env:prod\"\npup monitors get 12345\npup monitors search --query \"High CPU\"\npup monitors create --file monitor.json\npup monitors update 12345 --file monitor.json\npup monitors delete 12345\n```\n\n### Logs\n```bash\npup logs search --query \"status:error\" --from 1h\npup logs search --query \"service:payment-api\" --from 1h --limit 100\npup logs search --query \"@http.status_code:5*\" --from 24h\npup logs aggregate --query \"service:api\" --compute count --from 1h\n```\n\n### Metrics\n```bash\npup metrics query --query \"avg:system.cpu.user{*}\" --from 1h\npup metrics query --query \"sum:trace.express.request.hits{service:api}\" --from 1h\npup metrics list --filter \"system.*\"\n```\n\n### APM \u002F Services\n```bash\npup apm services list --env production\npup apm services stats --env production\npup apm services operations --env production --service my-service\npup apm services resources --env production --service my-service --name http.request\npup apm dependencies list --env production\n```\n\n### Traces\n```bash\n# Search traces (duration in nanoseconds: 1s = 1000000000)\npup traces search --query=\"service:api-gateway\" --from=\"1h\"\npup traces search --query=\"service:api @duration:>1000000000\" --from=\"1h\"\npup traces search --query=\"service:api status:error\" --from=\"1h\"\npup traces aggregate --query=\"service:api\" --compute=\"avg(@duration)\" --group-by=\"resource_name\" --from=\"1h\"\n```\n\n### Incidents\n```bash\npup incidents list\npup incidents list --limit 20\npup incidents get \u003Cincident-id>\n```\n\n### Dashboards\n```bash\npup dashboards list\npup dashboards get abc-123\npup dashboards create --file dashboard.json\npup dashboards update abc-123 --file dashboard.json\npup dashboards delete abc-123\n```\n\n### SLOs\n```bash\npup slos list\npup slos get slo-123\npup slos status slo-123 --from 30d --to now\npup slos create --file slo.json\n```\n\n### Synthetics\n```bash\npup synthetics tests list\npup synthetics tests get abc-123\npup synthetics tests search --text \"login\"\npup synthetics locations list\n```\n\n### Downtimes\n```bash\npup downtime list\npup downtime get abc-123-def\npup downtime create --file downtime.json\npup downtime cancel abc-123-def\n```\n\n### Infrastructure \u002F Hosts\n```bash\npup infrastructure hosts list\npup infrastructure hosts list --filter \"env:prod\"\npup infrastructure hosts list --count 100\npup infrastructure hosts get \u003Chost-id>\n```\n\n### Events\n```bash\npup events list --from 24h\npup events list --tags \"source:deploy\" --from 24h\npup events search --query \"deploy\" --from 24h\npup events get \u003Cevent-id>\n```\n\n### Users \u002F Teams\n```bash\npup users list\npup users get \u003Cuser-id>\npup on-call teams list\npup on-call teams get \u003Cteam-id>\n```\n\n### Security\n```bash\npup security signals list --query \"*\" --from 24h\npup security signals list --query \"severity:critical\" --from 24h\npup security rules list\n```\n\n### Live Debugger\n```bash\n# Check service context (verify env has active instances)\npup debugger context my-svc\npup debugger context my-svc --env prod\n\n# Find probe-able methods in a service\npup symdb search --service my-svc --query MyController --view probe-locations\n\n# Place a log probe with capture expressions\n# --probe-location accepts TYPE:METHOD or TYPE:METHOD(arg1, arg2, ...) with optional signature\npup debugger probes create --service my-svc --env prod \\\n  --probe-location \"com.example.MyController:handleRequest\" \\\n  --capture \"request.id\" --capture \"request.headers\" \\\n  --ttl 1h\n\n# With method signature (useful when the method is overloaded)\npup debugger probes create --service my-svc --env prod \\\n  --probe-location \"com.example.MyController:handleRequest(String, HttpHeaders)\" \\\n  --capture \"request.id\" --ttl 1h\n\n# Watch probe events — compact output\npup debugger probes watch \u003CPROBE_ID> --fields \"message,captures,timestamp\" --timeout 60 --limit 10 --wait 5\n\n# Watch — template message only\npup debugger probes watch \u003CPROBE_ID> --fields \"message\" --limit 10\n\n# List and delete probes\npup debugger probes list --service my-svc\npup debugger probes delete \u003CPROBE_ID>\n```\n\n### Service Catalog\n```bash\npup service-catalog list\npup service-catalog get \u003Cservice-name>\n```\n\n### Notebooks\n```bash\npup notebooks list\npup notebooks get 12345\npup notebooks create --file notebook.json\n```\n\n### Observability Pipelines\n```bash\npup obs-pipelines list\npup obs-pipelines get \u003Cpipeline-id>\npup obs-pipelines create --file pipeline.json\npup obs-pipelines update \u003Cpipeline-id> --file pipeline.json\npup obs-pipelines delete \u003Cpipeline-id>\npup obs-pipelines validate --file pipeline.json\n```\n\n### LLM Observability\n```bash\npup llm-obs projects list\npup llm-obs projects create --file project.json\npup llm-obs experiments list\npup llm-obs experiments list --filter-project-id \u003Cproject-id>\npup llm-obs experiments list --filter-dataset-id \u003Cdataset-id>\npup llm-obs experiments create --file experiment.json\npup llm-obs experiments update \u003Cexperiment-id> --file experiment.json\npup llm-obs experiments delete --file delete-request.json\npup llm-obs datasets list --project-id \u003Cproject-id>\npup llm-obs datasets create --project-id \u003Cproject-id> --file dataset.json\n```\n\n### Reference Tables\n```bash\npup reference-tables list\npup reference-tables get \u003Ctable-id>\npup reference-tables create --file table.json\npup reference-tables batch-query --file query.json\n```\n\n### Cost Cloud Configs\n```bash\n# AWS CUR configs\npup costs datadog aws-config list\npup costs datadog aws-config get \u003Caccount-id>\npup costs datadog aws-config create --file config.json\npup costs datadog aws-config delete \u003Caccount-id>\n\n# Azure UC configs\npup costs datadog azure-config list\npup costs datadog azure-config get \u003Caccount-id>\npup costs datadog azure-config create --file config.json\npup costs datadog azure-config delete \u003Caccount-id>\n\n# GCP usage cost configs\npup costs datadog gcp-config list\npup costs datadog gcp-config get \u003Caccount-id>\npup costs datadog gcp-config create --file config.json\npup costs datadog gcp-config delete \u003Caccount-id>\n```\n\n## Subcommand Discovery\n\n```bash\npup --help              # List all commands\npup \u003Ccommand> --help    # Command-specific help\n```\n\n## Error Handling\n\n| Error | Cause | Fix |\n|-------|-------|-----|\n| 401 Unauthorized | Token expired | `pup auth refresh` |\n| 403 Forbidden | Missing scope | Check app key permissions |\n| 404 Not Found | Wrong ID\u002Fresource | Verify resource exists |\n| Rate limited | Too many requests | Add delays between calls |\n\n## Install\n\n```bash\n# Homebrew (recommended)\nbrew tap datadog-labs\u002Fpack\nbrew install pup\n\n# Or build from source\ncargo install --git https:\u002F\u002Fgithub.com\u002FDataDog\u002Fpup\n```\n\n### Verify Installation\n\n```bash\npup --version\npup auth status\n```\n\n## Sites\n\n| Site | `DD_SITE` value |\n|------|-----------------|\n| US1 (default) | `datadoghq.com` |\n| US3 | `us3.datadoghq.com` |\n| US5 | `us5.datadoghq.com` |\n| EU1 | `datadoghq.eu` |\n| AP1 | `ap1.datadoghq.com` |\n| US1-FED | `ddog-gov.com` |\n\n",{"data":35,"body":42},{"name":4,"description":6,"metadata":36},{"version":37,"author":38,"repository":39,"tags":40,"alwaysApply":41},"1.0.0","datadog-labs","https:\u002F\u002Fgithub.com\u002Fdatadog-labs\u002Fagent-skills","datadog,cli,dd-pup,pup","false",{"type":43,"children":44},"root",[45,54,60,67,342,348,410,416,510,521,568,575,663,669,675,878,884,1077,1083,1205,1211,1391,1397,1643,1649,1732,1738,1852,1858,1964,1970,2078,2084,2171,2177,2304,2310,2453,2459,2571,2577,2694,2700,3351,3357,3413,3419,3485,3491,3664,3670,4017,4023,4127,4133,4581,4587,4644,4650,4752,4758,4840,4846,4881,4887,5017],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"pup-datadog-cli",[51],{"type":52,"value":53},"text","pup (Datadog CLI)",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"Pup CLI for Datadog API operations. Supports OAuth2 and API key auth.",{"type":46,"tag":61,"props":62,"children":64},"h2",{"id":63},"quick-reference",[65],{"type":52,"value":66},"Quick Reference",{"type":46,"tag":68,"props":69,"children":70},"table",{},[71,90],{"type":46,"tag":72,"props":73,"children":74},"thead",{},[75],{"type":46,"tag":76,"props":77,"children":78},"tr",{},[79,85],{"type":46,"tag":80,"props":81,"children":82},"th",{},[83],{"type":52,"value":84},"Task",{"type":46,"tag":80,"props":86,"children":87},{},[88],{"type":52,"value":89},"Command",{"type":46,"tag":91,"props":92,"children":93},"tbody",{},[94,113,130,147,164,181,198,215,232,249,266,291,308,325],{"type":46,"tag":76,"props":95,"children":96},{},[97,103],{"type":46,"tag":98,"props":99,"children":100},"td",{},[101],{"type":52,"value":102},"Search error logs",{"type":46,"tag":98,"props":104,"children":105},{},[106],{"type":46,"tag":107,"props":108,"children":110},"code",{"className":109},[],[111],{"type":52,"value":112},"pup logs search --query \"status:error\" --from 1h",{"type":46,"tag":76,"props":114,"children":115},{},[116,121],{"type":46,"tag":98,"props":117,"children":118},{},[119],{"type":52,"value":120},"List monitors",{"type":46,"tag":98,"props":122,"children":123},{},[124],{"type":46,"tag":107,"props":125,"children":127},{"className":126},[],[128],{"type":52,"value":129},"pup monitors list",{"type":46,"tag":76,"props":131,"children":132},{},[133,138],{"type":46,"tag":98,"props":134,"children":135},{},[136],{"type":52,"value":137},"Create downtime",{"type":46,"tag":98,"props":139,"children":140},{},[141],{"type":46,"tag":107,"props":142,"children":144},{"className":143},[],[145],{"type":52,"value":146},"pup downtime create --file downtime.json",{"type":46,"tag":76,"props":148,"children":149},{},[150,155],{"type":46,"tag":98,"props":151,"children":152},{},[153],{"type":52,"value":154},"Find slow traces",{"type":46,"tag":98,"props":156,"children":157},{},[158],{"type":46,"tag":107,"props":159,"children":161},{"className":160},[],[162],{"type":52,"value":163},"pup traces search --query=\"@duration:>500000000\" --from=\"1h\"",{"type":46,"tag":76,"props":165,"children":166},{},[167,172],{"type":46,"tag":98,"props":168,"children":169},{},[170],{"type":52,"value":171},"List incidents",{"type":46,"tag":98,"props":173,"children":174},{},[175],{"type":46,"tag":107,"props":176,"children":178},{"className":177},[],[179],{"type":52,"value":180},"pup incidents list",{"type":46,"tag":76,"props":182,"children":183},{},[184,189],{"type":46,"tag":98,"props":185,"children":186},{},[187],{"type":52,"value":188},"Query metrics",{"type":46,"tag":98,"props":190,"children":191},{},[192],{"type":46,"tag":107,"props":193,"children":195},{"className":194},[],[196],{"type":52,"value":197},"pup metrics query --query \"avg:system.cpu.user{*}\"",{"type":46,"tag":76,"props":199,"children":200},{},[201,206],{"type":46,"tag":98,"props":202,"children":203},{},[204],{"type":52,"value":205},"List hosts",{"type":46,"tag":98,"props":207,"children":208},{},[209],{"type":46,"tag":107,"props":210,"children":212},{"className":211},[],[213],{"type":52,"value":214},"pup infrastructure hosts list",{"type":46,"tag":76,"props":216,"children":217},{},[218,223],{"type":46,"tag":98,"props":219,"children":220},{},[221],{"type":52,"value":222},"Check SLOs",{"type":46,"tag":98,"props":224,"children":225},{},[226],{"type":46,"tag":107,"props":227,"children":229},{"className":228},[],[230],{"type":52,"value":231},"pup slos list",{"type":46,"tag":76,"props":233,"children":234},{},[235,240],{"type":46,"tag":98,"props":236,"children":237},{},[238],{"type":52,"value":239},"On-call teams",{"type":46,"tag":98,"props":241,"children":242},{},[243],{"type":46,"tag":107,"props":244,"children":246},{"className":245},[],[247],{"type":52,"value":248},"pup on-call teams list",{"type":46,"tag":76,"props":250,"children":251},{},[252,257],{"type":46,"tag":98,"props":253,"children":254},{},[255],{"type":52,"value":256},"Security signals",{"type":46,"tag":98,"props":258,"children":259},{},[260],{"type":46,"tag":107,"props":261,"children":263},{"className":262},[],[264],{"type":52,"value":265},"pup security signals list --query \"*\" --from 24h",{"type":46,"tag":76,"props":267,"children":268},{},[269,274],{"type":46,"tag":98,"props":270,"children":271},{},[272],{"type":52,"value":273},"Inspect runtime values",{"type":46,"tag":98,"props":275,"children":276},{},[277,283,285],{"type":46,"tag":107,"props":278,"children":280},{"className":279},[],[281],{"type":52,"value":282},"pup debugger probes create --service my-svc --env prod --probe-location \"com.example.MyClass:myMethod\"",{"type":52,"value":284}," or ",{"type":46,"tag":107,"props":286,"children":288},{"className":287},[],[289],{"type":52,"value":290},"\"com.example.MyClass:myMethod(String, int)\"",{"type":46,"tag":76,"props":292,"children":293},{},[294,299],{"type":46,"tag":98,"props":295,"children":296},{},[297],{"type":52,"value":298},"Find probe-able methods",{"type":46,"tag":98,"props":300,"children":301},{},[302],{"type":46,"tag":107,"props":303,"children":305},{"className":304},[],[306],{"type":52,"value":307},"pup symdb search --service my-svc --query MyController --view probe-locations",{"type":46,"tag":76,"props":309,"children":310},{},[311,316],{"type":46,"tag":98,"props":312,"children":313},{},[314],{"type":52,"value":315},"Check auth",{"type":46,"tag":98,"props":317,"children":318},{},[319],{"type":46,"tag":107,"props":320,"children":322},{"className":321},[],[323],{"type":52,"value":324},"pup auth status",{"type":46,"tag":76,"props":326,"children":327},{},[328,333],{"type":46,"tag":98,"props":329,"children":330},{},[331],{"type":52,"value":332},"Refresh token",{"type":46,"tag":98,"props":334,"children":335},{},[336],{"type":46,"tag":107,"props":337,"children":339},{"className":338},[],[340],{"type":52,"value":341},"pup auth refresh",{"type":46,"tag":61,"props":343,"children":345},{"id":344},"prerequisites",[346],{"type":52,"value":347},"Prerequisites",{"type":46,"tag":349,"props":350,"children":355},"pre",{"className":351,"code":352,"language":353,"meta":354,"style":354},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Install pup via Homebrew (recommended)\nbrew tap datadog-labs\u002Fpack\nbrew install pup\n","bash","",[356],{"type":46,"tag":107,"props":357,"children":358},{"__ignoreMap":354},[359,371,392],{"type":46,"tag":360,"props":361,"children":364},"span",{"class":362,"line":363},"line",1,[365],{"type":46,"tag":360,"props":366,"children":368},{"style":367},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[369],{"type":52,"value":370},"# Install pup via Homebrew (recommended)\n",{"type":46,"tag":360,"props":372,"children":374},{"class":362,"line":373},2,[375,381,387],{"type":46,"tag":360,"props":376,"children":378},{"style":377},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[379],{"type":52,"value":380},"brew",{"type":46,"tag":360,"props":382,"children":384},{"style":383},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[385],{"type":52,"value":386}," tap",{"type":46,"tag":360,"props":388,"children":389},{"style":383},[390],{"type":52,"value":391}," datadog-labs\u002Fpack\n",{"type":46,"tag":360,"props":393,"children":395},{"class":362,"line":394},3,[396,400,405],{"type":46,"tag":360,"props":397,"children":398},{"style":377},[399],{"type":52,"value":380},{"type":46,"tag":360,"props":401,"children":402},{"style":383},[403],{"type":52,"value":404}," install",{"type":46,"tag":360,"props":406,"children":407},{"style":383},[408],{"type":52,"value":409}," pup\n",{"type":46,"tag":61,"props":411,"children":413},{"id":412},"auth",[414],{"type":52,"value":415},"Auth",{"type":46,"tag":349,"props":417,"children":419},{"className":351,"code":418,"language":353,"meta":354,"style":354},"pup auth login          # OAuth2 browser flow (recommended)\npup auth status         # Check token validity\npup auth refresh        # Refresh expired token (no browser)\npup auth logout         # Clear credentials\n",[420],{"type":46,"tag":107,"props":421,"children":422},{"__ignoreMap":354},[423,446,467,488],{"type":46,"tag":360,"props":424,"children":425},{"class":362,"line":363},[426,431,436,441],{"type":46,"tag":360,"props":427,"children":428},{"style":377},[429],{"type":52,"value":430},"pup",{"type":46,"tag":360,"props":432,"children":433},{"style":383},[434],{"type":52,"value":435}," auth",{"type":46,"tag":360,"props":437,"children":438},{"style":383},[439],{"type":52,"value":440}," login",{"type":46,"tag":360,"props":442,"children":443},{"style":367},[444],{"type":52,"value":445},"          # OAuth2 browser flow (recommended)\n",{"type":46,"tag":360,"props":447,"children":448},{"class":362,"line":373},[449,453,457,462],{"type":46,"tag":360,"props":450,"children":451},{"style":377},[452],{"type":52,"value":430},{"type":46,"tag":360,"props":454,"children":455},{"style":383},[456],{"type":52,"value":435},{"type":46,"tag":360,"props":458,"children":459},{"style":383},[460],{"type":52,"value":461}," status",{"type":46,"tag":360,"props":463,"children":464},{"style":367},[465],{"type":52,"value":466},"         # Check token validity\n",{"type":46,"tag":360,"props":468,"children":469},{"class":362,"line":394},[470,474,478,483],{"type":46,"tag":360,"props":471,"children":472},{"style":377},[473],{"type":52,"value":430},{"type":46,"tag":360,"props":475,"children":476},{"style":383},[477],{"type":52,"value":435},{"type":46,"tag":360,"props":479,"children":480},{"style":383},[481],{"type":52,"value":482}," refresh",{"type":46,"tag":360,"props":484,"children":485},{"style":367},[486],{"type":52,"value":487},"        # Refresh expired token (no browser)\n",{"type":46,"tag":360,"props":489,"children":491},{"class":362,"line":490},4,[492,496,500,505],{"type":46,"tag":360,"props":493,"children":494},{"style":377},[495],{"type":52,"value":430},{"type":46,"tag":360,"props":497,"children":498},{"style":383},[499],{"type":52,"value":435},{"type":46,"tag":360,"props":501,"children":502},{"style":383},[503],{"type":52,"value":504}," logout",{"type":46,"tag":360,"props":506,"children":507},{"style":367},[508],{"type":52,"value":509},"         # Clear credentials\n",{"type":46,"tag":55,"props":511,"children":512},{},[513,519],{"type":46,"tag":514,"props":515,"children":516},"strong",{},[517],{"type":52,"value":518},"⚠️ Tokens expire (~1 hour)",{"type":52,"value":520},". If a command fails with 401\u002F403 mid-conversation:",{"type":46,"tag":349,"props":522,"children":524},{"className":351,"code":523,"language":353,"meta":354,"style":354},"pup auth refresh        # Try refresh first\npup auth login          # If refresh fails, full re-auth\n",[525],{"type":46,"tag":107,"props":526,"children":527},{"__ignoreMap":354},[528,548],{"type":46,"tag":360,"props":529,"children":530},{"class":362,"line":363},[531,535,539,543],{"type":46,"tag":360,"props":532,"children":533},{"style":377},[534],{"type":52,"value":430},{"type":46,"tag":360,"props":536,"children":537},{"style":383},[538],{"type":52,"value":435},{"type":46,"tag":360,"props":540,"children":541},{"style":383},[542],{"type":52,"value":482},{"type":46,"tag":360,"props":544,"children":545},{"style":367},[546],{"type":52,"value":547},"        # Try refresh first\n",{"type":46,"tag":360,"props":549,"children":550},{"class":362,"line":373},[551,555,559,563],{"type":46,"tag":360,"props":552,"children":553},{"style":377},[554],{"type":52,"value":430},{"type":46,"tag":360,"props":556,"children":557},{"style":383},[558],{"type":52,"value":435},{"type":46,"tag":360,"props":560,"children":561},{"style":383},[562],{"type":52,"value":440},{"type":46,"tag":360,"props":564,"children":565},{"style":367},[566],{"type":52,"value":567},"          # If refresh fails, full re-auth\n",{"type":46,"tag":569,"props":570,"children":572},"h3",{"id":571},"headlessci-no-browser",[573],{"type":52,"value":574},"Headless\u002FCI (no browser)",{"type":46,"tag":349,"props":576,"children":578},{"className":351,"code":577,"language":353,"meta":354,"style":354},"# Use env vars or:\nexport DD_API_KEY=your-api-key\nexport DD_APP_KEY=your-app-key\nexport DD_SITE=datadoghq.com    # or datadoghq.eu, etc.\n",[579],{"type":46,"tag":107,"props":580,"children":581},{"__ignoreMap":354},[582,590,616,637],{"type":46,"tag":360,"props":583,"children":584},{"class":362,"line":363},[585],{"type":46,"tag":360,"props":586,"children":587},{"style":367},[588],{"type":52,"value":589},"# Use env vars or:\n",{"type":46,"tag":360,"props":591,"children":592},{"class":362,"line":373},[593,599,605,611],{"type":46,"tag":360,"props":594,"children":596},{"style":595},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[597],{"type":52,"value":598},"export",{"type":46,"tag":360,"props":600,"children":602},{"style":601},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[603],{"type":52,"value":604}," DD_API_KEY",{"type":46,"tag":360,"props":606,"children":608},{"style":607},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[609],{"type":52,"value":610},"=",{"type":46,"tag":360,"props":612,"children":613},{"style":601},[614],{"type":52,"value":615},"your-api-key\n",{"type":46,"tag":360,"props":617,"children":618},{"class":362,"line":394},[619,623,628,632],{"type":46,"tag":360,"props":620,"children":621},{"style":595},[622],{"type":52,"value":598},{"type":46,"tag":360,"props":624,"children":625},{"style":601},[626],{"type":52,"value":627}," DD_APP_KEY",{"type":46,"tag":360,"props":629,"children":630},{"style":607},[631],{"type":52,"value":610},{"type":46,"tag":360,"props":633,"children":634},{"style":601},[635],{"type":52,"value":636},"your-app-key\n",{"type":46,"tag":360,"props":638,"children":639},{"class":362,"line":490},[640,644,649,653,658],{"type":46,"tag":360,"props":641,"children":642},{"style":595},[643],{"type":52,"value":598},{"type":46,"tag":360,"props":645,"children":646},{"style":601},[647],{"type":52,"value":648}," DD_SITE",{"type":46,"tag":360,"props":650,"children":651},{"style":607},[652],{"type":52,"value":610},{"type":46,"tag":360,"props":654,"children":655},{"style":601},[656],{"type":52,"value":657},"datadoghq.com    ",{"type":46,"tag":360,"props":659,"children":660},{"style":367},[661],{"type":52,"value":662},"# or datadoghq.eu, etc.\n",{"type":46,"tag":61,"props":664,"children":666},{"id":665},"command-reference",[667],{"type":52,"value":668},"Command Reference",{"type":46,"tag":569,"props":670,"children":672},{"id":671},"monitors",[673],{"type":52,"value":674},"Monitors",{"type":46,"tag":349,"props":676,"children":678},{"className":351,"code":677,"language":353,"meta":354,"style":354},"pup monitors list --limit 10\npup monitors list --tags \"env:prod\"\npup monitors get 12345\npup monitors search --query \"High CPU\"\npup monitors create --file monitor.json\npup monitors update 12345 --file monitor.json\npup monitors delete 12345\n",[679],{"type":46,"tag":107,"props":680,"children":681},{"__ignoreMap":354},[682,710,745,766,800,827,857],{"type":46,"tag":360,"props":683,"children":684},{"class":362,"line":363},[685,689,694,699,704],{"type":46,"tag":360,"props":686,"children":687},{"style":377},[688],{"type":52,"value":430},{"type":46,"tag":360,"props":690,"children":691},{"style":383},[692],{"type":52,"value":693}," monitors",{"type":46,"tag":360,"props":695,"children":696},{"style":383},[697],{"type":52,"value":698}," list",{"type":46,"tag":360,"props":700,"children":701},{"style":383},[702],{"type":52,"value":703}," --limit",{"type":46,"tag":360,"props":705,"children":707},{"style":706},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[708],{"type":52,"value":709}," 10\n",{"type":46,"tag":360,"props":711,"children":712},{"class":362,"line":373},[713,717,721,725,730,735,740],{"type":46,"tag":360,"props":714,"children":715},{"style":377},[716],{"type":52,"value":430},{"type":46,"tag":360,"props":718,"children":719},{"style":383},[720],{"type":52,"value":693},{"type":46,"tag":360,"props":722,"children":723},{"style":383},[724],{"type":52,"value":698},{"type":46,"tag":360,"props":726,"children":727},{"style":383},[728],{"type":52,"value":729}," --tags",{"type":46,"tag":360,"props":731,"children":732},{"style":607},[733],{"type":52,"value":734}," \"",{"type":46,"tag":360,"props":736,"children":737},{"style":383},[738],{"type":52,"value":739},"env:prod",{"type":46,"tag":360,"props":741,"children":742},{"style":607},[743],{"type":52,"value":744},"\"\n",{"type":46,"tag":360,"props":746,"children":747},{"class":362,"line":394},[748,752,756,761],{"type":46,"tag":360,"props":749,"children":750},{"style":377},[751],{"type":52,"value":430},{"type":46,"tag":360,"props":753,"children":754},{"style":383},[755],{"type":52,"value":693},{"type":46,"tag":360,"props":757,"children":758},{"style":383},[759],{"type":52,"value":760}," get",{"type":46,"tag":360,"props":762,"children":763},{"style":706},[764],{"type":52,"value":765}," 12345\n",{"type":46,"tag":360,"props":767,"children":768},{"class":362,"line":490},[769,773,777,782,787,791,796],{"type":46,"tag":360,"props":770,"children":771},{"style":377},[772],{"type":52,"value":430},{"type":46,"tag":360,"props":774,"children":775},{"style":383},[776],{"type":52,"value":693},{"type":46,"tag":360,"props":778,"children":779},{"style":383},[780],{"type":52,"value":781}," search",{"type":46,"tag":360,"props":783,"children":784},{"style":383},[785],{"type":52,"value":786}," --query",{"type":46,"tag":360,"props":788,"children":789},{"style":607},[790],{"type":52,"value":734},{"type":46,"tag":360,"props":792,"children":793},{"style":383},[794],{"type":52,"value":795},"High CPU",{"type":46,"tag":360,"props":797,"children":798},{"style":607},[799],{"type":52,"value":744},{"type":46,"tag":360,"props":801,"children":803},{"class":362,"line":802},5,[804,808,812,817,822],{"type":46,"tag":360,"props":805,"children":806},{"style":377},[807],{"type":52,"value":430},{"type":46,"tag":360,"props":809,"children":810},{"style":383},[811],{"type":52,"value":693},{"type":46,"tag":360,"props":813,"children":814},{"style":383},[815],{"type":52,"value":816}," create",{"type":46,"tag":360,"props":818,"children":819},{"style":383},[820],{"type":52,"value":821}," --file",{"type":46,"tag":360,"props":823,"children":824},{"style":383},[825],{"type":52,"value":826}," monitor.json\n",{"type":46,"tag":360,"props":828,"children":830},{"class":362,"line":829},6,[831,835,839,844,849,853],{"type":46,"tag":360,"props":832,"children":833},{"style":377},[834],{"type":52,"value":430},{"type":46,"tag":360,"props":836,"children":837},{"style":383},[838],{"type":52,"value":693},{"type":46,"tag":360,"props":840,"children":841},{"style":383},[842],{"type":52,"value":843}," update",{"type":46,"tag":360,"props":845,"children":846},{"style":706},[847],{"type":52,"value":848}," 12345",{"type":46,"tag":360,"props":850,"children":851},{"style":383},[852],{"type":52,"value":821},{"type":46,"tag":360,"props":854,"children":855},{"style":383},[856],{"type":52,"value":826},{"type":46,"tag":360,"props":858,"children":860},{"class":362,"line":859},7,[861,865,869,874],{"type":46,"tag":360,"props":862,"children":863},{"style":377},[864],{"type":52,"value":430},{"type":46,"tag":360,"props":866,"children":867},{"style":383},[868],{"type":52,"value":693},{"type":46,"tag":360,"props":870,"children":871},{"style":383},[872],{"type":52,"value":873}," delete",{"type":46,"tag":360,"props":875,"children":876},{"style":706},[877],{"type":52,"value":765},{"type":46,"tag":569,"props":879,"children":881},{"id":880},"logs",[882],{"type":52,"value":883},"Logs",{"type":46,"tag":349,"props":885,"children":887},{"className":351,"code":886,"language":353,"meta":354,"style":354},"pup logs search --query \"status:error\" --from 1h\npup logs search --query \"service:payment-api\" --from 1h --limit 100\npup logs search --query \"@http.status_code:5*\" --from 24h\npup logs aggregate --query \"service:api\" --compute count --from 1h\n",[888],{"type":46,"tag":107,"props":889,"children":890},{"__ignoreMap":354},[891,935,985,1026],{"type":46,"tag":360,"props":892,"children":893},{"class":362,"line":363},[894,898,903,907,911,915,920,925,930],{"type":46,"tag":360,"props":895,"children":896},{"style":377},[897],{"type":52,"value":430},{"type":46,"tag":360,"props":899,"children":900},{"style":383},[901],{"type":52,"value":902}," logs",{"type":46,"tag":360,"props":904,"children":905},{"style":383},[906],{"type":52,"value":781},{"type":46,"tag":360,"props":908,"children":909},{"style":383},[910],{"type":52,"value":786},{"type":46,"tag":360,"props":912,"children":913},{"style":607},[914],{"type":52,"value":734},{"type":46,"tag":360,"props":916,"children":917},{"style":383},[918],{"type":52,"value":919},"status:error",{"type":46,"tag":360,"props":921,"children":922},{"style":607},[923],{"type":52,"value":924},"\"",{"type":46,"tag":360,"props":926,"children":927},{"style":383},[928],{"type":52,"value":929}," --from",{"type":46,"tag":360,"props":931,"children":932},{"style":383},[933],{"type":52,"value":934}," 1h\n",{"type":46,"tag":360,"props":936,"children":937},{"class":362,"line":373},[938,942,946,950,954,958,963,967,971,976,980],{"type":46,"tag":360,"props":939,"children":940},{"style":377},[941],{"type":52,"value":430},{"type":46,"tag":360,"props":943,"children":944},{"style":383},[945],{"type":52,"value":902},{"type":46,"tag":360,"props":947,"children":948},{"style":383},[949],{"type":52,"value":781},{"type":46,"tag":360,"props":951,"children":952},{"style":383},[953],{"type":52,"value":786},{"type":46,"tag":360,"props":955,"children":956},{"style":607},[957],{"type":52,"value":734},{"type":46,"tag":360,"props":959,"children":960},{"style":383},[961],{"type":52,"value":962},"service:payment-api",{"type":46,"tag":360,"props":964,"children":965},{"style":607},[966],{"type":52,"value":924},{"type":46,"tag":360,"props":968,"children":969},{"style":383},[970],{"type":52,"value":929},{"type":46,"tag":360,"props":972,"children":973},{"style":383},[974],{"type":52,"value":975}," 1h",{"type":46,"tag":360,"props":977,"children":978},{"style":383},[979],{"type":52,"value":703},{"type":46,"tag":360,"props":981,"children":982},{"style":706},[983],{"type":52,"value":984}," 100\n",{"type":46,"tag":360,"props":986,"children":987},{"class":362,"line":394},[988,992,996,1000,1004,1008,1013,1017,1021],{"type":46,"tag":360,"props":989,"children":990},{"style":377},[991],{"type":52,"value":430},{"type":46,"tag":360,"props":993,"children":994},{"style":383},[995],{"type":52,"value":902},{"type":46,"tag":360,"props":997,"children":998},{"style":383},[999],{"type":52,"value":781},{"type":46,"tag":360,"props":1001,"children":1002},{"style":383},[1003],{"type":52,"value":786},{"type":46,"tag":360,"props":1005,"children":1006},{"style":607},[1007],{"type":52,"value":734},{"type":46,"tag":360,"props":1009,"children":1010},{"style":383},[1011],{"type":52,"value":1012},"@http.status_code:5*",{"type":46,"tag":360,"props":1014,"children":1015},{"style":607},[1016],{"type":52,"value":924},{"type":46,"tag":360,"props":1018,"children":1019},{"style":383},[1020],{"type":52,"value":929},{"type":46,"tag":360,"props":1022,"children":1023},{"style":383},[1024],{"type":52,"value":1025}," 24h\n",{"type":46,"tag":360,"props":1027,"children":1028},{"class":362,"line":490},[1029,1033,1037,1042,1046,1050,1055,1059,1064,1069,1073],{"type":46,"tag":360,"props":1030,"children":1031},{"style":377},[1032],{"type":52,"value":430},{"type":46,"tag":360,"props":1034,"children":1035},{"style":383},[1036],{"type":52,"value":902},{"type":46,"tag":360,"props":1038,"children":1039},{"style":383},[1040],{"type":52,"value":1041}," aggregate",{"type":46,"tag":360,"props":1043,"children":1044},{"style":383},[1045],{"type":52,"value":786},{"type":46,"tag":360,"props":1047,"children":1048},{"style":607},[1049],{"type":52,"value":734},{"type":46,"tag":360,"props":1051,"children":1052},{"style":383},[1053],{"type":52,"value":1054},"service:api",{"type":46,"tag":360,"props":1056,"children":1057},{"style":607},[1058],{"type":52,"value":924},{"type":46,"tag":360,"props":1060,"children":1061},{"style":383},[1062],{"type":52,"value":1063}," --compute",{"type":46,"tag":360,"props":1065,"children":1066},{"style":383},[1067],{"type":52,"value":1068}," count",{"type":46,"tag":360,"props":1070,"children":1071},{"style":383},[1072],{"type":52,"value":929},{"type":46,"tag":360,"props":1074,"children":1075},{"style":383},[1076],{"type":52,"value":934},{"type":46,"tag":569,"props":1078,"children":1080},{"id":1079},"metrics",[1081],{"type":52,"value":1082},"Metrics",{"type":46,"tag":349,"props":1084,"children":1086},{"className":351,"code":1085,"language":353,"meta":354,"style":354},"pup metrics query --query \"avg:system.cpu.user{*}\" --from 1h\npup metrics query --query \"sum:trace.express.request.hits{service:api}\" --from 1h\npup metrics list --filter \"system.*\"\n",[1087],{"type":46,"tag":107,"props":1088,"children":1089},{"__ignoreMap":354},[1090,1132,1172],{"type":46,"tag":360,"props":1091,"children":1092},{"class":362,"line":363},[1093,1097,1102,1107,1111,1115,1120,1124,1128],{"type":46,"tag":360,"props":1094,"children":1095},{"style":377},[1096],{"type":52,"value":430},{"type":46,"tag":360,"props":1098,"children":1099},{"style":383},[1100],{"type":52,"value":1101}," metrics",{"type":46,"tag":360,"props":1103,"children":1104},{"style":383},[1105],{"type":52,"value":1106}," query",{"type":46,"tag":360,"props":1108,"children":1109},{"style":383},[1110],{"type":52,"value":786},{"type":46,"tag":360,"props":1112,"children":1113},{"style":607},[1114],{"type":52,"value":734},{"type":46,"tag":360,"props":1116,"children":1117},{"style":383},[1118],{"type":52,"value":1119},"avg:system.cpu.user{*}",{"type":46,"tag":360,"props":1121,"children":1122},{"style":607},[1123],{"type":52,"value":924},{"type":46,"tag":360,"props":1125,"children":1126},{"style":383},[1127],{"type":52,"value":929},{"type":46,"tag":360,"props":1129,"children":1130},{"style":383},[1131],{"type":52,"value":934},{"type":46,"tag":360,"props":1133,"children":1134},{"class":362,"line":373},[1135,1139,1143,1147,1151,1155,1160,1164,1168],{"type":46,"tag":360,"props":1136,"children":1137},{"style":377},[1138],{"type":52,"value":430},{"type":46,"tag":360,"props":1140,"children":1141},{"style":383},[1142],{"type":52,"value":1101},{"type":46,"tag":360,"props":1144,"children":1145},{"style":383},[1146],{"type":52,"value":1106},{"type":46,"tag":360,"props":1148,"children":1149},{"style":383},[1150],{"type":52,"value":786},{"type":46,"tag":360,"props":1152,"children":1153},{"style":607},[1154],{"type":52,"value":734},{"type":46,"tag":360,"props":1156,"children":1157},{"style":383},[1158],{"type":52,"value":1159},"sum:trace.express.request.hits{service:api}",{"type":46,"tag":360,"props":1161,"children":1162},{"style":607},[1163],{"type":52,"value":924},{"type":46,"tag":360,"props":1165,"children":1166},{"style":383},[1167],{"type":52,"value":929},{"type":46,"tag":360,"props":1169,"children":1170},{"style":383},[1171],{"type":52,"value":934},{"type":46,"tag":360,"props":1173,"children":1174},{"class":362,"line":394},[1175,1179,1183,1187,1192,1196,1201],{"type":46,"tag":360,"props":1176,"children":1177},{"style":377},[1178],{"type":52,"value":430},{"type":46,"tag":360,"props":1180,"children":1181},{"style":383},[1182],{"type":52,"value":1101},{"type":46,"tag":360,"props":1184,"children":1185},{"style":383},[1186],{"type":52,"value":698},{"type":46,"tag":360,"props":1188,"children":1189},{"style":383},[1190],{"type":52,"value":1191}," --filter",{"type":46,"tag":360,"props":1193,"children":1194},{"style":607},[1195],{"type":52,"value":734},{"type":46,"tag":360,"props":1197,"children":1198},{"style":383},[1199],{"type":52,"value":1200},"system.*",{"type":46,"tag":360,"props":1202,"children":1203},{"style":607},[1204],{"type":52,"value":744},{"type":46,"tag":569,"props":1206,"children":1208},{"id":1207},"apm-services",[1209],{"type":52,"value":1210},"APM \u002F Services",{"type":46,"tag":349,"props":1212,"children":1214},{"className":351,"code":1213,"language":353,"meta":354,"style":354},"pup apm services list --env production\npup apm services stats --env production\npup apm services operations --env production --service my-service\npup apm services resources --env production --service my-service --name http.request\npup apm dependencies list --env production\n",[1215],{"type":46,"tag":107,"props":1216,"children":1217},{"__ignoreMap":354},[1218,1249,1277,1316,1363],{"type":46,"tag":360,"props":1219,"children":1220},{"class":362,"line":363},[1221,1225,1230,1235,1239,1244],{"type":46,"tag":360,"props":1222,"children":1223},{"style":377},[1224],{"type":52,"value":430},{"type":46,"tag":360,"props":1226,"children":1227},{"style":383},[1228],{"type":52,"value":1229}," apm",{"type":46,"tag":360,"props":1231,"children":1232},{"style":383},[1233],{"type":52,"value":1234}," services",{"type":46,"tag":360,"props":1236,"children":1237},{"style":383},[1238],{"type":52,"value":698},{"type":46,"tag":360,"props":1240,"children":1241},{"style":383},[1242],{"type":52,"value":1243}," --env",{"type":46,"tag":360,"props":1245,"children":1246},{"style":383},[1247],{"type":52,"value":1248}," production\n",{"type":46,"tag":360,"props":1250,"children":1251},{"class":362,"line":373},[1252,1256,1260,1264,1269,1273],{"type":46,"tag":360,"props":1253,"children":1254},{"style":377},[1255],{"type":52,"value":430},{"type":46,"tag":360,"props":1257,"children":1258},{"style":383},[1259],{"type":52,"value":1229},{"type":46,"tag":360,"props":1261,"children":1262},{"style":383},[1263],{"type":52,"value":1234},{"type":46,"tag":360,"props":1265,"children":1266},{"style":383},[1267],{"type":52,"value":1268}," stats",{"type":46,"tag":360,"props":1270,"children":1271},{"style":383},[1272],{"type":52,"value":1243},{"type":46,"tag":360,"props":1274,"children":1275},{"style":383},[1276],{"type":52,"value":1248},{"type":46,"tag":360,"props":1278,"children":1279},{"class":362,"line":394},[1280,1284,1288,1292,1297,1301,1306,1311],{"type":46,"tag":360,"props":1281,"children":1282},{"style":377},[1283],{"type":52,"value":430},{"type":46,"tag":360,"props":1285,"children":1286},{"style":383},[1287],{"type":52,"value":1229},{"type":46,"tag":360,"props":1289,"children":1290},{"style":383},[1291],{"type":52,"value":1234},{"type":46,"tag":360,"props":1293,"children":1294},{"style":383},[1295],{"type":52,"value":1296}," operations",{"type":46,"tag":360,"props":1298,"children":1299},{"style":383},[1300],{"type":52,"value":1243},{"type":46,"tag":360,"props":1302,"children":1303},{"style":383},[1304],{"type":52,"value":1305}," production",{"type":46,"tag":360,"props":1307,"children":1308},{"style":383},[1309],{"type":52,"value":1310}," --service",{"type":46,"tag":360,"props":1312,"children":1313},{"style":383},[1314],{"type":52,"value":1315}," my-service\n",{"type":46,"tag":360,"props":1317,"children":1318},{"class":362,"line":490},[1319,1323,1327,1331,1336,1340,1344,1348,1353,1358],{"type":46,"tag":360,"props":1320,"children":1321},{"style":377},[1322],{"type":52,"value":430},{"type":46,"tag":360,"props":1324,"children":1325},{"style":383},[1326],{"type":52,"value":1229},{"type":46,"tag":360,"props":1328,"children":1329},{"style":383},[1330],{"type":52,"value":1234},{"type":46,"tag":360,"props":1332,"children":1333},{"style":383},[1334],{"type":52,"value":1335}," resources",{"type":46,"tag":360,"props":1337,"children":1338},{"style":383},[1339],{"type":52,"value":1243},{"type":46,"tag":360,"props":1341,"children":1342},{"style":383},[1343],{"type":52,"value":1305},{"type":46,"tag":360,"props":1345,"children":1346},{"style":383},[1347],{"type":52,"value":1310},{"type":46,"tag":360,"props":1349,"children":1350},{"style":383},[1351],{"type":52,"value":1352}," my-service",{"type":46,"tag":360,"props":1354,"children":1355},{"style":383},[1356],{"type":52,"value":1357}," --name",{"type":46,"tag":360,"props":1359,"children":1360},{"style":383},[1361],{"type":52,"value":1362}," http.request\n",{"type":46,"tag":360,"props":1364,"children":1365},{"class":362,"line":802},[1366,1370,1374,1379,1383,1387],{"type":46,"tag":360,"props":1367,"children":1368},{"style":377},[1369],{"type":52,"value":430},{"type":46,"tag":360,"props":1371,"children":1372},{"style":383},[1373],{"type":52,"value":1229},{"type":46,"tag":360,"props":1375,"children":1376},{"style":383},[1377],{"type":52,"value":1378}," dependencies",{"type":46,"tag":360,"props":1380,"children":1381},{"style":383},[1382],{"type":52,"value":698},{"type":46,"tag":360,"props":1384,"children":1385},{"style":383},[1386],{"type":52,"value":1243},{"type":46,"tag":360,"props":1388,"children":1389},{"style":383},[1390],{"type":52,"value":1248},{"type":46,"tag":569,"props":1392,"children":1394},{"id":1393},"traces",[1395],{"type":52,"value":1396},"Traces",{"type":46,"tag":349,"props":1398,"children":1400},{"className":351,"code":1399,"language":353,"meta":354,"style":354},"# Search traces (duration in nanoseconds: 1s = 1000000000)\npup traces search --query=\"service:api-gateway\" --from=\"1h\"\npup traces search --query=\"service:api @duration:>1000000000\" --from=\"1h\"\npup traces search --query=\"service:api status:error\" --from=\"1h\"\npup traces aggregate --query=\"service:api\" --compute=\"avg(@duration)\" --group-by=\"resource_name\" --from=\"1h\"\n",[1401],{"type":46,"tag":107,"props":1402,"children":1403},{"__ignoreMap":354},[1404,1412,1464,1512,1560],{"type":46,"tag":360,"props":1405,"children":1406},{"class":362,"line":363},[1407],{"type":46,"tag":360,"props":1408,"children":1409},{"style":367},[1410],{"type":52,"value":1411},"# Search traces (duration in nanoseconds: 1s = 1000000000)\n",{"type":46,"tag":360,"props":1413,"children":1414},{"class":362,"line":373},[1415,1419,1424,1428,1433,1437,1442,1446,1451,1455,1460],{"type":46,"tag":360,"props":1416,"children":1417},{"style":377},[1418],{"type":52,"value":430},{"type":46,"tag":360,"props":1420,"children":1421},{"style":383},[1422],{"type":52,"value":1423}," traces",{"type":46,"tag":360,"props":1425,"children":1426},{"style":383},[1427],{"type":52,"value":781},{"type":46,"tag":360,"props":1429,"children":1430},{"style":383},[1431],{"type":52,"value":1432}," --query=",{"type":46,"tag":360,"props":1434,"children":1435},{"style":607},[1436],{"type":52,"value":924},{"type":46,"tag":360,"props":1438,"children":1439},{"style":383},[1440],{"type":52,"value":1441},"service:api-gateway",{"type":46,"tag":360,"props":1443,"children":1444},{"style":607},[1445],{"type":52,"value":924},{"type":46,"tag":360,"props":1447,"children":1448},{"style":383},[1449],{"type":52,"value":1450}," --from=",{"type":46,"tag":360,"props":1452,"children":1453},{"style":607},[1454],{"type":52,"value":924},{"type":46,"tag":360,"props":1456,"children":1457},{"style":383},[1458],{"type":52,"value":1459},"1h",{"type":46,"tag":360,"props":1461,"children":1462},{"style":607},[1463],{"type":52,"value":744},{"type":46,"tag":360,"props":1465,"children":1466},{"class":362,"line":394},[1467,1471,1475,1479,1483,1487,1492,1496,1500,1504,1508],{"type":46,"tag":360,"props":1468,"children":1469},{"style":377},[1470],{"type":52,"value":430},{"type":46,"tag":360,"props":1472,"children":1473},{"style":383},[1474],{"type":52,"value":1423},{"type":46,"tag":360,"props":1476,"children":1477},{"style":383},[1478],{"type":52,"value":781},{"type":46,"tag":360,"props":1480,"children":1481},{"style":383},[1482],{"type":52,"value":1432},{"type":46,"tag":360,"props":1484,"children":1485},{"style":607},[1486],{"type":52,"value":924},{"type":46,"tag":360,"props":1488,"children":1489},{"style":383},[1490],{"type":52,"value":1491},"service:api @duration:>1000000000",{"type":46,"tag":360,"props":1493,"children":1494},{"style":607},[1495],{"type":52,"value":924},{"type":46,"tag":360,"props":1497,"children":1498},{"style":383},[1499],{"type":52,"value":1450},{"type":46,"tag":360,"props":1501,"children":1502},{"style":607},[1503],{"type":52,"value":924},{"type":46,"tag":360,"props":1505,"children":1506},{"style":383},[1507],{"type":52,"value":1459},{"type":46,"tag":360,"props":1509,"children":1510},{"style":607},[1511],{"type":52,"value":744},{"type":46,"tag":360,"props":1513,"children":1514},{"class":362,"line":490},[1515,1519,1523,1527,1531,1535,1540,1544,1548,1552,1556],{"type":46,"tag":360,"props":1516,"children":1517},{"style":377},[1518],{"type":52,"value":430},{"type":46,"tag":360,"props":1520,"children":1521},{"style":383},[1522],{"type":52,"value":1423},{"type":46,"tag":360,"props":1524,"children":1525},{"style":383},[1526],{"type":52,"value":781},{"type":46,"tag":360,"props":1528,"children":1529},{"style":383},[1530],{"type":52,"value":1432},{"type":46,"tag":360,"props":1532,"children":1533},{"style":607},[1534],{"type":52,"value":924},{"type":46,"tag":360,"props":1536,"children":1537},{"style":383},[1538],{"type":52,"value":1539},"service:api status:error",{"type":46,"tag":360,"props":1541,"children":1542},{"style":607},[1543],{"type":52,"value":924},{"type":46,"tag":360,"props":1545,"children":1546},{"style":383},[1547],{"type":52,"value":1450},{"type":46,"tag":360,"props":1549,"children":1550},{"style":607},[1551],{"type":52,"value":924},{"type":46,"tag":360,"props":1553,"children":1554},{"style":383},[1555],{"type":52,"value":1459},{"type":46,"tag":360,"props":1557,"children":1558},{"style":607},[1559],{"type":52,"value":744},{"type":46,"tag":360,"props":1561,"children":1562},{"class":362,"line":802},[1563,1567,1571,1575,1579,1583,1587,1591,1596,1600,1605,1609,1614,1618,1623,1627,1631,1635,1639],{"type":46,"tag":360,"props":1564,"children":1565},{"style":377},[1566],{"type":52,"value":430},{"type":46,"tag":360,"props":1568,"children":1569},{"style":383},[1570],{"type":52,"value":1423},{"type":46,"tag":360,"props":1572,"children":1573},{"style":383},[1574],{"type":52,"value":1041},{"type":46,"tag":360,"props":1576,"children":1577},{"style":383},[1578],{"type":52,"value":1432},{"type":46,"tag":360,"props":1580,"children":1581},{"style":607},[1582],{"type":52,"value":924},{"type":46,"tag":360,"props":1584,"children":1585},{"style":383},[1586],{"type":52,"value":1054},{"type":46,"tag":360,"props":1588,"children":1589},{"style":607},[1590],{"type":52,"value":924},{"type":46,"tag":360,"props":1592,"children":1593},{"style":383},[1594],{"type":52,"value":1595}," --compute=",{"type":46,"tag":360,"props":1597,"children":1598},{"style":607},[1599],{"type":52,"value":924},{"type":46,"tag":360,"props":1601,"children":1602},{"style":383},[1603],{"type":52,"value":1604},"avg(@duration)",{"type":46,"tag":360,"props":1606,"children":1607},{"style":607},[1608],{"type":52,"value":924},{"type":46,"tag":360,"props":1610,"children":1611},{"style":383},[1612],{"type":52,"value":1613}," --group-by=",{"type":46,"tag":360,"props":1615,"children":1616},{"style":607},[1617],{"type":52,"value":924},{"type":46,"tag":360,"props":1619,"children":1620},{"style":383},[1621],{"type":52,"value":1622},"resource_name",{"type":46,"tag":360,"props":1624,"children":1625},{"style":607},[1626],{"type":52,"value":924},{"type":46,"tag":360,"props":1628,"children":1629},{"style":383},[1630],{"type":52,"value":1450},{"type":46,"tag":360,"props":1632,"children":1633},{"style":607},[1634],{"type":52,"value":924},{"type":46,"tag":360,"props":1636,"children":1637},{"style":383},[1638],{"type":52,"value":1459},{"type":46,"tag":360,"props":1640,"children":1641},{"style":607},[1642],{"type":52,"value":744},{"type":46,"tag":569,"props":1644,"children":1646},{"id":1645},"incidents",[1647],{"type":52,"value":1648},"Incidents",{"type":46,"tag":349,"props":1650,"children":1652},{"className":351,"code":1651,"language":353,"meta":354,"style":354},"pup incidents list\npup incidents list --limit 20\npup incidents get \u003Cincident-id>\n",[1653],{"type":46,"tag":107,"props":1654,"children":1655},{"__ignoreMap":354},[1656,1673,1697],{"type":46,"tag":360,"props":1657,"children":1658},{"class":362,"line":363},[1659,1663,1668],{"type":46,"tag":360,"props":1660,"children":1661},{"style":377},[1662],{"type":52,"value":430},{"type":46,"tag":360,"props":1664,"children":1665},{"style":383},[1666],{"type":52,"value":1667}," incidents",{"type":46,"tag":360,"props":1669,"children":1670},{"style":383},[1671],{"type":52,"value":1672}," list\n",{"type":46,"tag":360,"props":1674,"children":1675},{"class":362,"line":373},[1676,1680,1684,1688,1692],{"type":46,"tag":360,"props":1677,"children":1678},{"style":377},[1679],{"type":52,"value":430},{"type":46,"tag":360,"props":1681,"children":1682},{"style":383},[1683],{"type":52,"value":1667},{"type":46,"tag":360,"props":1685,"children":1686},{"style":383},[1687],{"type":52,"value":698},{"type":46,"tag":360,"props":1689,"children":1690},{"style":383},[1691],{"type":52,"value":703},{"type":46,"tag":360,"props":1693,"children":1694},{"style":706},[1695],{"type":52,"value":1696}," 20\n",{"type":46,"tag":360,"props":1698,"children":1699},{"class":362,"line":394},[1700,1704,1708,1712,1717,1722,1727],{"type":46,"tag":360,"props":1701,"children":1702},{"style":377},[1703],{"type":52,"value":430},{"type":46,"tag":360,"props":1705,"children":1706},{"style":383},[1707],{"type":52,"value":1667},{"type":46,"tag":360,"props":1709,"children":1710},{"style":383},[1711],{"type":52,"value":760},{"type":46,"tag":360,"props":1713,"children":1714},{"style":607},[1715],{"type":52,"value":1716}," \u003C",{"type":46,"tag":360,"props":1718,"children":1719},{"style":383},[1720],{"type":52,"value":1721},"incident-i",{"type":46,"tag":360,"props":1723,"children":1724},{"style":601},[1725],{"type":52,"value":1726},"d",{"type":46,"tag":360,"props":1728,"children":1729},{"style":607},[1730],{"type":52,"value":1731},">\n",{"type":46,"tag":569,"props":1733,"children":1735},{"id":1734},"dashboards",[1736],{"type":52,"value":1737},"Dashboards",{"type":46,"tag":349,"props":1739,"children":1741},{"className":351,"code":1740,"language":353,"meta":354,"style":354},"pup dashboards list\npup dashboards get abc-123\npup dashboards create --file dashboard.json\npup dashboards update abc-123 --file dashboard.json\npup dashboards delete abc-123\n",[1742],{"type":46,"tag":107,"props":1743,"children":1744},{"__ignoreMap":354},[1745,1761,1781,1805,1833],{"type":46,"tag":360,"props":1746,"children":1747},{"class":362,"line":363},[1748,1752,1757],{"type":46,"tag":360,"props":1749,"children":1750},{"style":377},[1751],{"type":52,"value":430},{"type":46,"tag":360,"props":1753,"children":1754},{"style":383},[1755],{"type":52,"value":1756}," dashboards",{"type":46,"tag":360,"props":1758,"children":1759},{"style":383},[1760],{"type":52,"value":1672},{"type":46,"tag":360,"props":1762,"children":1763},{"class":362,"line":373},[1764,1768,1772,1776],{"type":46,"tag":360,"props":1765,"children":1766},{"style":377},[1767],{"type":52,"value":430},{"type":46,"tag":360,"props":1769,"children":1770},{"style":383},[1771],{"type":52,"value":1756},{"type":46,"tag":360,"props":1773,"children":1774},{"style":383},[1775],{"type":52,"value":760},{"type":46,"tag":360,"props":1777,"children":1778},{"style":383},[1779],{"type":52,"value":1780}," abc-123\n",{"type":46,"tag":360,"props":1782,"children":1783},{"class":362,"line":394},[1784,1788,1792,1796,1800],{"type":46,"tag":360,"props":1785,"children":1786},{"style":377},[1787],{"type":52,"value":430},{"type":46,"tag":360,"props":1789,"children":1790},{"style":383},[1791],{"type":52,"value":1756},{"type":46,"tag":360,"props":1793,"children":1794},{"style":383},[1795],{"type":52,"value":816},{"type":46,"tag":360,"props":1797,"children":1798},{"style":383},[1799],{"type":52,"value":821},{"type":46,"tag":360,"props":1801,"children":1802},{"style":383},[1803],{"type":52,"value":1804}," dashboard.json\n",{"type":46,"tag":360,"props":1806,"children":1807},{"class":362,"line":490},[1808,1812,1816,1820,1825,1829],{"type":46,"tag":360,"props":1809,"children":1810},{"style":377},[1811],{"type":52,"value":430},{"type":46,"tag":360,"props":1813,"children":1814},{"style":383},[1815],{"type":52,"value":1756},{"type":46,"tag":360,"props":1817,"children":1818},{"style":383},[1819],{"type":52,"value":843},{"type":46,"tag":360,"props":1821,"children":1822},{"style":383},[1823],{"type":52,"value":1824}," abc-123",{"type":46,"tag":360,"props":1826,"children":1827},{"style":383},[1828],{"type":52,"value":821},{"type":46,"tag":360,"props":1830,"children":1831},{"style":383},[1832],{"type":52,"value":1804},{"type":46,"tag":360,"props":1834,"children":1835},{"class":362,"line":802},[1836,1840,1844,1848],{"type":46,"tag":360,"props":1837,"children":1838},{"style":377},[1839],{"type":52,"value":430},{"type":46,"tag":360,"props":1841,"children":1842},{"style":383},[1843],{"type":52,"value":1756},{"type":46,"tag":360,"props":1845,"children":1846},{"style":383},[1847],{"type":52,"value":873},{"type":46,"tag":360,"props":1849,"children":1850},{"style":383},[1851],{"type":52,"value":1780},{"type":46,"tag":569,"props":1853,"children":1855},{"id":1854},"slos",[1856],{"type":52,"value":1857},"SLOs",{"type":46,"tag":349,"props":1859,"children":1861},{"className":351,"code":1860,"language":353,"meta":354,"style":354},"pup slos list\npup slos get slo-123\npup slos status slo-123 --from 30d --to now\npup slos create --file slo.json\n",[1862],{"type":46,"tag":107,"props":1863,"children":1864},{"__ignoreMap":354},[1865,1881,1901,1940],{"type":46,"tag":360,"props":1866,"children":1867},{"class":362,"line":363},[1868,1872,1877],{"type":46,"tag":360,"props":1869,"children":1870},{"style":377},[1871],{"type":52,"value":430},{"type":46,"tag":360,"props":1873,"children":1874},{"style":383},[1875],{"type":52,"value":1876}," slos",{"type":46,"tag":360,"props":1878,"children":1879},{"style":383},[1880],{"type":52,"value":1672},{"type":46,"tag":360,"props":1882,"children":1883},{"class":362,"line":373},[1884,1888,1892,1896],{"type":46,"tag":360,"props":1885,"children":1886},{"style":377},[1887],{"type":52,"value":430},{"type":46,"tag":360,"props":1889,"children":1890},{"style":383},[1891],{"type":52,"value":1876},{"type":46,"tag":360,"props":1893,"children":1894},{"style":383},[1895],{"type":52,"value":760},{"type":46,"tag":360,"props":1897,"children":1898},{"style":383},[1899],{"type":52,"value":1900}," slo-123\n",{"type":46,"tag":360,"props":1902,"children":1903},{"class":362,"line":394},[1904,1908,1912,1916,1921,1925,1930,1935],{"type":46,"tag":360,"props":1905,"children":1906},{"style":377},[1907],{"type":52,"value":430},{"type":46,"tag":360,"props":1909,"children":1910},{"style":383},[1911],{"type":52,"value":1876},{"type":46,"tag":360,"props":1913,"children":1914},{"style":383},[1915],{"type":52,"value":461},{"type":46,"tag":360,"props":1917,"children":1918},{"style":383},[1919],{"type":52,"value":1920}," slo-123",{"type":46,"tag":360,"props":1922,"children":1923},{"style":383},[1924],{"type":52,"value":929},{"type":46,"tag":360,"props":1926,"children":1927},{"style":383},[1928],{"type":52,"value":1929}," 30d",{"type":46,"tag":360,"props":1931,"children":1932},{"style":383},[1933],{"type":52,"value":1934}," --to",{"type":46,"tag":360,"props":1936,"children":1937},{"style":383},[1938],{"type":52,"value":1939}," now\n",{"type":46,"tag":360,"props":1941,"children":1942},{"class":362,"line":490},[1943,1947,1951,1955,1959],{"type":46,"tag":360,"props":1944,"children":1945},{"style":377},[1946],{"type":52,"value":430},{"type":46,"tag":360,"props":1948,"children":1949},{"style":383},[1950],{"type":52,"value":1876},{"type":46,"tag":360,"props":1952,"children":1953},{"style":383},[1954],{"type":52,"value":816},{"type":46,"tag":360,"props":1956,"children":1957},{"style":383},[1958],{"type":52,"value":821},{"type":46,"tag":360,"props":1960,"children":1961},{"style":383},[1962],{"type":52,"value":1963}," slo.json\n",{"type":46,"tag":569,"props":1965,"children":1967},{"id":1966},"synthetics",[1968],{"type":52,"value":1969},"Synthetics",{"type":46,"tag":349,"props":1971,"children":1973},{"className":351,"code":1972,"language":353,"meta":354,"style":354},"pup synthetics tests list\npup synthetics tests get abc-123\npup synthetics tests search --text \"login\"\npup synthetics locations list\n",[1974],{"type":46,"tag":107,"props":1975,"children":1976},{"__ignoreMap":354},[1977,1998,2021,2058],{"type":46,"tag":360,"props":1978,"children":1979},{"class":362,"line":363},[1980,1984,1989,1994],{"type":46,"tag":360,"props":1981,"children":1982},{"style":377},[1983],{"type":52,"value":430},{"type":46,"tag":360,"props":1985,"children":1986},{"style":383},[1987],{"type":52,"value":1988}," synthetics",{"type":46,"tag":360,"props":1990,"children":1991},{"style":383},[1992],{"type":52,"value":1993}," tests",{"type":46,"tag":360,"props":1995,"children":1996},{"style":383},[1997],{"type":52,"value":1672},{"type":46,"tag":360,"props":1999,"children":2000},{"class":362,"line":373},[2001,2005,2009,2013,2017],{"type":46,"tag":360,"props":2002,"children":2003},{"style":377},[2004],{"type":52,"value":430},{"type":46,"tag":360,"props":2006,"children":2007},{"style":383},[2008],{"type":52,"value":1988},{"type":46,"tag":360,"props":2010,"children":2011},{"style":383},[2012],{"type":52,"value":1993},{"type":46,"tag":360,"props":2014,"children":2015},{"style":383},[2016],{"type":52,"value":760},{"type":46,"tag":360,"props":2018,"children":2019},{"style":383},[2020],{"type":52,"value":1780},{"type":46,"tag":360,"props":2022,"children":2023},{"class":362,"line":394},[2024,2028,2032,2036,2040,2045,2049,2054],{"type":46,"tag":360,"props":2025,"children":2026},{"style":377},[2027],{"type":52,"value":430},{"type":46,"tag":360,"props":2029,"children":2030},{"style":383},[2031],{"type":52,"value":1988},{"type":46,"tag":360,"props":2033,"children":2034},{"style":383},[2035],{"type":52,"value":1993},{"type":46,"tag":360,"props":2037,"children":2038},{"style":383},[2039],{"type":52,"value":781},{"type":46,"tag":360,"props":2041,"children":2042},{"style":383},[2043],{"type":52,"value":2044}," --text",{"type":46,"tag":360,"props":2046,"children":2047},{"style":607},[2048],{"type":52,"value":734},{"type":46,"tag":360,"props":2050,"children":2051},{"style":383},[2052],{"type":52,"value":2053},"login",{"type":46,"tag":360,"props":2055,"children":2056},{"style":607},[2057],{"type":52,"value":744},{"type":46,"tag":360,"props":2059,"children":2060},{"class":362,"line":490},[2061,2065,2069,2074],{"type":46,"tag":360,"props":2062,"children":2063},{"style":377},[2064],{"type":52,"value":430},{"type":46,"tag":360,"props":2066,"children":2067},{"style":383},[2068],{"type":52,"value":1988},{"type":46,"tag":360,"props":2070,"children":2071},{"style":383},[2072],{"type":52,"value":2073}," locations",{"type":46,"tag":360,"props":2075,"children":2076},{"style":383},[2077],{"type":52,"value":1672},{"type":46,"tag":569,"props":2079,"children":2081},{"id":2080},"downtimes",[2082],{"type":52,"value":2083},"Downtimes",{"type":46,"tag":349,"props":2085,"children":2087},{"className":351,"code":2086,"language":353,"meta":354,"style":354},"pup downtime list\npup downtime get abc-123-def\npup downtime create --file downtime.json\npup downtime cancel abc-123-def\n",[2088],{"type":46,"tag":107,"props":2089,"children":2090},{"__ignoreMap":354},[2091,2107,2127,2151],{"type":46,"tag":360,"props":2092,"children":2093},{"class":362,"line":363},[2094,2098,2103],{"type":46,"tag":360,"props":2095,"children":2096},{"style":377},[2097],{"type":52,"value":430},{"type":46,"tag":360,"props":2099,"children":2100},{"style":383},[2101],{"type":52,"value":2102}," downtime",{"type":46,"tag":360,"props":2104,"children":2105},{"style":383},[2106],{"type":52,"value":1672},{"type":46,"tag":360,"props":2108,"children":2109},{"class":362,"line":373},[2110,2114,2118,2122],{"type":46,"tag":360,"props":2111,"children":2112},{"style":377},[2113],{"type":52,"value":430},{"type":46,"tag":360,"props":2115,"children":2116},{"style":383},[2117],{"type":52,"value":2102},{"type":46,"tag":360,"props":2119,"children":2120},{"style":383},[2121],{"type":52,"value":760},{"type":46,"tag":360,"props":2123,"children":2124},{"style":383},[2125],{"type":52,"value":2126}," abc-123-def\n",{"type":46,"tag":360,"props":2128,"children":2129},{"class":362,"line":394},[2130,2134,2138,2142,2146],{"type":46,"tag":360,"props":2131,"children":2132},{"style":377},[2133],{"type":52,"value":430},{"type":46,"tag":360,"props":2135,"children":2136},{"style":383},[2137],{"type":52,"value":2102},{"type":46,"tag":360,"props":2139,"children":2140},{"style":383},[2141],{"type":52,"value":816},{"type":46,"tag":360,"props":2143,"children":2144},{"style":383},[2145],{"type":52,"value":821},{"type":46,"tag":360,"props":2147,"children":2148},{"style":383},[2149],{"type":52,"value":2150}," downtime.json\n",{"type":46,"tag":360,"props":2152,"children":2153},{"class":362,"line":490},[2154,2158,2162,2167],{"type":46,"tag":360,"props":2155,"children":2156},{"style":377},[2157],{"type":52,"value":430},{"type":46,"tag":360,"props":2159,"children":2160},{"style":383},[2161],{"type":52,"value":2102},{"type":46,"tag":360,"props":2163,"children":2164},{"style":383},[2165],{"type":52,"value":2166}," cancel",{"type":46,"tag":360,"props":2168,"children":2169},{"style":383},[2170],{"type":52,"value":2126},{"type":46,"tag":569,"props":2172,"children":2174},{"id":2173},"infrastructure-hosts",[2175],{"type":52,"value":2176},"Infrastructure \u002F Hosts",{"type":46,"tag":349,"props":2178,"children":2180},{"className":351,"code":2179,"language":353,"meta":354,"style":354},"pup infrastructure hosts list\npup infrastructure hosts list --filter \"env:prod\"\npup infrastructure hosts list --count 100\npup infrastructure hosts get \u003Chost-id>\n",[2181],{"type":46,"tag":107,"props":2182,"children":2183},{"__ignoreMap":354},[2184,2205,2240,2268],{"type":46,"tag":360,"props":2185,"children":2186},{"class":362,"line":363},[2187,2191,2196,2201],{"type":46,"tag":360,"props":2188,"children":2189},{"style":377},[2190],{"type":52,"value":430},{"type":46,"tag":360,"props":2192,"children":2193},{"style":383},[2194],{"type":52,"value":2195}," infrastructure",{"type":46,"tag":360,"props":2197,"children":2198},{"style":383},[2199],{"type":52,"value":2200}," hosts",{"type":46,"tag":360,"props":2202,"children":2203},{"style":383},[2204],{"type":52,"value":1672},{"type":46,"tag":360,"props":2206,"children":2207},{"class":362,"line":373},[2208,2212,2216,2220,2224,2228,2232,2236],{"type":46,"tag":360,"props":2209,"children":2210},{"style":377},[2211],{"type":52,"value":430},{"type":46,"tag":360,"props":2213,"children":2214},{"style":383},[2215],{"type":52,"value":2195},{"type":46,"tag":360,"props":2217,"children":2218},{"style":383},[2219],{"type":52,"value":2200},{"type":46,"tag":360,"props":2221,"children":2222},{"style":383},[2223],{"type":52,"value":698},{"type":46,"tag":360,"props":2225,"children":2226},{"style":383},[2227],{"type":52,"value":1191},{"type":46,"tag":360,"props":2229,"children":2230},{"style":607},[2231],{"type":52,"value":734},{"type":46,"tag":360,"props":2233,"children":2234},{"style":383},[2235],{"type":52,"value":739},{"type":46,"tag":360,"props":2237,"children":2238},{"style":607},[2239],{"type":52,"value":744},{"type":46,"tag":360,"props":2241,"children":2242},{"class":362,"line":394},[2243,2247,2251,2255,2259,2264],{"type":46,"tag":360,"props":2244,"children":2245},{"style":377},[2246],{"type":52,"value":430},{"type":46,"tag":360,"props":2248,"children":2249},{"style":383},[2250],{"type":52,"value":2195},{"type":46,"tag":360,"props":2252,"children":2253},{"style":383},[2254],{"type":52,"value":2200},{"type":46,"tag":360,"props":2256,"children":2257},{"style":383},[2258],{"type":52,"value":698},{"type":46,"tag":360,"props":2260,"children":2261},{"style":383},[2262],{"type":52,"value":2263}," --count",{"type":46,"tag":360,"props":2265,"children":2266},{"style":706},[2267],{"type":52,"value":984},{"type":46,"tag":360,"props":2269,"children":2270},{"class":362,"line":490},[2271,2275,2279,2283,2287,2291,2296,2300],{"type":46,"tag":360,"props":2272,"children":2273},{"style":377},[2274],{"type":52,"value":430},{"type":46,"tag":360,"props":2276,"children":2277},{"style":383},[2278],{"type":52,"value":2195},{"type":46,"tag":360,"props":2280,"children":2281},{"style":383},[2282],{"type":52,"value":2200},{"type":46,"tag":360,"props":2284,"children":2285},{"style":383},[2286],{"type":52,"value":760},{"type":46,"tag":360,"props":2288,"children":2289},{"style":607},[2290],{"type":52,"value":1716},{"type":46,"tag":360,"props":2292,"children":2293},{"style":383},[2294],{"type":52,"value":2295},"host-i",{"type":46,"tag":360,"props":2297,"children":2298},{"style":601},[2299],{"type":52,"value":1726},{"type":46,"tag":360,"props":2301,"children":2302},{"style":607},[2303],{"type":52,"value":1731},{"type":46,"tag":569,"props":2305,"children":2307},{"id":2306},"events",[2308],{"type":52,"value":2309},"Events",{"type":46,"tag":349,"props":2311,"children":2313},{"className":351,"code":2312,"language":353,"meta":354,"style":354},"pup events list --from 24h\npup events list --tags \"source:deploy\" --from 24h\npup events search --query \"deploy\" --from 24h\npup events get \u003Cevent-id>\n",[2314],{"type":46,"tag":107,"props":2315,"children":2316},{"__ignoreMap":354},[2317,2341,2381,2421],{"type":46,"tag":360,"props":2318,"children":2319},{"class":362,"line":363},[2320,2324,2329,2333,2337],{"type":46,"tag":360,"props":2321,"children":2322},{"style":377},[2323],{"type":52,"value":430},{"type":46,"tag":360,"props":2325,"children":2326},{"style":383},[2327],{"type":52,"value":2328}," events",{"type":46,"tag":360,"props":2330,"children":2331},{"style":383},[2332],{"type":52,"value":698},{"type":46,"tag":360,"props":2334,"children":2335},{"style":383},[2336],{"type":52,"value":929},{"type":46,"tag":360,"props":2338,"children":2339},{"style":383},[2340],{"type":52,"value":1025},{"type":46,"tag":360,"props":2342,"children":2343},{"class":362,"line":373},[2344,2348,2352,2356,2360,2364,2369,2373,2377],{"type":46,"tag":360,"props":2345,"children":2346},{"style":377},[2347],{"type":52,"value":430},{"type":46,"tag":360,"props":2349,"children":2350},{"style":383},[2351],{"type":52,"value":2328},{"type":46,"tag":360,"props":2353,"children":2354},{"style":383},[2355],{"type":52,"value":698},{"type":46,"tag":360,"props":2357,"children":2358},{"style":383},[2359],{"type":52,"value":729},{"type":46,"tag":360,"props":2361,"children":2362},{"style":607},[2363],{"type":52,"value":734},{"type":46,"tag":360,"props":2365,"children":2366},{"style":383},[2367],{"type":52,"value":2368},"source:deploy",{"type":46,"tag":360,"props":2370,"children":2371},{"style":607},[2372],{"type":52,"value":924},{"type":46,"tag":360,"props":2374,"children":2375},{"style":383},[2376],{"type":52,"value":929},{"type":46,"tag":360,"props":2378,"children":2379},{"style":383},[2380],{"type":52,"value":1025},{"type":46,"tag":360,"props":2382,"children":2383},{"class":362,"line":394},[2384,2388,2392,2396,2400,2404,2409,2413,2417],{"type":46,"tag":360,"props":2385,"children":2386},{"style":377},[2387],{"type":52,"value":430},{"type":46,"tag":360,"props":2389,"children":2390},{"style":383},[2391],{"type":52,"value":2328},{"type":46,"tag":360,"props":2393,"children":2394},{"style":383},[2395],{"type":52,"value":781},{"type":46,"tag":360,"props":2397,"children":2398},{"style":383},[2399],{"type":52,"value":786},{"type":46,"tag":360,"props":2401,"children":2402},{"style":607},[2403],{"type":52,"value":734},{"type":46,"tag":360,"props":2405,"children":2406},{"style":383},[2407],{"type":52,"value":2408},"deploy",{"type":46,"tag":360,"props":2410,"children":2411},{"style":607},[2412],{"type":52,"value":924},{"type":46,"tag":360,"props":2414,"children":2415},{"style":383},[2416],{"type":52,"value":929},{"type":46,"tag":360,"props":2418,"children":2419},{"style":383},[2420],{"type":52,"value":1025},{"type":46,"tag":360,"props":2422,"children":2423},{"class":362,"line":490},[2424,2428,2432,2436,2440,2445,2449],{"type":46,"tag":360,"props":2425,"children":2426},{"style":377},[2427],{"type":52,"value":430},{"type":46,"tag":360,"props":2429,"children":2430},{"style":383},[2431],{"type":52,"value":2328},{"type":46,"tag":360,"props":2433,"children":2434},{"style":383},[2435],{"type":52,"value":760},{"type":46,"tag":360,"props":2437,"children":2438},{"style":607},[2439],{"type":52,"value":1716},{"type":46,"tag":360,"props":2441,"children":2442},{"style":383},[2443],{"type":52,"value":2444},"event-i",{"type":46,"tag":360,"props":2446,"children":2447},{"style":601},[2448],{"type":52,"value":1726},{"type":46,"tag":360,"props":2450,"children":2451},{"style":607},[2452],{"type":52,"value":1731},{"type":46,"tag":569,"props":2454,"children":2456},{"id":2455},"users-teams",[2457],{"type":52,"value":2458},"Users \u002F Teams",{"type":46,"tag":349,"props":2460,"children":2462},{"className":351,"code":2461,"language":353,"meta":354,"style":354},"pup users list\npup users get \u003Cuser-id>\npup on-call teams list\npup on-call teams get \u003Cteam-id>\n",[2463],{"type":46,"tag":107,"props":2464,"children":2465},{"__ignoreMap":354},[2466,2482,2514,2535],{"type":46,"tag":360,"props":2467,"children":2468},{"class":362,"line":363},[2469,2473,2478],{"type":46,"tag":360,"props":2470,"children":2471},{"style":377},[2472],{"type":52,"value":430},{"type":46,"tag":360,"props":2474,"children":2475},{"style":383},[2476],{"type":52,"value":2477}," users",{"type":46,"tag":360,"props":2479,"children":2480},{"style":383},[2481],{"type":52,"value":1672},{"type":46,"tag":360,"props":2483,"children":2484},{"class":362,"line":373},[2485,2489,2493,2497,2501,2506,2510],{"type":46,"tag":360,"props":2486,"children":2487},{"style":377},[2488],{"type":52,"value":430},{"type":46,"tag":360,"props":2490,"children":2491},{"style":383},[2492],{"type":52,"value":2477},{"type":46,"tag":360,"props":2494,"children":2495},{"style":383},[2496],{"type":52,"value":760},{"type":46,"tag":360,"props":2498,"children":2499},{"style":607},[2500],{"type":52,"value":1716},{"type":46,"tag":360,"props":2502,"children":2503},{"style":383},[2504],{"type":52,"value":2505},"user-i",{"type":46,"tag":360,"props":2507,"children":2508},{"style":601},[2509],{"type":52,"value":1726},{"type":46,"tag":360,"props":2511,"children":2512},{"style":607},[2513],{"type":52,"value":1731},{"type":46,"tag":360,"props":2515,"children":2516},{"class":362,"line":394},[2517,2521,2526,2531],{"type":46,"tag":360,"props":2518,"children":2519},{"style":377},[2520],{"type":52,"value":430},{"type":46,"tag":360,"props":2522,"children":2523},{"style":383},[2524],{"type":52,"value":2525}," on-call",{"type":46,"tag":360,"props":2527,"children":2528},{"style":383},[2529],{"type":52,"value":2530}," teams",{"type":46,"tag":360,"props":2532,"children":2533},{"style":383},[2534],{"type":52,"value":1672},{"type":46,"tag":360,"props":2536,"children":2537},{"class":362,"line":490},[2538,2542,2546,2550,2554,2558,2563,2567],{"type":46,"tag":360,"props":2539,"children":2540},{"style":377},[2541],{"type":52,"value":430},{"type":46,"tag":360,"props":2543,"children":2544},{"style":383},[2545],{"type":52,"value":2525},{"type":46,"tag":360,"props":2547,"children":2548},{"style":383},[2549],{"type":52,"value":2530},{"type":46,"tag":360,"props":2551,"children":2552},{"style":383},[2553],{"type":52,"value":760},{"type":46,"tag":360,"props":2555,"children":2556},{"style":607},[2557],{"type":52,"value":1716},{"type":46,"tag":360,"props":2559,"children":2560},{"style":383},[2561],{"type":52,"value":2562},"team-i",{"type":46,"tag":360,"props":2564,"children":2565},{"style":601},[2566],{"type":52,"value":1726},{"type":46,"tag":360,"props":2568,"children":2569},{"style":607},[2570],{"type":52,"value":1731},{"type":46,"tag":569,"props":2572,"children":2574},{"id":2573},"security",[2575],{"type":52,"value":2576},"Security",{"type":46,"tag":349,"props":2578,"children":2580},{"className":351,"code":2579,"language":353,"meta":354,"style":354},"pup security signals list --query \"*\" --from 24h\npup security signals list --query \"severity:critical\" --from 24h\npup security rules list\n",[2581],{"type":46,"tag":107,"props":2582,"children":2583},{"__ignoreMap":354},[2584,2630,2674],{"type":46,"tag":360,"props":2585,"children":2586},{"class":362,"line":363},[2587,2591,2596,2601,2605,2609,2613,2618,2622,2626],{"type":46,"tag":360,"props":2588,"children":2589},{"style":377},[2590],{"type":52,"value":430},{"type":46,"tag":360,"props":2592,"children":2593},{"style":383},[2594],{"type":52,"value":2595}," security",{"type":46,"tag":360,"props":2597,"children":2598},{"style":383},[2599],{"type":52,"value":2600}," signals",{"type":46,"tag":360,"props":2602,"children":2603},{"style":383},[2604],{"type":52,"value":698},{"type":46,"tag":360,"props":2606,"children":2607},{"style":383},[2608],{"type":52,"value":786},{"type":46,"tag":360,"props":2610,"children":2611},{"style":607},[2612],{"type":52,"value":734},{"type":46,"tag":360,"props":2614,"children":2615},{"style":383},[2616],{"type":52,"value":2617},"*",{"type":46,"tag":360,"props":2619,"children":2620},{"style":607},[2621],{"type":52,"value":924},{"type":46,"tag":360,"props":2623,"children":2624},{"style":383},[2625],{"type":52,"value":929},{"type":46,"tag":360,"props":2627,"children":2628},{"style":383},[2629],{"type":52,"value":1025},{"type":46,"tag":360,"props":2631,"children":2632},{"class":362,"line":373},[2633,2637,2641,2645,2649,2653,2657,2662,2666,2670],{"type":46,"tag":360,"props":2634,"children":2635},{"style":377},[2636],{"type":52,"value":430},{"type":46,"tag":360,"props":2638,"children":2639},{"style":383},[2640],{"type":52,"value":2595},{"type":46,"tag":360,"props":2642,"children":2643},{"style":383},[2644],{"type":52,"value":2600},{"type":46,"tag":360,"props":2646,"children":2647},{"style":383},[2648],{"type":52,"value":698},{"type":46,"tag":360,"props":2650,"children":2651},{"style":383},[2652],{"type":52,"value":786},{"type":46,"tag":360,"props":2654,"children":2655},{"style":607},[2656],{"type":52,"value":734},{"type":46,"tag":360,"props":2658,"children":2659},{"style":383},[2660],{"type":52,"value":2661},"severity:critical",{"type":46,"tag":360,"props":2663,"children":2664},{"style":607},[2665],{"type":52,"value":924},{"type":46,"tag":360,"props":2667,"children":2668},{"style":383},[2669],{"type":52,"value":929},{"type":46,"tag":360,"props":2671,"children":2672},{"style":383},[2673],{"type":52,"value":1025},{"type":46,"tag":360,"props":2675,"children":2676},{"class":362,"line":394},[2677,2681,2685,2690],{"type":46,"tag":360,"props":2678,"children":2679},{"style":377},[2680],{"type":52,"value":430},{"type":46,"tag":360,"props":2682,"children":2683},{"style":383},[2684],{"type":52,"value":2595},{"type":46,"tag":360,"props":2686,"children":2687},{"style":383},[2688],{"type":52,"value":2689}," rules",{"type":46,"tag":360,"props":2691,"children":2692},{"style":383},[2693],{"type":52,"value":1672},{"type":46,"tag":569,"props":2695,"children":2697},{"id":2696},"live-debugger",[2698],{"type":52,"value":2699},"Live Debugger",{"type":46,"tag":349,"props":2701,"children":2703},{"className":351,"code":2702,"language":353,"meta":354,"style":354},"# Check service context (verify env has active instances)\npup debugger context my-svc\npup debugger context my-svc --env prod\n\n# Find probe-able methods in a service\npup symdb search --service my-svc --query MyController --view probe-locations\n\n# Place a log probe with capture expressions\n# --probe-location accepts TYPE:METHOD or TYPE:METHOD(arg1, arg2, ...) with optional signature\npup debugger probes create --service my-svc --env prod \\\n  --probe-location \"com.example.MyController:handleRequest\" \\\n  --capture \"request.id\" --capture \"request.headers\" \\\n  --ttl 1h\n\n# With method signature (useful when the method is overloaded)\npup debugger probes create --service my-svc --env prod \\\n  --probe-location \"com.example.MyController:handleRequest(String, HttpHeaders)\" \\\n  --capture \"request.id\" --ttl 1h\n\n# Watch probe events — compact output\npup debugger probes watch \u003CPROBE_ID> --fields \"message,captures,timestamp\" --timeout 60 --limit 10 --wait 5\n\n# Watch — template message only\npup debugger probes watch \u003CPROBE_ID> --fields \"message\" --limit 10\n\n# List and delete probes\npup debugger probes list --service my-svc\npup debugger probes delete \u003CPROBE_ID>\n",[2704],{"type":46,"tag":107,"props":2705,"children":2706},{"__ignoreMap":354},[2707,2715,2737,2766,2775,2783,2826,2833,2842,2851,2894,2920,2964,2977,2985,2994,3034,3059,3088,3096,3105,3192,3200,3209,3270,3278,3287,3315],{"type":46,"tag":360,"props":2708,"children":2709},{"class":362,"line":363},[2710],{"type":46,"tag":360,"props":2711,"children":2712},{"style":367},[2713],{"type":52,"value":2714},"# Check service context (verify env has active instances)\n",{"type":46,"tag":360,"props":2716,"children":2717},{"class":362,"line":373},[2718,2722,2727,2732],{"type":46,"tag":360,"props":2719,"children":2720},{"style":377},[2721],{"type":52,"value":430},{"type":46,"tag":360,"props":2723,"children":2724},{"style":383},[2725],{"type":52,"value":2726}," debugger",{"type":46,"tag":360,"props":2728,"children":2729},{"style":383},[2730],{"type":52,"value":2731}," context",{"type":46,"tag":360,"props":2733,"children":2734},{"style":383},[2735],{"type":52,"value":2736}," my-svc\n",{"type":46,"tag":360,"props":2738,"children":2739},{"class":362,"line":394},[2740,2744,2748,2752,2757,2761],{"type":46,"tag":360,"props":2741,"children":2742},{"style":377},[2743],{"type":52,"value":430},{"type":46,"tag":360,"props":2745,"children":2746},{"style":383},[2747],{"type":52,"value":2726},{"type":46,"tag":360,"props":2749,"children":2750},{"style":383},[2751],{"type":52,"value":2731},{"type":46,"tag":360,"props":2753,"children":2754},{"style":383},[2755],{"type":52,"value":2756}," my-svc",{"type":46,"tag":360,"props":2758,"children":2759},{"style":383},[2760],{"type":52,"value":1243},{"type":46,"tag":360,"props":2762,"children":2763},{"style":383},[2764],{"type":52,"value":2765}," prod\n",{"type":46,"tag":360,"props":2767,"children":2768},{"class":362,"line":490},[2769],{"type":46,"tag":360,"props":2770,"children":2772},{"emptyLinePlaceholder":2771},true,[2773],{"type":52,"value":2774},"\n",{"type":46,"tag":360,"props":2776,"children":2777},{"class":362,"line":802},[2778],{"type":46,"tag":360,"props":2779,"children":2780},{"style":367},[2781],{"type":52,"value":2782},"# Find probe-able methods in a service\n",{"type":46,"tag":360,"props":2784,"children":2785},{"class":362,"line":829},[2786,2790,2795,2799,2803,2807,2811,2816,2821],{"type":46,"tag":360,"props":2787,"children":2788},{"style":377},[2789],{"type":52,"value":430},{"type":46,"tag":360,"props":2791,"children":2792},{"style":383},[2793],{"type":52,"value":2794}," symdb",{"type":46,"tag":360,"props":2796,"children":2797},{"style":383},[2798],{"type":52,"value":781},{"type":46,"tag":360,"props":2800,"children":2801},{"style":383},[2802],{"type":52,"value":1310},{"type":46,"tag":360,"props":2804,"children":2805},{"style":383},[2806],{"type":52,"value":2756},{"type":46,"tag":360,"props":2808,"children":2809},{"style":383},[2810],{"type":52,"value":786},{"type":46,"tag":360,"props":2812,"children":2813},{"style":383},[2814],{"type":52,"value":2815}," MyController",{"type":46,"tag":360,"props":2817,"children":2818},{"style":383},[2819],{"type":52,"value":2820}," --view",{"type":46,"tag":360,"props":2822,"children":2823},{"style":383},[2824],{"type":52,"value":2825}," probe-locations\n",{"type":46,"tag":360,"props":2827,"children":2828},{"class":362,"line":859},[2829],{"type":46,"tag":360,"props":2830,"children":2831},{"emptyLinePlaceholder":2771},[2832],{"type":52,"value":2774},{"type":46,"tag":360,"props":2834,"children":2836},{"class":362,"line":2835},8,[2837],{"type":46,"tag":360,"props":2838,"children":2839},{"style":367},[2840],{"type":52,"value":2841},"# Place a log probe with capture expressions\n",{"type":46,"tag":360,"props":2843,"children":2845},{"class":362,"line":2844},9,[2846],{"type":46,"tag":360,"props":2847,"children":2848},{"style":367},[2849],{"type":52,"value":2850},"# --probe-location accepts TYPE:METHOD or TYPE:METHOD(arg1, arg2, ...) with optional signature\n",{"type":46,"tag":360,"props":2852,"children":2854},{"class":362,"line":2853},10,[2855,2859,2863,2868,2872,2876,2880,2884,2889],{"type":46,"tag":360,"props":2856,"children":2857},{"style":377},[2858],{"type":52,"value":430},{"type":46,"tag":360,"props":2860,"children":2861},{"style":383},[2862],{"type":52,"value":2726},{"type":46,"tag":360,"props":2864,"children":2865},{"style":383},[2866],{"type":52,"value":2867}," probes",{"type":46,"tag":360,"props":2869,"children":2870},{"style":383},[2871],{"type":52,"value":816},{"type":46,"tag":360,"props":2873,"children":2874},{"style":383},[2875],{"type":52,"value":1310},{"type":46,"tag":360,"props":2877,"children":2878},{"style":383},[2879],{"type":52,"value":2756},{"type":46,"tag":360,"props":2881,"children":2882},{"style":383},[2883],{"type":52,"value":1243},{"type":46,"tag":360,"props":2885,"children":2886},{"style":383},[2887],{"type":52,"value":2888}," prod",{"type":46,"tag":360,"props":2890,"children":2891},{"style":601},[2892],{"type":52,"value":2893}," \\\n",{"type":46,"tag":360,"props":2895,"children":2897},{"class":362,"line":2896},11,[2898,2903,2907,2912,2916],{"type":46,"tag":360,"props":2899,"children":2900},{"style":383},[2901],{"type":52,"value":2902},"  --probe-location",{"type":46,"tag":360,"props":2904,"children":2905},{"style":607},[2906],{"type":52,"value":734},{"type":46,"tag":360,"props":2908,"children":2909},{"style":383},[2910],{"type":52,"value":2911},"com.example.MyController:handleRequest",{"type":46,"tag":360,"props":2913,"children":2914},{"style":607},[2915],{"type":52,"value":924},{"type":46,"tag":360,"props":2917,"children":2918},{"style":601},[2919],{"type":52,"value":2893},{"type":46,"tag":360,"props":2921,"children":2923},{"class":362,"line":2922},12,[2924,2929,2933,2938,2942,2947,2951,2956,2960],{"type":46,"tag":360,"props":2925,"children":2926},{"style":383},[2927],{"type":52,"value":2928},"  --capture",{"type":46,"tag":360,"props":2930,"children":2931},{"style":607},[2932],{"type":52,"value":734},{"type":46,"tag":360,"props":2934,"children":2935},{"style":383},[2936],{"type":52,"value":2937},"request.id",{"type":46,"tag":360,"props":2939,"children":2940},{"style":607},[2941],{"type":52,"value":924},{"type":46,"tag":360,"props":2943,"children":2944},{"style":383},[2945],{"type":52,"value":2946}," --capture",{"type":46,"tag":360,"props":2948,"children":2949},{"style":607},[2950],{"type":52,"value":734},{"type":46,"tag":360,"props":2952,"children":2953},{"style":383},[2954],{"type":52,"value":2955},"request.headers",{"type":46,"tag":360,"props":2957,"children":2958},{"style":607},[2959],{"type":52,"value":924},{"type":46,"tag":360,"props":2961,"children":2962},{"style":601},[2963],{"type":52,"value":2893},{"type":46,"tag":360,"props":2965,"children":2967},{"class":362,"line":2966},13,[2968,2973],{"type":46,"tag":360,"props":2969,"children":2970},{"style":383},[2971],{"type":52,"value":2972},"  --ttl",{"type":46,"tag":360,"props":2974,"children":2975},{"style":383},[2976],{"type":52,"value":934},{"type":46,"tag":360,"props":2978,"children":2980},{"class":362,"line":2979},14,[2981],{"type":46,"tag":360,"props":2982,"children":2983},{"emptyLinePlaceholder":2771},[2984],{"type":52,"value":2774},{"type":46,"tag":360,"props":2986,"children":2988},{"class":362,"line":2987},15,[2989],{"type":46,"tag":360,"props":2990,"children":2991},{"style":367},[2992],{"type":52,"value":2993},"# With method signature (useful when the method is overloaded)\n",{"type":46,"tag":360,"props":2995,"children":2997},{"class":362,"line":2996},16,[2998,3002,3006,3010,3014,3018,3022,3026,3030],{"type":46,"tag":360,"props":2999,"children":3000},{"style":377},[3001],{"type":52,"value":430},{"type":46,"tag":360,"props":3003,"children":3004},{"style":383},[3005],{"type":52,"value":2726},{"type":46,"tag":360,"props":3007,"children":3008},{"style":383},[3009],{"type":52,"value":2867},{"type":46,"tag":360,"props":3011,"children":3012},{"style":383},[3013],{"type":52,"value":816},{"type":46,"tag":360,"props":3015,"children":3016},{"style":383},[3017],{"type":52,"value":1310},{"type":46,"tag":360,"props":3019,"children":3020},{"style":383},[3021],{"type":52,"value":2756},{"type":46,"tag":360,"props":3023,"children":3024},{"style":383},[3025],{"type":52,"value":1243},{"type":46,"tag":360,"props":3027,"children":3028},{"style":383},[3029],{"type":52,"value":2888},{"type":46,"tag":360,"props":3031,"children":3032},{"style":601},[3033],{"type":52,"value":2893},{"type":46,"tag":360,"props":3035,"children":3037},{"class":362,"line":3036},17,[3038,3042,3046,3051,3055],{"type":46,"tag":360,"props":3039,"children":3040},{"style":383},[3041],{"type":52,"value":2902},{"type":46,"tag":360,"props":3043,"children":3044},{"style":607},[3045],{"type":52,"value":734},{"type":46,"tag":360,"props":3047,"children":3048},{"style":383},[3049],{"type":52,"value":3050},"com.example.MyController:handleRequest(String, HttpHeaders)",{"type":46,"tag":360,"props":3052,"children":3053},{"style":607},[3054],{"type":52,"value":924},{"type":46,"tag":360,"props":3056,"children":3057},{"style":601},[3058],{"type":52,"value":2893},{"type":46,"tag":360,"props":3060,"children":3062},{"class":362,"line":3061},18,[3063,3067,3071,3075,3079,3084],{"type":46,"tag":360,"props":3064,"children":3065},{"style":383},[3066],{"type":52,"value":2928},{"type":46,"tag":360,"props":3068,"children":3069},{"style":607},[3070],{"type":52,"value":734},{"type":46,"tag":360,"props":3072,"children":3073},{"style":383},[3074],{"type":52,"value":2937},{"type":46,"tag":360,"props":3076,"children":3077},{"style":607},[3078],{"type":52,"value":924},{"type":46,"tag":360,"props":3080,"children":3081},{"style":383},[3082],{"type":52,"value":3083}," --ttl",{"type":46,"tag":360,"props":3085,"children":3086},{"style":383},[3087],{"type":52,"value":934},{"type":46,"tag":360,"props":3089,"children":3091},{"class":362,"line":3090},19,[3092],{"type":46,"tag":360,"props":3093,"children":3094},{"emptyLinePlaceholder":2771},[3095],{"type":52,"value":2774},{"type":46,"tag":360,"props":3097,"children":3099},{"class":362,"line":3098},20,[3100],{"type":46,"tag":360,"props":3101,"children":3102},{"style":367},[3103],{"type":52,"value":3104},"# Watch probe events — compact output\n",{"type":46,"tag":360,"props":3106,"children":3108},{"class":362,"line":3107},21,[3109,3113,3117,3121,3126,3130,3135,3140,3145,3150,3154,3159,3163,3168,3173,3177,3182,3187],{"type":46,"tag":360,"props":3110,"children":3111},{"style":377},[3112],{"type":52,"value":430},{"type":46,"tag":360,"props":3114,"children":3115},{"style":383},[3116],{"type":52,"value":2726},{"type":46,"tag":360,"props":3118,"children":3119},{"style":383},[3120],{"type":52,"value":2867},{"type":46,"tag":360,"props":3122,"children":3123},{"style":383},[3124],{"type":52,"value":3125}," watch",{"type":46,"tag":360,"props":3127,"children":3128},{"style":607},[3129],{"type":52,"value":1716},{"type":46,"tag":360,"props":3131,"children":3132},{"style":383},[3133],{"type":52,"value":3134},"PROBE_I",{"type":46,"tag":360,"props":3136,"children":3137},{"style":601},[3138],{"type":52,"value":3139},"D",{"type":46,"tag":360,"props":3141,"children":3142},{"style":607},[3143],{"type":52,"value":3144},">",{"type":46,"tag":360,"props":3146,"children":3147},{"style":383},[3148],{"type":52,"value":3149}," --fields",{"type":46,"tag":360,"props":3151,"children":3152},{"style":607},[3153],{"type":52,"value":734},{"type":46,"tag":360,"props":3155,"children":3156},{"style":383},[3157],{"type":52,"value":3158},"message,captures,timestamp",{"type":46,"tag":360,"props":3160,"children":3161},{"style":607},[3162],{"type":52,"value":924},{"type":46,"tag":360,"props":3164,"children":3165},{"style":383},[3166],{"type":52,"value":3167}," --timeout",{"type":46,"tag":360,"props":3169,"children":3170},{"style":706},[3171],{"type":52,"value":3172}," 60",{"type":46,"tag":360,"props":3174,"children":3175},{"style":383},[3176],{"type":52,"value":703},{"type":46,"tag":360,"props":3178,"children":3179},{"style":706},[3180],{"type":52,"value":3181}," 10",{"type":46,"tag":360,"props":3183,"children":3184},{"style":383},[3185],{"type":52,"value":3186}," --wait",{"type":46,"tag":360,"props":3188,"children":3189},{"style":706},[3190],{"type":52,"value":3191}," 5\n",{"type":46,"tag":360,"props":3193,"children":3195},{"class":362,"line":3194},22,[3196],{"type":46,"tag":360,"props":3197,"children":3198},{"emptyLinePlaceholder":2771},[3199],{"type":52,"value":2774},{"type":46,"tag":360,"props":3201,"children":3203},{"class":362,"line":3202},23,[3204],{"type":46,"tag":360,"props":3205,"children":3206},{"style":367},[3207],{"type":52,"value":3208},"# Watch — template message only\n",{"type":46,"tag":360,"props":3210,"children":3212},{"class":362,"line":3211},24,[3213,3217,3221,3225,3229,3233,3237,3241,3245,3249,3253,3258,3262,3266],{"type":46,"tag":360,"props":3214,"children":3215},{"style":377},[3216],{"type":52,"value":430},{"type":46,"tag":360,"props":3218,"children":3219},{"style":383},[3220],{"type":52,"value":2726},{"type":46,"tag":360,"props":3222,"children":3223},{"style":383},[3224],{"type":52,"value":2867},{"type":46,"tag":360,"props":3226,"children":3227},{"style":383},[3228],{"type":52,"value":3125},{"type":46,"tag":360,"props":3230,"children":3231},{"style":607},[3232],{"type":52,"value":1716},{"type":46,"tag":360,"props":3234,"children":3235},{"style":383},[3236],{"type":52,"value":3134},{"type":46,"tag":360,"props":3238,"children":3239},{"style":601},[3240],{"type":52,"value":3139},{"type":46,"tag":360,"props":3242,"children":3243},{"style":607},[3244],{"type":52,"value":3144},{"type":46,"tag":360,"props":3246,"children":3247},{"style":383},[3248],{"type":52,"value":3149},{"type":46,"tag":360,"props":3250,"children":3251},{"style":607},[3252],{"type":52,"value":734},{"type":46,"tag":360,"props":3254,"children":3255},{"style":383},[3256],{"type":52,"value":3257},"message",{"type":46,"tag":360,"props":3259,"children":3260},{"style":607},[3261],{"type":52,"value":924},{"type":46,"tag":360,"props":3263,"children":3264},{"style":383},[3265],{"type":52,"value":703},{"type":46,"tag":360,"props":3267,"children":3268},{"style":706},[3269],{"type":52,"value":709},{"type":46,"tag":360,"props":3271,"children":3273},{"class":362,"line":3272},25,[3274],{"type":46,"tag":360,"props":3275,"children":3276},{"emptyLinePlaceholder":2771},[3277],{"type":52,"value":2774},{"type":46,"tag":360,"props":3279,"children":3281},{"class":362,"line":3280},26,[3282],{"type":46,"tag":360,"props":3283,"children":3284},{"style":367},[3285],{"type":52,"value":3286},"# List and delete probes\n",{"type":46,"tag":360,"props":3288,"children":3290},{"class":362,"line":3289},27,[3291,3295,3299,3303,3307,3311],{"type":46,"tag":360,"props":3292,"children":3293},{"style":377},[3294],{"type":52,"value":430},{"type":46,"tag":360,"props":3296,"children":3297},{"style":383},[3298],{"type":52,"value":2726},{"type":46,"tag":360,"props":3300,"children":3301},{"style":383},[3302],{"type":52,"value":2867},{"type":46,"tag":360,"props":3304,"children":3305},{"style":383},[3306],{"type":52,"value":698},{"type":46,"tag":360,"props":3308,"children":3309},{"style":383},[3310],{"type":52,"value":1310},{"type":46,"tag":360,"props":3312,"children":3313},{"style":383},[3314],{"type":52,"value":2736},{"type":46,"tag":360,"props":3316,"children":3318},{"class":362,"line":3317},28,[3319,3323,3327,3331,3335,3339,3343,3347],{"type":46,"tag":360,"props":3320,"children":3321},{"style":377},[3322],{"type":52,"value":430},{"type":46,"tag":360,"props":3324,"children":3325},{"style":383},[3326],{"type":52,"value":2726},{"type":46,"tag":360,"props":3328,"children":3329},{"style":383},[3330],{"type":52,"value":2867},{"type":46,"tag":360,"props":3332,"children":3333},{"style":383},[3334],{"type":52,"value":873},{"type":46,"tag":360,"props":3336,"children":3337},{"style":607},[3338],{"type":52,"value":1716},{"type":46,"tag":360,"props":3340,"children":3341},{"style":383},[3342],{"type":52,"value":3134},{"type":46,"tag":360,"props":3344,"children":3345},{"style":601},[3346],{"type":52,"value":3139},{"type":46,"tag":360,"props":3348,"children":3349},{"style":607},[3350],{"type":52,"value":1731},{"type":46,"tag":569,"props":3352,"children":3354},{"id":3353},"service-catalog",[3355],{"type":52,"value":3356},"Service Catalog",{"type":46,"tag":349,"props":3358,"children":3360},{"className":351,"code":3359,"language":353,"meta":354,"style":354},"pup service-catalog list\npup service-catalog get \u003Cservice-name>\n",[3361],{"type":46,"tag":107,"props":3362,"children":3363},{"__ignoreMap":354},[3364,3380],{"type":46,"tag":360,"props":3365,"children":3366},{"class":362,"line":363},[3367,3371,3376],{"type":46,"tag":360,"props":3368,"children":3369},{"style":377},[3370],{"type":52,"value":430},{"type":46,"tag":360,"props":3372,"children":3373},{"style":383},[3374],{"type":52,"value":3375}," service-catalog",{"type":46,"tag":360,"props":3377,"children":3378},{"style":383},[3379],{"type":52,"value":1672},{"type":46,"tag":360,"props":3381,"children":3382},{"class":362,"line":373},[3383,3387,3391,3395,3399,3404,3409],{"type":46,"tag":360,"props":3384,"children":3385},{"style":377},[3386],{"type":52,"value":430},{"type":46,"tag":360,"props":3388,"children":3389},{"style":383},[3390],{"type":52,"value":3375},{"type":46,"tag":360,"props":3392,"children":3393},{"style":383},[3394],{"type":52,"value":760},{"type":46,"tag":360,"props":3396,"children":3397},{"style":607},[3398],{"type":52,"value":1716},{"type":46,"tag":360,"props":3400,"children":3401},{"style":383},[3402],{"type":52,"value":3403},"service-nam",{"type":46,"tag":360,"props":3405,"children":3406},{"style":601},[3407],{"type":52,"value":3408},"e",{"type":46,"tag":360,"props":3410,"children":3411},{"style":607},[3412],{"type":52,"value":1731},{"type":46,"tag":569,"props":3414,"children":3416},{"id":3415},"notebooks",[3417],{"type":52,"value":3418},"Notebooks",{"type":46,"tag":349,"props":3420,"children":3422},{"className":351,"code":3421,"language":353,"meta":354,"style":354},"pup notebooks list\npup notebooks get 12345\npup notebooks create --file notebook.json\n",[3423],{"type":46,"tag":107,"props":3424,"children":3425},{"__ignoreMap":354},[3426,3442,3461],{"type":46,"tag":360,"props":3427,"children":3428},{"class":362,"line":363},[3429,3433,3438],{"type":46,"tag":360,"props":3430,"children":3431},{"style":377},[3432],{"type":52,"value":430},{"type":46,"tag":360,"props":3434,"children":3435},{"style":383},[3436],{"type":52,"value":3437}," notebooks",{"type":46,"tag":360,"props":3439,"children":3440},{"style":383},[3441],{"type":52,"value":1672},{"type":46,"tag":360,"props":3443,"children":3444},{"class":362,"line":373},[3445,3449,3453,3457],{"type":46,"tag":360,"props":3446,"children":3447},{"style":377},[3448],{"type":52,"value":430},{"type":46,"tag":360,"props":3450,"children":3451},{"style":383},[3452],{"type":52,"value":3437},{"type":46,"tag":360,"props":3454,"children":3455},{"style":383},[3456],{"type":52,"value":760},{"type":46,"tag":360,"props":3458,"children":3459},{"style":706},[3460],{"type":52,"value":765},{"type":46,"tag":360,"props":3462,"children":3463},{"class":362,"line":394},[3464,3468,3472,3476,3480],{"type":46,"tag":360,"props":3465,"children":3466},{"style":377},[3467],{"type":52,"value":430},{"type":46,"tag":360,"props":3469,"children":3470},{"style":383},[3471],{"type":52,"value":3437},{"type":46,"tag":360,"props":3473,"children":3474},{"style":383},[3475],{"type":52,"value":816},{"type":46,"tag":360,"props":3477,"children":3478},{"style":383},[3479],{"type":52,"value":821},{"type":46,"tag":360,"props":3481,"children":3482},{"style":383},[3483],{"type":52,"value":3484}," notebook.json\n",{"type":46,"tag":569,"props":3486,"children":3488},{"id":3487},"observability-pipelines",[3489],{"type":52,"value":3490},"Observability Pipelines",{"type":46,"tag":349,"props":3492,"children":3494},{"className":351,"code":3493,"language":353,"meta":354,"style":354},"pup obs-pipelines list\npup obs-pipelines get \u003Cpipeline-id>\npup obs-pipelines create --file pipeline.json\npup obs-pipelines update \u003Cpipeline-id> --file pipeline.json\npup obs-pipelines delete \u003Cpipeline-id>\npup obs-pipelines validate --file pipeline.json\n",[3495],{"type":46,"tag":107,"props":3496,"children":3497},{"__ignoreMap":354},[3498,3514,3546,3570,3609,3640],{"type":46,"tag":360,"props":3499,"children":3500},{"class":362,"line":363},[3501,3505,3510],{"type":46,"tag":360,"props":3502,"children":3503},{"style":377},[3504],{"type":52,"value":430},{"type":46,"tag":360,"props":3506,"children":3507},{"style":383},[3508],{"type":52,"value":3509}," obs-pipelines",{"type":46,"tag":360,"props":3511,"children":3512},{"style":383},[3513],{"type":52,"value":1672},{"type":46,"tag":360,"props":3515,"children":3516},{"class":362,"line":373},[3517,3521,3525,3529,3533,3538,3542],{"type":46,"tag":360,"props":3518,"children":3519},{"style":377},[3520],{"type":52,"value":430},{"type":46,"tag":360,"props":3522,"children":3523},{"style":383},[3524],{"type":52,"value":3509},{"type":46,"tag":360,"props":3526,"children":3527},{"style":383},[3528],{"type":52,"value":760},{"type":46,"tag":360,"props":3530,"children":3531},{"style":607},[3532],{"type":52,"value":1716},{"type":46,"tag":360,"props":3534,"children":3535},{"style":383},[3536],{"type":52,"value":3537},"pipeline-i",{"type":46,"tag":360,"props":3539,"children":3540},{"style":601},[3541],{"type":52,"value":1726},{"type":46,"tag":360,"props":3543,"children":3544},{"style":607},[3545],{"type":52,"value":1731},{"type":46,"tag":360,"props":3547,"children":3548},{"class":362,"line":394},[3549,3553,3557,3561,3565],{"type":46,"tag":360,"props":3550,"children":3551},{"style":377},[3552],{"type":52,"value":430},{"type":46,"tag":360,"props":3554,"children":3555},{"style":383},[3556],{"type":52,"value":3509},{"type":46,"tag":360,"props":3558,"children":3559},{"style":383},[3560],{"type":52,"value":816},{"type":46,"tag":360,"props":3562,"children":3563},{"style":383},[3564],{"type":52,"value":821},{"type":46,"tag":360,"props":3566,"children":3567},{"style":383},[3568],{"type":52,"value":3569}," pipeline.json\n",{"type":46,"tag":360,"props":3571,"children":3572},{"class":362,"line":490},[3573,3577,3581,3585,3589,3593,3597,3601,3605],{"type":46,"tag":360,"props":3574,"children":3575},{"style":377},[3576],{"type":52,"value":430},{"type":46,"tag":360,"props":3578,"children":3579},{"style":383},[3580],{"type":52,"value":3509},{"type":46,"tag":360,"props":3582,"children":3583},{"style":383},[3584],{"type":52,"value":843},{"type":46,"tag":360,"props":3586,"children":3587},{"style":607},[3588],{"type":52,"value":1716},{"type":46,"tag":360,"props":3590,"children":3591},{"style":383},[3592],{"type":52,"value":3537},{"type":46,"tag":360,"props":3594,"children":3595},{"style":601},[3596],{"type":52,"value":1726},{"type":46,"tag":360,"props":3598,"children":3599},{"style":607},[3600],{"type":52,"value":3144},{"type":46,"tag":360,"props":3602,"children":3603},{"style":383},[3604],{"type":52,"value":821},{"type":46,"tag":360,"props":3606,"children":3607},{"style":383},[3608],{"type":52,"value":3569},{"type":46,"tag":360,"props":3610,"children":3611},{"class":362,"line":802},[3612,3616,3620,3624,3628,3632,3636],{"type":46,"tag":360,"props":3613,"children":3614},{"style":377},[3615],{"type":52,"value":430},{"type":46,"tag":360,"props":3617,"children":3618},{"style":383},[3619],{"type":52,"value":3509},{"type":46,"tag":360,"props":3621,"children":3622},{"style":383},[3623],{"type":52,"value":873},{"type":46,"tag":360,"props":3625,"children":3626},{"style":607},[3627],{"type":52,"value":1716},{"type":46,"tag":360,"props":3629,"children":3630},{"style":383},[3631],{"type":52,"value":3537},{"type":46,"tag":360,"props":3633,"children":3634},{"style":601},[3635],{"type":52,"value":1726},{"type":46,"tag":360,"props":3637,"children":3638},{"style":607},[3639],{"type":52,"value":1731},{"type":46,"tag":360,"props":3641,"children":3642},{"class":362,"line":829},[3643,3647,3651,3656,3660],{"type":46,"tag":360,"props":3644,"children":3645},{"style":377},[3646],{"type":52,"value":430},{"type":46,"tag":360,"props":3648,"children":3649},{"style":383},[3650],{"type":52,"value":3509},{"type":46,"tag":360,"props":3652,"children":3653},{"style":383},[3654],{"type":52,"value":3655}," validate",{"type":46,"tag":360,"props":3657,"children":3658},{"style":383},[3659],{"type":52,"value":821},{"type":46,"tag":360,"props":3661,"children":3662},{"style":383},[3663],{"type":52,"value":3569},{"type":46,"tag":569,"props":3665,"children":3667},{"id":3666},"llm-observability",[3668],{"type":52,"value":3669},"LLM Observability",{"type":46,"tag":349,"props":3671,"children":3673},{"className":351,"code":3672,"language":353,"meta":354,"style":354},"pup llm-obs projects list\npup llm-obs projects create --file project.json\npup llm-obs experiments list\npup llm-obs experiments list --filter-project-id \u003Cproject-id>\npup llm-obs experiments list --filter-dataset-id \u003Cdataset-id>\npup llm-obs experiments create --file experiment.json\npup llm-obs experiments update \u003Cexperiment-id> --file experiment.json\npup llm-obs experiments delete --file delete-request.json\npup llm-obs datasets list --project-id \u003Cproject-id>\npup llm-obs datasets create --project-id \u003Cproject-id> --file dataset.json\n",[3674],{"type":46,"tag":107,"props":3675,"children":3676},{"__ignoreMap":354},[3677,3698,3726,3746,3787,3828,3856,3900,3928,3969],{"type":46,"tag":360,"props":3678,"children":3679},{"class":362,"line":363},[3680,3684,3689,3694],{"type":46,"tag":360,"props":3681,"children":3682},{"style":377},[3683],{"type":52,"value":430},{"type":46,"tag":360,"props":3685,"children":3686},{"style":383},[3687],{"type":52,"value":3688}," llm-obs",{"type":46,"tag":360,"props":3690,"children":3691},{"style":383},[3692],{"type":52,"value":3693}," projects",{"type":46,"tag":360,"props":3695,"children":3696},{"style":383},[3697],{"type":52,"value":1672},{"type":46,"tag":360,"props":3699,"children":3700},{"class":362,"line":373},[3701,3705,3709,3713,3717,3721],{"type":46,"tag":360,"props":3702,"children":3703},{"style":377},[3704],{"type":52,"value":430},{"type":46,"tag":360,"props":3706,"children":3707},{"style":383},[3708],{"type":52,"value":3688},{"type":46,"tag":360,"props":3710,"children":3711},{"style":383},[3712],{"type":52,"value":3693},{"type":46,"tag":360,"props":3714,"children":3715},{"style":383},[3716],{"type":52,"value":816},{"type":46,"tag":360,"props":3718,"children":3719},{"style":383},[3720],{"type":52,"value":821},{"type":46,"tag":360,"props":3722,"children":3723},{"style":383},[3724],{"type":52,"value":3725}," project.json\n",{"type":46,"tag":360,"props":3727,"children":3728},{"class":362,"line":394},[3729,3733,3737,3742],{"type":46,"tag":360,"props":3730,"children":3731},{"style":377},[3732],{"type":52,"value":430},{"type":46,"tag":360,"props":3734,"children":3735},{"style":383},[3736],{"type":52,"value":3688},{"type":46,"tag":360,"props":3738,"children":3739},{"style":383},[3740],{"type":52,"value":3741}," experiments",{"type":46,"tag":360,"props":3743,"children":3744},{"style":383},[3745],{"type":52,"value":1672},{"type":46,"tag":360,"props":3747,"children":3748},{"class":362,"line":490},[3749,3753,3757,3761,3765,3770,3774,3779,3783],{"type":46,"tag":360,"props":3750,"children":3751},{"style":377},[3752],{"type":52,"value":430},{"type":46,"tag":360,"props":3754,"children":3755},{"style":383},[3756],{"type":52,"value":3688},{"type":46,"tag":360,"props":3758,"children":3759},{"style":383},[3760],{"type":52,"value":3741},{"type":46,"tag":360,"props":3762,"children":3763},{"style":383},[3764],{"type":52,"value":698},{"type":46,"tag":360,"props":3766,"children":3767},{"style":383},[3768],{"type":52,"value":3769}," --filter-project-id",{"type":46,"tag":360,"props":3771,"children":3772},{"style":607},[3773],{"type":52,"value":1716},{"type":46,"tag":360,"props":3775,"children":3776},{"style":383},[3777],{"type":52,"value":3778},"project-i",{"type":46,"tag":360,"props":3780,"children":3781},{"style":601},[3782],{"type":52,"value":1726},{"type":46,"tag":360,"props":3784,"children":3785},{"style":607},[3786],{"type":52,"value":1731},{"type":46,"tag":360,"props":3788,"children":3789},{"class":362,"line":802},[3790,3794,3798,3802,3806,3811,3815,3820,3824],{"type":46,"tag":360,"props":3791,"children":3792},{"style":377},[3793],{"type":52,"value":430},{"type":46,"tag":360,"props":3795,"children":3796},{"style":383},[3797],{"type":52,"value":3688},{"type":46,"tag":360,"props":3799,"children":3800},{"style":383},[3801],{"type":52,"value":3741},{"type":46,"tag":360,"props":3803,"children":3804},{"style":383},[3805],{"type":52,"value":698},{"type":46,"tag":360,"props":3807,"children":3808},{"style":383},[3809],{"type":52,"value":3810}," --filter-dataset-id",{"type":46,"tag":360,"props":3812,"children":3813},{"style":607},[3814],{"type":52,"value":1716},{"type":46,"tag":360,"props":3816,"children":3817},{"style":383},[3818],{"type":52,"value":3819},"dataset-i",{"type":46,"tag":360,"props":3821,"children":3822},{"style":601},[3823],{"type":52,"value":1726},{"type":46,"tag":360,"props":3825,"children":3826},{"style":607},[3827],{"type":52,"value":1731},{"type":46,"tag":360,"props":3829,"children":3830},{"class":362,"line":829},[3831,3835,3839,3843,3847,3851],{"type":46,"tag":360,"props":3832,"children":3833},{"style":377},[3834],{"type":52,"value":430},{"type":46,"tag":360,"props":3836,"children":3837},{"style":383},[3838],{"type":52,"value":3688},{"type":46,"tag":360,"props":3840,"children":3841},{"style":383},[3842],{"type":52,"value":3741},{"type":46,"tag":360,"props":3844,"children":3845},{"style":383},[3846],{"type":52,"value":816},{"type":46,"tag":360,"props":3848,"children":3849},{"style":383},[3850],{"type":52,"value":821},{"type":46,"tag":360,"props":3852,"children":3853},{"style":383},[3854],{"type":52,"value":3855}," experiment.json\n",{"type":46,"tag":360,"props":3857,"children":3858},{"class":362,"line":859},[3859,3863,3867,3871,3875,3879,3884,3888,3892,3896],{"type":46,"tag":360,"props":3860,"children":3861},{"style":377},[3862],{"type":52,"value":430},{"type":46,"tag":360,"props":3864,"children":3865},{"style":383},[3866],{"type":52,"value":3688},{"type":46,"tag":360,"props":3868,"children":3869},{"style":383},[3870],{"type":52,"value":3741},{"type":46,"tag":360,"props":3872,"children":3873},{"style":383},[3874],{"type":52,"value":843},{"type":46,"tag":360,"props":3876,"children":3877},{"style":607},[3878],{"type":52,"value":1716},{"type":46,"tag":360,"props":3880,"children":3881},{"style":383},[3882],{"type":52,"value":3883},"experiment-i",{"type":46,"tag":360,"props":3885,"children":3886},{"style":601},[3887],{"type":52,"value":1726},{"type":46,"tag":360,"props":3889,"children":3890},{"style":607},[3891],{"type":52,"value":3144},{"type":46,"tag":360,"props":3893,"children":3894},{"style":383},[3895],{"type":52,"value":821},{"type":46,"tag":360,"props":3897,"children":3898},{"style":383},[3899],{"type":52,"value":3855},{"type":46,"tag":360,"props":3901,"children":3902},{"class":362,"line":2835},[3903,3907,3911,3915,3919,3923],{"type":46,"tag":360,"props":3904,"children":3905},{"style":377},[3906],{"type":52,"value":430},{"type":46,"tag":360,"props":3908,"children":3909},{"style":383},[3910],{"type":52,"value":3688},{"type":46,"tag":360,"props":3912,"children":3913},{"style":383},[3914],{"type":52,"value":3741},{"type":46,"tag":360,"props":3916,"children":3917},{"style":383},[3918],{"type":52,"value":873},{"type":46,"tag":360,"props":3920,"children":3921},{"style":383},[3922],{"type":52,"value":821},{"type":46,"tag":360,"props":3924,"children":3925},{"style":383},[3926],{"type":52,"value":3927}," delete-request.json\n",{"type":46,"tag":360,"props":3929,"children":3930},{"class":362,"line":2844},[3931,3935,3939,3944,3948,3953,3957,3961,3965],{"type":46,"tag":360,"props":3932,"children":3933},{"style":377},[3934],{"type":52,"value":430},{"type":46,"tag":360,"props":3936,"children":3937},{"style":383},[3938],{"type":52,"value":3688},{"type":46,"tag":360,"props":3940,"children":3941},{"style":383},[3942],{"type":52,"value":3943}," datasets",{"type":46,"tag":360,"props":3945,"children":3946},{"style":383},[3947],{"type":52,"value":698},{"type":46,"tag":360,"props":3949,"children":3950},{"style":383},[3951],{"type":52,"value":3952}," --project-id",{"type":46,"tag":360,"props":3954,"children":3955},{"style":607},[3956],{"type":52,"value":1716},{"type":46,"tag":360,"props":3958,"children":3959},{"style":383},[3960],{"type":52,"value":3778},{"type":46,"tag":360,"props":3962,"children":3963},{"style":601},[3964],{"type":52,"value":1726},{"type":46,"tag":360,"props":3966,"children":3967},{"style":607},[3968],{"type":52,"value":1731},{"type":46,"tag":360,"props":3970,"children":3971},{"class":362,"line":2853},[3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012],{"type":46,"tag":360,"props":3973,"children":3974},{"style":377},[3975],{"type":52,"value":430},{"type":46,"tag":360,"props":3977,"children":3978},{"style":383},[3979],{"type":52,"value":3688},{"type":46,"tag":360,"props":3981,"children":3982},{"style":383},[3983],{"type":52,"value":3943},{"type":46,"tag":360,"props":3985,"children":3986},{"style":383},[3987],{"type":52,"value":816},{"type":46,"tag":360,"props":3989,"children":3990},{"style":383},[3991],{"type":52,"value":3952},{"type":46,"tag":360,"props":3993,"children":3994},{"style":607},[3995],{"type":52,"value":1716},{"type":46,"tag":360,"props":3997,"children":3998},{"style":383},[3999],{"type":52,"value":3778},{"type":46,"tag":360,"props":4001,"children":4002},{"style":601},[4003],{"type":52,"value":1726},{"type":46,"tag":360,"props":4005,"children":4006},{"style":607},[4007],{"type":52,"value":3144},{"type":46,"tag":360,"props":4009,"children":4010},{"style":383},[4011],{"type":52,"value":821},{"type":46,"tag":360,"props":4013,"children":4014},{"style":383},[4015],{"type":52,"value":4016}," dataset.json\n",{"type":46,"tag":569,"props":4018,"children":4020},{"id":4019},"reference-tables",[4021],{"type":52,"value":4022},"Reference Tables",{"type":46,"tag":349,"props":4024,"children":4026},{"className":351,"code":4025,"language":353,"meta":354,"style":354},"pup reference-tables list\npup reference-tables get \u003Ctable-id>\npup reference-tables create --file table.json\npup reference-tables batch-query --file query.json\n",[4027],{"type":46,"tag":107,"props":4028,"children":4029},{"__ignoreMap":354},[4030,4046,4078,4102],{"type":46,"tag":360,"props":4031,"children":4032},{"class":362,"line":363},[4033,4037,4042],{"type":46,"tag":360,"props":4034,"children":4035},{"style":377},[4036],{"type":52,"value":430},{"type":46,"tag":360,"props":4038,"children":4039},{"style":383},[4040],{"type":52,"value":4041}," reference-tables",{"type":46,"tag":360,"props":4043,"children":4044},{"style":383},[4045],{"type":52,"value":1672},{"type":46,"tag":360,"props":4047,"children":4048},{"class":362,"line":373},[4049,4053,4057,4061,4065,4070,4074],{"type":46,"tag":360,"props":4050,"children":4051},{"style":377},[4052],{"type":52,"value":430},{"type":46,"tag":360,"props":4054,"children":4055},{"style":383},[4056],{"type":52,"value":4041},{"type":46,"tag":360,"props":4058,"children":4059},{"style":383},[4060],{"type":52,"value":760},{"type":46,"tag":360,"props":4062,"children":4063},{"style":607},[4064],{"type":52,"value":1716},{"type":46,"tag":360,"props":4066,"children":4067},{"style":383},[4068],{"type":52,"value":4069},"table-i",{"type":46,"tag":360,"props":4071,"children":4072},{"style":601},[4073],{"type":52,"value":1726},{"type":46,"tag":360,"props":4075,"children":4076},{"style":607},[4077],{"type":52,"value":1731},{"type":46,"tag":360,"props":4079,"children":4080},{"class":362,"line":394},[4081,4085,4089,4093,4097],{"type":46,"tag":360,"props":4082,"children":4083},{"style":377},[4084],{"type":52,"value":430},{"type":46,"tag":360,"props":4086,"children":4087},{"style":383},[4088],{"type":52,"value":4041},{"type":46,"tag":360,"props":4090,"children":4091},{"style":383},[4092],{"type":52,"value":816},{"type":46,"tag":360,"props":4094,"children":4095},{"style":383},[4096],{"type":52,"value":821},{"type":46,"tag":360,"props":4098,"children":4099},{"style":383},[4100],{"type":52,"value":4101}," table.json\n",{"type":46,"tag":360,"props":4103,"children":4104},{"class":362,"line":490},[4105,4109,4113,4118,4122],{"type":46,"tag":360,"props":4106,"children":4107},{"style":377},[4108],{"type":52,"value":430},{"type":46,"tag":360,"props":4110,"children":4111},{"style":383},[4112],{"type":52,"value":4041},{"type":46,"tag":360,"props":4114,"children":4115},{"style":383},[4116],{"type":52,"value":4117}," batch-query",{"type":46,"tag":360,"props":4119,"children":4120},{"style":383},[4121],{"type":52,"value":821},{"type":46,"tag":360,"props":4123,"children":4124},{"style":383},[4125],{"type":52,"value":4126}," query.json\n",{"type":46,"tag":569,"props":4128,"children":4130},{"id":4129},"cost-cloud-configs",[4131],{"type":52,"value":4132},"Cost Cloud Configs",{"type":46,"tag":349,"props":4134,"children":4136},{"className":351,"code":4135,"language":353,"meta":354,"style":354},"# AWS CUR configs\npup costs datadog aws-config list\npup costs datadog aws-config get \u003Caccount-id>\npup costs datadog aws-config create --file config.json\npup costs datadog aws-config delete \u003Caccount-id>\n\n# Azure UC configs\npup costs datadog azure-config list\npup costs datadog azure-config get \u003Caccount-id>\npup costs datadog azure-config create --file config.json\npup costs datadog azure-config delete \u003Caccount-id>\n\n# GCP usage cost configs\npup costs datadog gcp-config list\npup costs datadog gcp-config get \u003Caccount-id>\npup costs datadog gcp-config create --file config.json\npup costs datadog gcp-config delete \u003Caccount-id>\n",[4137],{"type":46,"tag":107,"props":4138,"children":4139},{"__ignoreMap":354},[4140,4148,4174,4214,4246,4285,4292,4300,4324,4363,4394,4433,4440,4448,4472,4511,4542],{"type":46,"tag":360,"props":4141,"children":4142},{"class":362,"line":363},[4143],{"type":46,"tag":360,"props":4144,"children":4145},{"style":367},[4146],{"type":52,"value":4147},"# AWS CUR configs\n",{"type":46,"tag":360,"props":4149,"children":4150},{"class":362,"line":373},[4151,4155,4160,4165,4170],{"type":46,"tag":360,"props":4152,"children":4153},{"style":377},[4154],{"type":52,"value":430},{"type":46,"tag":360,"props":4156,"children":4157},{"style":383},[4158],{"type":52,"value":4159}," costs",{"type":46,"tag":360,"props":4161,"children":4162},{"style":383},[4163],{"type":52,"value":4164}," datadog",{"type":46,"tag":360,"props":4166,"children":4167},{"style":383},[4168],{"type":52,"value":4169}," aws-config",{"type":46,"tag":360,"props":4171,"children":4172},{"style":383},[4173],{"type":52,"value":1672},{"type":46,"tag":360,"props":4175,"children":4176},{"class":362,"line":394},[4177,4181,4185,4189,4193,4197,4201,4206,4210],{"type":46,"tag":360,"props":4178,"children":4179},{"style":377},[4180],{"type":52,"value":430},{"type":46,"tag":360,"props":4182,"children":4183},{"style":383},[4184],{"type":52,"value":4159},{"type":46,"tag":360,"props":4186,"children":4187},{"style":383},[4188],{"type":52,"value":4164},{"type":46,"tag":360,"props":4190,"children":4191},{"style":383},[4192],{"type":52,"value":4169},{"type":46,"tag":360,"props":4194,"children":4195},{"style":383},[4196],{"type":52,"value":760},{"type":46,"tag":360,"props":4198,"children":4199},{"style":607},[4200],{"type":52,"value":1716},{"type":46,"tag":360,"props":4202,"children":4203},{"style":383},[4204],{"type":52,"value":4205},"account-i",{"type":46,"tag":360,"props":4207,"children":4208},{"style":601},[4209],{"type":52,"value":1726},{"type":46,"tag":360,"props":4211,"children":4212},{"style":607},[4213],{"type":52,"value":1731},{"type":46,"tag":360,"props":4215,"children":4216},{"class":362,"line":490},[4217,4221,4225,4229,4233,4237,4241],{"type":46,"tag":360,"props":4218,"children":4219},{"style":377},[4220],{"type":52,"value":430},{"type":46,"tag":360,"props":4222,"children":4223},{"style":383},[4224],{"type":52,"value":4159},{"type":46,"tag":360,"props":4226,"children":4227},{"style":383},[4228],{"type":52,"value":4164},{"type":46,"tag":360,"props":4230,"children":4231},{"style":383},[4232],{"type":52,"value":4169},{"type":46,"tag":360,"props":4234,"children":4235},{"style":383},[4236],{"type":52,"value":816},{"type":46,"tag":360,"props":4238,"children":4239},{"style":383},[4240],{"type":52,"value":821},{"type":46,"tag":360,"props":4242,"children":4243},{"style":383},[4244],{"type":52,"value":4245}," config.json\n",{"type":46,"tag":360,"props":4247,"children":4248},{"class":362,"line":802},[4249,4253,4257,4261,4265,4269,4273,4277,4281],{"type":46,"tag":360,"props":4250,"children":4251},{"style":377},[4252],{"type":52,"value":430},{"type":46,"tag":360,"props":4254,"children":4255},{"style":383},[4256],{"type":52,"value":4159},{"type":46,"tag":360,"props":4258,"children":4259},{"style":383},[4260],{"type":52,"value":4164},{"type":46,"tag":360,"props":4262,"children":4263},{"style":383},[4264],{"type":52,"value":4169},{"type":46,"tag":360,"props":4266,"children":4267},{"style":383},[4268],{"type":52,"value":873},{"type":46,"tag":360,"props":4270,"children":4271},{"style":607},[4272],{"type":52,"value":1716},{"type":46,"tag":360,"props":4274,"children":4275},{"style":383},[4276],{"type":52,"value":4205},{"type":46,"tag":360,"props":4278,"children":4279},{"style":601},[4280],{"type":52,"value":1726},{"type":46,"tag":360,"props":4282,"children":4283},{"style":607},[4284],{"type":52,"value":1731},{"type":46,"tag":360,"props":4286,"children":4287},{"class":362,"line":829},[4288],{"type":46,"tag":360,"props":4289,"children":4290},{"emptyLinePlaceholder":2771},[4291],{"type":52,"value":2774},{"type":46,"tag":360,"props":4293,"children":4294},{"class":362,"line":859},[4295],{"type":46,"tag":360,"props":4296,"children":4297},{"style":367},[4298],{"type":52,"value":4299},"# Azure UC configs\n",{"type":46,"tag":360,"props":4301,"children":4302},{"class":362,"line":2835},[4303,4307,4311,4315,4320],{"type":46,"tag":360,"props":4304,"children":4305},{"style":377},[4306],{"type":52,"value":430},{"type":46,"tag":360,"props":4308,"children":4309},{"style":383},[4310],{"type":52,"value":4159},{"type":46,"tag":360,"props":4312,"children":4313},{"style":383},[4314],{"type":52,"value":4164},{"type":46,"tag":360,"props":4316,"children":4317},{"style":383},[4318],{"type":52,"value":4319}," azure-config",{"type":46,"tag":360,"props":4321,"children":4322},{"style":383},[4323],{"type":52,"value":1672},{"type":46,"tag":360,"props":4325,"children":4326},{"class":362,"line":2844},[4327,4331,4335,4339,4343,4347,4351,4355,4359],{"type":46,"tag":360,"props":4328,"children":4329},{"style":377},[4330],{"type":52,"value":430},{"type":46,"tag":360,"props":4332,"children":4333},{"style":383},[4334],{"type":52,"value":4159},{"type":46,"tag":360,"props":4336,"children":4337},{"style":383},[4338],{"type":52,"value":4164},{"type":46,"tag":360,"props":4340,"children":4341},{"style":383},[4342],{"type":52,"value":4319},{"type":46,"tag":360,"props":4344,"children":4345},{"style":383},[4346],{"type":52,"value":760},{"type":46,"tag":360,"props":4348,"children":4349},{"style":607},[4350],{"type":52,"value":1716},{"type":46,"tag":360,"props":4352,"children":4353},{"style":383},[4354],{"type":52,"value":4205},{"type":46,"tag":360,"props":4356,"children":4357},{"style":601},[4358],{"type":52,"value":1726},{"type":46,"tag":360,"props":4360,"children":4361},{"style":607},[4362],{"type":52,"value":1731},{"type":46,"tag":360,"props":4364,"children":4365},{"class":362,"line":2853},[4366,4370,4374,4378,4382,4386,4390],{"type":46,"tag":360,"props":4367,"children":4368},{"style":377},[4369],{"type":52,"value":430},{"type":46,"tag":360,"props":4371,"children":4372},{"style":383},[4373],{"type":52,"value":4159},{"type":46,"tag":360,"props":4375,"children":4376},{"style":383},[4377],{"type":52,"value":4164},{"type":46,"tag":360,"props":4379,"children":4380},{"style":383},[4381],{"type":52,"value":4319},{"type":46,"tag":360,"props":4383,"children":4384},{"style":383},[4385],{"type":52,"value":816},{"type":46,"tag":360,"props":4387,"children":4388},{"style":383},[4389],{"type":52,"value":821},{"type":46,"tag":360,"props":4391,"children":4392},{"style":383},[4393],{"type":52,"value":4245},{"type":46,"tag":360,"props":4395,"children":4396},{"class":362,"line":2896},[4397,4401,4405,4409,4413,4417,4421,4425,4429],{"type":46,"tag":360,"props":4398,"children":4399},{"style":377},[4400],{"type":52,"value":430},{"type":46,"tag":360,"props":4402,"children":4403},{"style":383},[4404],{"type":52,"value":4159},{"type":46,"tag":360,"props":4406,"children":4407},{"style":383},[4408],{"type":52,"value":4164},{"type":46,"tag":360,"props":4410,"children":4411},{"style":383},[4412],{"type":52,"value":4319},{"type":46,"tag":360,"props":4414,"children":4415},{"style":383},[4416],{"type":52,"value":873},{"type":46,"tag":360,"props":4418,"children":4419},{"style":607},[4420],{"type":52,"value":1716},{"type":46,"tag":360,"props":4422,"children":4423},{"style":383},[4424],{"type":52,"value":4205},{"type":46,"tag":360,"props":4426,"children":4427},{"style":601},[4428],{"type":52,"value":1726},{"type":46,"tag":360,"props":4430,"children":4431},{"style":607},[4432],{"type":52,"value":1731},{"type":46,"tag":360,"props":4434,"children":4435},{"class":362,"line":2922},[4436],{"type":46,"tag":360,"props":4437,"children":4438},{"emptyLinePlaceholder":2771},[4439],{"type":52,"value":2774},{"type":46,"tag":360,"props":4441,"children":4442},{"class":362,"line":2966},[4443],{"type":46,"tag":360,"props":4444,"children":4445},{"style":367},[4446],{"type":52,"value":4447},"# GCP usage cost configs\n",{"type":46,"tag":360,"props":4449,"children":4450},{"class":362,"line":2979},[4451,4455,4459,4463,4468],{"type":46,"tag":360,"props":4452,"children":4453},{"style":377},[4454],{"type":52,"value":430},{"type":46,"tag":360,"props":4456,"children":4457},{"style":383},[4458],{"type":52,"value":4159},{"type":46,"tag":360,"props":4460,"children":4461},{"style":383},[4462],{"type":52,"value":4164},{"type":46,"tag":360,"props":4464,"children":4465},{"style":383},[4466],{"type":52,"value":4467}," gcp-config",{"type":46,"tag":360,"props":4469,"children":4470},{"style":383},[4471],{"type":52,"value":1672},{"type":46,"tag":360,"props":4473,"children":4474},{"class":362,"line":2987},[4475,4479,4483,4487,4491,4495,4499,4503,4507],{"type":46,"tag":360,"props":4476,"children":4477},{"style":377},[4478],{"type":52,"value":430},{"type":46,"tag":360,"props":4480,"children":4481},{"style":383},[4482],{"type":52,"value":4159},{"type":46,"tag":360,"props":4484,"children":4485},{"style":383},[4486],{"type":52,"value":4164},{"type":46,"tag":360,"props":4488,"children":4489},{"style":383},[4490],{"type":52,"value":4467},{"type":46,"tag":360,"props":4492,"children":4493},{"style":383},[4494],{"type":52,"value":760},{"type":46,"tag":360,"props":4496,"children":4497},{"style":607},[4498],{"type":52,"value":1716},{"type":46,"tag":360,"props":4500,"children":4501},{"style":383},[4502],{"type":52,"value":4205},{"type":46,"tag":360,"props":4504,"children":4505},{"style":601},[4506],{"type":52,"value":1726},{"type":46,"tag":360,"props":4508,"children":4509},{"style":607},[4510],{"type":52,"value":1731},{"type":46,"tag":360,"props":4512,"children":4513},{"class":362,"line":2996},[4514,4518,4522,4526,4530,4534,4538],{"type":46,"tag":360,"props":4515,"children":4516},{"style":377},[4517],{"type":52,"value":430},{"type":46,"tag":360,"props":4519,"children":4520},{"style":383},[4521],{"type":52,"value":4159},{"type":46,"tag":360,"props":4523,"children":4524},{"style":383},[4525],{"type":52,"value":4164},{"type":46,"tag":360,"props":4527,"children":4528},{"style":383},[4529],{"type":52,"value":4467},{"type":46,"tag":360,"props":4531,"children":4532},{"style":383},[4533],{"type":52,"value":816},{"type":46,"tag":360,"props":4535,"children":4536},{"style":383},[4537],{"type":52,"value":821},{"type":46,"tag":360,"props":4539,"children":4540},{"style":383},[4541],{"type":52,"value":4245},{"type":46,"tag":360,"props":4543,"children":4544},{"class":362,"line":3036},[4545,4549,4553,4557,4561,4565,4569,4573,4577],{"type":46,"tag":360,"props":4546,"children":4547},{"style":377},[4548],{"type":52,"value":430},{"type":46,"tag":360,"props":4550,"children":4551},{"style":383},[4552],{"type":52,"value":4159},{"type":46,"tag":360,"props":4554,"children":4555},{"style":383},[4556],{"type":52,"value":4164},{"type":46,"tag":360,"props":4558,"children":4559},{"style":383},[4560],{"type":52,"value":4467},{"type":46,"tag":360,"props":4562,"children":4563},{"style":383},[4564],{"type":52,"value":873},{"type":46,"tag":360,"props":4566,"children":4567},{"style":607},[4568],{"type":52,"value":1716},{"type":46,"tag":360,"props":4570,"children":4571},{"style":383},[4572],{"type":52,"value":4205},{"type":46,"tag":360,"props":4574,"children":4575},{"style":601},[4576],{"type":52,"value":1726},{"type":46,"tag":360,"props":4578,"children":4579},{"style":607},[4580],{"type":52,"value":1731},{"type":46,"tag":61,"props":4582,"children":4584},{"id":4583},"subcommand-discovery",[4585],{"type":52,"value":4586},"Subcommand Discovery",{"type":46,"tag":349,"props":4588,"children":4590},{"className":351,"code":4589,"language":353,"meta":354,"style":354},"pup --help              # List all commands\npup \u003Ccommand> --help    # Command-specific help\n",[4591],{"type":46,"tag":107,"props":4592,"children":4593},{"__ignoreMap":354},[4594,4611],{"type":46,"tag":360,"props":4595,"children":4596},{"class":362,"line":363},[4597,4601,4606],{"type":46,"tag":360,"props":4598,"children":4599},{"style":377},[4600],{"type":52,"value":430},{"type":46,"tag":360,"props":4602,"children":4603},{"style":383},[4604],{"type":52,"value":4605}," --help",{"type":46,"tag":360,"props":4607,"children":4608},{"style":367},[4609],{"type":52,"value":4610},"              # List all commands\n",{"type":46,"tag":360,"props":4612,"children":4613},{"class":362,"line":373},[4614,4618,4622,4627,4631,4635,4639],{"type":46,"tag":360,"props":4615,"children":4616},{"style":377},[4617],{"type":52,"value":430},{"type":46,"tag":360,"props":4619,"children":4620},{"style":607},[4621],{"type":52,"value":1716},{"type":46,"tag":360,"props":4623,"children":4624},{"style":383},[4625],{"type":52,"value":4626},"comman",{"type":46,"tag":360,"props":4628,"children":4629},{"style":601},[4630],{"type":52,"value":1726},{"type":46,"tag":360,"props":4632,"children":4633},{"style":607},[4634],{"type":52,"value":3144},{"type":46,"tag":360,"props":4636,"children":4637},{"style":383},[4638],{"type":52,"value":4605},{"type":46,"tag":360,"props":4640,"children":4641},{"style":367},[4642],{"type":52,"value":4643},"    # Command-specific help\n",{"type":46,"tag":61,"props":4645,"children":4647},{"id":4646},"error-handling",[4648],{"type":52,"value":4649},"Error Handling",{"type":46,"tag":68,"props":4651,"children":4652},{},[4653,4674],{"type":46,"tag":72,"props":4654,"children":4655},{},[4656],{"type":46,"tag":76,"props":4657,"children":4658},{},[4659,4664,4669],{"type":46,"tag":80,"props":4660,"children":4661},{},[4662],{"type":52,"value":4663},"Error",{"type":46,"tag":80,"props":4665,"children":4666},{},[4667],{"type":52,"value":4668},"Cause",{"type":46,"tag":80,"props":4670,"children":4671},{},[4672],{"type":52,"value":4673},"Fix",{"type":46,"tag":91,"props":4675,"children":4676},{},[4677,4698,4716,4734],{"type":46,"tag":76,"props":4678,"children":4679},{},[4680,4685,4690],{"type":46,"tag":98,"props":4681,"children":4682},{},[4683],{"type":52,"value":4684},"401 Unauthorized",{"type":46,"tag":98,"props":4686,"children":4687},{},[4688],{"type":52,"value":4689},"Token expired",{"type":46,"tag":98,"props":4691,"children":4692},{},[4693],{"type":46,"tag":107,"props":4694,"children":4696},{"className":4695},[],[4697],{"type":52,"value":341},{"type":46,"tag":76,"props":4699,"children":4700},{},[4701,4706,4711],{"type":46,"tag":98,"props":4702,"children":4703},{},[4704],{"type":52,"value":4705},"403 Forbidden",{"type":46,"tag":98,"props":4707,"children":4708},{},[4709],{"type":52,"value":4710},"Missing scope",{"type":46,"tag":98,"props":4712,"children":4713},{},[4714],{"type":52,"value":4715},"Check app key permissions",{"type":46,"tag":76,"props":4717,"children":4718},{},[4719,4724,4729],{"type":46,"tag":98,"props":4720,"children":4721},{},[4722],{"type":52,"value":4723},"404 Not Found",{"type":46,"tag":98,"props":4725,"children":4726},{},[4727],{"type":52,"value":4728},"Wrong ID\u002Fresource",{"type":46,"tag":98,"props":4730,"children":4731},{},[4732],{"type":52,"value":4733},"Verify resource exists",{"type":46,"tag":76,"props":4735,"children":4736},{},[4737,4742,4747],{"type":46,"tag":98,"props":4738,"children":4739},{},[4740],{"type":52,"value":4741},"Rate limited",{"type":46,"tag":98,"props":4743,"children":4744},{},[4745],{"type":52,"value":4746},"Too many requests",{"type":46,"tag":98,"props":4748,"children":4749},{},[4750],{"type":52,"value":4751},"Add delays between calls",{"type":46,"tag":61,"props":4753,"children":4755},{"id":4754},"install",[4756],{"type":52,"value":4757},"Install",{"type":46,"tag":349,"props":4759,"children":4761},{"className":351,"code":4760,"language":353,"meta":354,"style":354},"# Homebrew (recommended)\nbrew tap datadog-labs\u002Fpack\nbrew install pup\n\n# Or build from source\ncargo install --git https:\u002F\u002Fgithub.com\u002FDataDog\u002Fpup\n",[4762],{"type":46,"tag":107,"props":4763,"children":4764},{"__ignoreMap":354},[4765,4773,4788,4803,4810,4818],{"type":46,"tag":360,"props":4766,"children":4767},{"class":362,"line":363},[4768],{"type":46,"tag":360,"props":4769,"children":4770},{"style":367},[4771],{"type":52,"value":4772},"# Homebrew (recommended)\n",{"type":46,"tag":360,"props":4774,"children":4775},{"class":362,"line":373},[4776,4780,4784],{"type":46,"tag":360,"props":4777,"children":4778},{"style":377},[4779],{"type":52,"value":380},{"type":46,"tag":360,"props":4781,"children":4782},{"style":383},[4783],{"type":52,"value":386},{"type":46,"tag":360,"props":4785,"children":4786},{"style":383},[4787],{"type":52,"value":391},{"type":46,"tag":360,"props":4789,"children":4790},{"class":362,"line":394},[4791,4795,4799],{"type":46,"tag":360,"props":4792,"children":4793},{"style":377},[4794],{"type":52,"value":380},{"type":46,"tag":360,"props":4796,"children":4797},{"style":383},[4798],{"type":52,"value":404},{"type":46,"tag":360,"props":4800,"children":4801},{"style":383},[4802],{"type":52,"value":409},{"type":46,"tag":360,"props":4804,"children":4805},{"class":362,"line":490},[4806],{"type":46,"tag":360,"props":4807,"children":4808},{"emptyLinePlaceholder":2771},[4809],{"type":52,"value":2774},{"type":46,"tag":360,"props":4811,"children":4812},{"class":362,"line":802},[4813],{"type":46,"tag":360,"props":4814,"children":4815},{"style":367},[4816],{"type":52,"value":4817},"# Or build from source\n",{"type":46,"tag":360,"props":4819,"children":4820},{"class":362,"line":829},[4821,4826,4830,4835],{"type":46,"tag":360,"props":4822,"children":4823},{"style":377},[4824],{"type":52,"value":4825},"cargo",{"type":46,"tag":360,"props":4827,"children":4828},{"style":383},[4829],{"type":52,"value":404},{"type":46,"tag":360,"props":4831,"children":4832},{"style":383},[4833],{"type":52,"value":4834}," --git",{"type":46,"tag":360,"props":4836,"children":4837},{"style":383},[4838],{"type":52,"value":4839}," https:\u002F\u002Fgithub.com\u002FDataDog\u002Fpup\n",{"type":46,"tag":569,"props":4841,"children":4843},{"id":4842},"verify-installation",[4844],{"type":52,"value":4845},"Verify Installation",{"type":46,"tag":349,"props":4847,"children":4849},{"className":351,"code":4848,"language":353,"meta":354,"style":354},"pup --version\npup auth status\n",[4850],{"type":46,"tag":107,"props":4851,"children":4852},{"__ignoreMap":354},[4853,4865],{"type":46,"tag":360,"props":4854,"children":4855},{"class":362,"line":363},[4856,4860],{"type":46,"tag":360,"props":4857,"children":4858},{"style":377},[4859],{"type":52,"value":430},{"type":46,"tag":360,"props":4861,"children":4862},{"style":383},[4863],{"type":52,"value":4864}," --version\n",{"type":46,"tag":360,"props":4866,"children":4867},{"class":362,"line":373},[4868,4872,4876],{"type":46,"tag":360,"props":4869,"children":4870},{"style":377},[4871],{"type":52,"value":430},{"type":46,"tag":360,"props":4873,"children":4874},{"style":383},[4875],{"type":52,"value":435},{"type":46,"tag":360,"props":4877,"children":4878},{"style":383},[4879],{"type":52,"value":4880}," status\n",{"type":46,"tag":61,"props":4882,"children":4884},{"id":4883},"sites",[4885],{"type":52,"value":4886},"Sites",{"type":46,"tag":68,"props":4888,"children":4889},{},[4890,4912],{"type":46,"tag":72,"props":4891,"children":4892},{},[4893],{"type":46,"tag":76,"props":4894,"children":4895},{},[4896,4901],{"type":46,"tag":80,"props":4897,"children":4898},{},[4899],{"type":52,"value":4900},"Site",{"type":46,"tag":80,"props":4902,"children":4903},{},[4904,4910],{"type":46,"tag":107,"props":4905,"children":4907},{"className":4906},[],[4908],{"type":52,"value":4909},"DD_SITE",{"type":52,"value":4911}," value",{"type":46,"tag":91,"props":4913,"children":4914},{},[4915,4932,4949,4966,4983,5000],{"type":46,"tag":76,"props":4916,"children":4917},{},[4918,4923],{"type":46,"tag":98,"props":4919,"children":4920},{},[4921],{"type":52,"value":4922},"US1 (default)",{"type":46,"tag":98,"props":4924,"children":4925},{},[4926],{"type":46,"tag":107,"props":4927,"children":4929},{"className":4928},[],[4930],{"type":52,"value":4931},"datadoghq.com",{"type":46,"tag":76,"props":4933,"children":4934},{},[4935,4940],{"type":46,"tag":98,"props":4936,"children":4937},{},[4938],{"type":52,"value":4939},"US3",{"type":46,"tag":98,"props":4941,"children":4942},{},[4943],{"type":46,"tag":107,"props":4944,"children":4946},{"className":4945},[],[4947],{"type":52,"value":4948},"us3.datadoghq.com",{"type":46,"tag":76,"props":4950,"children":4951},{},[4952,4957],{"type":46,"tag":98,"props":4953,"children":4954},{},[4955],{"type":52,"value":4956},"US5",{"type":46,"tag":98,"props":4958,"children":4959},{},[4960],{"type":46,"tag":107,"props":4961,"children":4963},{"className":4962},[],[4964],{"type":52,"value":4965},"us5.datadoghq.com",{"type":46,"tag":76,"props":4967,"children":4968},{},[4969,4974],{"type":46,"tag":98,"props":4970,"children":4971},{},[4972],{"type":52,"value":4973},"EU1",{"type":46,"tag":98,"props":4975,"children":4976},{},[4977],{"type":46,"tag":107,"props":4978,"children":4980},{"className":4979},[],[4981],{"type":52,"value":4982},"datadoghq.eu",{"type":46,"tag":76,"props":4984,"children":4985},{},[4986,4991],{"type":46,"tag":98,"props":4987,"children":4988},{},[4989],{"type":52,"value":4990},"AP1",{"type":46,"tag":98,"props":4992,"children":4993},{},[4994],{"type":46,"tag":107,"props":4995,"children":4997},{"className":4996},[],[4998],{"type":52,"value":4999},"ap1.datadoghq.com",{"type":46,"tag":76,"props":5001,"children":5002},{},[5003,5008],{"type":46,"tag":98,"props":5004,"children":5005},{},[5006],{"type":52,"value":5007},"US1-FED",{"type":46,"tag":98,"props":5009,"children":5010},{},[5011],{"type":46,"tag":107,"props":5012,"children":5014},{"className":5013},[],[5015],{"type":52,"value":5016},"ddog-gov.com",{"type":46,"tag":5018,"props":5019,"children":5020},"style",{},[5021],{"type":52,"value":5022},"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":5024,"total":2896},[5025,5041,5053,5067,5078,5088,5102],{"slug":5026,"name":5026,"fn":5027,"description":5028,"org":5029,"tags":5030,"stars":21,"repoUrl":22,"updatedAt":5040},"dd-apm","analyze Datadog APM traces and services","APM - traces, services, dependencies, performance analysis.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5031,5032,5035,5037],{"name":9,"slug":8,"type":14},{"name":5033,"slug":5034,"type":14},"Distributed Tracing","distributed-tracing",{"name":5036,"slug":28,"type":14},"Observability",{"name":5038,"slug":5039,"type":14},"Performance","performance","2026-07-15T05:38:04.953706",{"slug":5042,"name":5042,"fn":5043,"description":5044,"org":5045,"tags":5046,"stars":21,"repoUrl":22,"updatedAt":5052},"dd-debugger","debug production code with Datadog","Live Debugger - inspect runtime argument\u002Fvariable values in production by placing log probes on methods. Use when asked what values a function receives, what parameters look like at runtime, or to capture live data from running services without redeploying.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5047,5048,5051],{"name":9,"slug":8,"type":14},{"name":5049,"slug":5050,"type":14},"Debugging","debugging",{"name":5036,"slug":28,"type":14},"2026-07-15T05:38:09.905216",{"slug":5054,"name":5054,"fn":5055,"description":5056,"org":5057,"tags":5058,"stars":21,"repoUrl":22,"updatedAt":5066},"dd-docs","search Datadog documentation","Datadog docs lookup using docs.datadoghq.com\u002Fllms.txt and linked Markdown pages.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5059,5060,5063],{"name":9,"slug":8,"type":14},{"name":5061,"slug":5062,"type":14},"Documentation","documentation",{"name":5064,"slug":5065,"type":14},"Reference","reference","2026-07-15T05:38:06.203917",{"slug":5068,"name":5068,"fn":5069,"description":5070,"org":5071,"tags":5072,"stars":21,"repoUrl":22,"updatedAt":5077},"dd-file-issue","file GitHub issues for Datadog","File GitHub issues to the right repository (pup CLI or plugin)",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5073,5074],{"name":9,"slug":8,"type":14},{"name":5075,"slug":5076,"type":14},"GitHub","github","2026-07-15T05:38:11.122217",{"slug":5079,"name":5079,"fn":5080,"description":5081,"org":5082,"tags":5083,"stars":21,"repoUrl":22,"updatedAt":5087},"dd-logs","manage Datadog logs and pipelines","Log management - search, pipelines, archives, and cost control.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5084,5085,5086],{"name":9,"slug":8,"type":14},{"name":883,"slug":880,"type":14},{"name":5036,"slug":28,"type":14},"2026-07-15T05:38:07.426277",{"slug":5089,"name":5089,"fn":5090,"description":5091,"org":5092,"tags":5093,"stars":21,"repoUrl":22,"updatedAt":5101},"dd-monitors","manage Datadog monitors and alerts","Monitor management - create, update, mute, and alerting best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5094,5097,5098],{"name":5095,"slug":5096,"type":14},"Alerting","alerting",{"name":9,"slug":8,"type":14},{"name":5099,"slug":5100,"type":14},"Monitoring","monitoring","2026-07-12T07:55:05.804251",{"slug":4,"name":4,"fn":5,"description":6,"org":5103,"tags":5104,"stars":21,"repoUrl":22,"updatedAt":23},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5105,5106,5107],{"name":19,"slug":20,"type":14},{"name":16,"slug":17,"type":14},{"name":9,"slug":8,"type":14},{"items":5109,"total":2896},[5110,5117,5123,5129,5134,5140,5146,5152,5164,5179,5192],{"slug":5026,"name":5026,"fn":5027,"description":5028,"org":5111,"tags":5112,"stars":21,"repoUrl":22,"updatedAt":5040},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5113,5114,5115,5116],{"name":9,"slug":8,"type":14},{"name":5033,"slug":5034,"type":14},{"name":5036,"slug":28,"type":14},{"name":5038,"slug":5039,"type":14},{"slug":5042,"name":5042,"fn":5043,"description":5044,"org":5118,"tags":5119,"stars":21,"repoUrl":22,"updatedAt":5052},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5120,5121,5122],{"name":9,"slug":8,"type":14},{"name":5049,"slug":5050,"type":14},{"name":5036,"slug":28,"type":14},{"slug":5054,"name":5054,"fn":5055,"description":5056,"org":5124,"tags":5125,"stars":21,"repoUrl":22,"updatedAt":5066},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5126,5127,5128],{"name":9,"slug":8,"type":14},{"name":5061,"slug":5062,"type":14},{"name":5064,"slug":5065,"type":14},{"slug":5068,"name":5068,"fn":5069,"description":5070,"org":5130,"tags":5131,"stars":21,"repoUrl":22,"updatedAt":5077},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5132,5133],{"name":9,"slug":8,"type":14},{"name":5075,"slug":5076,"type":14},{"slug":5079,"name":5079,"fn":5080,"description":5081,"org":5135,"tags":5136,"stars":21,"repoUrl":22,"updatedAt":5087},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5137,5138,5139],{"name":9,"slug":8,"type":14},{"name":883,"slug":880,"type":14},{"name":5036,"slug":28,"type":14},{"slug":5089,"name":5089,"fn":5090,"description":5091,"org":5141,"tags":5142,"stars":21,"repoUrl":22,"updatedAt":5101},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5143,5144,5145],{"name":5095,"slug":5096,"type":14},{"name":9,"slug":8,"type":14},{"name":5099,"slug":5100,"type":14},{"slug":4,"name":4,"fn":5,"description":6,"org":5147,"tags":5148,"stars":21,"repoUrl":22,"updatedAt":23},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5149,5150,5151],{"name":19,"slug":20,"type":14},{"name":16,"slug":17,"type":14},{"name":9,"slug":8,"type":14},{"slug":5153,"name":5153,"fn":5154,"description":5155,"org":5156,"tags":5157,"stars":21,"repoUrl":22,"updatedAt":5163},"dd-symdb","search Datadog service symbols","Symbol Database - search service symbols, find probe-able methods.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5158,5161,5162],{"name":5159,"slug":5160,"type":14},"Code Analysis","code-analysis",{"name":9,"slug":8,"type":14},{"name":5049,"slug":5050,"type":14},"2026-07-15T05:38:08.664632",{"slug":5165,"name":5165,"fn":5166,"description":5167,"org":5168,"tags":5169,"stars":21,"repoUrl":22,"updatedAt":5178},"dd-triage-flaky-test","triage and resolve flaky tests","Load when investigating a specific flaky test. Gets history, failure pattern, and category, then recommends fix, quarantine, or escalate.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5170,5171,5172,5175],{"name":9,"slug":8,"type":14},{"name":5049,"slug":5050,"type":14},{"name":5173,"slug":5174,"type":14},"QA","qa",{"name":5176,"slug":5177,"type":14},"Testing","testing","2026-07-12T07:55:10.506266",{"slug":5180,"name":5180,"fn":5181,"description":5182,"org":5183,"tags":5184,"stars":21,"repoUrl":22,"updatedAt":5191},"dd-unblock-pr","diagnose and unblock CI pipelines","Load when investigating a failing PR CI pipeline or checking PR health. Attributes each CI failure as flaky, infra, or regression, proposes a targeted action, and reports code coverage.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5185,5188,5189,5190],{"name":5186,"slug":5187,"type":14},"CI\u002FCD","ci-cd",{"name":9,"slug":8,"type":14},{"name":5049,"slug":5050,"type":14},{"name":5075,"slug":5076,"type":14},"2026-07-15T05:38:12.359316",{"slug":430,"name":430,"fn":5193,"description":5194,"org":5195,"tags":5196,"stars":21,"repoUrl":22,"updatedAt":5203},"manage Datadog infrastructure via CLI","Datadog API CLI with 49 command groups, 300+ subcommands. Skills and domain agents for monitoring, logs, APM, security, and infrastructure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5197,5198,5199,5202],{"name":16,"slug":17,"type":14},{"name":9,"slug":8,"type":14},{"name":5200,"slug":5201,"type":14},"Infrastructure","infrastructure",{"name":5099,"slug":5100,"type":14},"2026-07-15T05:38:13.593372"]