[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-grafana-generate-resource-stubs":3,"mdc--b9tz3q-key":34,"related-repo-grafana-generate-resource-stubs":993,"related-org-grafana-generate-resource-stubs":1100},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"generate-resource-stubs","generate Go resource stubs","Generates typed Go stub files and grafana-foundation-sdk builder boilerplate for dashboards and alert rules. Use only when the user explicitly asks for stubs, generated resource skeletons, or builder boilerplate. This is scaffolding only; for designing or creating a usable dashboard with datasource discovery and snapshot iteration, use the create-dashboard skill instead. Triggers on \"generate stub\", \"dashboard stub\", \"create alert rule stub\", \"foundation-sdk builder\", or \"builder boilerplate\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"grafana","Grafana","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fgrafana.jpg",[12,14,17,20],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Engineering","engineering",{"name":18,"slug":19,"type":13},"SDK","sdk",{"name":21,"slug":22,"type":13},"Go","go",430,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fgcx","2026-07-15T05:34:16.92703",null,29,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"A CLI for managing Grafana Cloud resources. Optimized for agentic usage.","https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fgcx\u002Ftree\u002FHEAD\u002Fclaude-plugin\u002Fskills\u002Fgenerate-resource-stubs","---\nname: generate-resource-stubs\ndescription: >\n  Generates typed Go stub files and grafana-foundation-sdk builder\n  boilerplate for dashboards and alert rules. Use only when the user\n  explicitly asks for stubs, generated resource skeletons, or builder\n  boilerplate. This is scaffolding only; for designing or creating a usable\n  dashboard with datasource discovery and snapshot iteration, use the\n  create-dashboard skill instead. Triggers on \"generate stub\", \"dashboard\n  stub\", \"create alert rule stub\", \"foundation-sdk builder\", or \"builder\n  boilerplate\".\n---\n\n# Generate Typed Resource Stubs\n\nGenerate ready-to-edit Go files for dashboards and alert rules using\n`gcx dev generate`. The generated code uses the grafana-foundation-sdk\nbuilder pattern and compiles without modification.\n\nThis skill stops at scaffolding. If the task is to decide which dashboard\npanels, variables, queries, and layout should exist, use `create-dashboard`\nafter generating the stub.\n\n## Quick Start\n\n```bash\n# Dashboard stub\ngcx dev generate dashboards\u002Fmy-service-overview.go\n\n# Alert rule stub\ngcx dev generate alerts\u002Fhigh-cpu-usage.go\n\n# Batch generation\ngcx dev generate dashboards\u002Fa.go dashboards\u002Fb.go alerts\u002Fc.go\n```\n\n## How Type Inference Works\n\nThe resource type is inferred from the **immediate parent directory**:\n\n| Directory | Type |\n|-----------|------|\n| `dashboards\u002F` or `dashboard\u002F` | dashboard |\n| `alerts\u002F`, `alertrules\u002F`, or `alertrule\u002F` | alertrule |\n\nOverride with `--type` when the directory doesn't match:\n\n```bash\ngcx dev generate internal\u002Fmonitoring\u002Fcpu-alert.go --type alertrule\n```\n\n## Output\n\n- Filename is normalized to snake_case: `my-dashboard.go` → `my_dashboard.go`\n- Function name is CamelCase: `my-dashboard` → `MyDashboard()`\n- Package name is derived from the parent directory\n\n## After Generation: Building Real Dashboards\n\nThe generated stub is a starting point. See `references\u002Ffoundation-sdk-guide.md`\nfor the full builder API reference to customize your dashboards and alerts.\n\n### Dashboard Customization Cheat Sheet\n\n```go\nimport (\n    dashboard \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fdashboardv2beta1\"\n    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fprometheus\"\n    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Ftimeseries\"\n)\n\nbuilder := dashboard.NewDashboardBuilder(\"My Dashboard\").\n    Tags([]string{\"team:platform\", \"env:production\"}).\n    Editable(true).\n    \u002F\u002F Add a panel\n    Panel(\"requests-panel\",\n        dashboard.NewPanelBuilder().\n            Title(\"Request Rate\").\n            Visualization(timeseries.NewVisualizationBuilder()).\n            Data(\n                dashboard.NewQueryGroupBuilder().\n                    Target(\n                        dashboard.NewTargetBuilder().Query(\n                            prometheus.NewDataqueryBuilder().\n                                Expr(`rate(http_requests_total[$__rate_interval])`).\n                                LegendFormat(\"{{method}} {{status}}\"),\n                        ),\n                    ),\n            ),\n    ).\n    \u002F\u002F Layout\n    AutoGridLayout(\n        dashboard.AutoGrid().\n            WithItem(\"requests-panel\"),\n    )\n\nreturn dashboard.Manifest(\"my-dashboard\", builder)\n```\n\n### Alert Rule Customization Cheat Sheet\n\n```go\nimport (\n    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Falerting\"\n    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fresource\"\n)\n\nrule := alerting.NewRuleBuilder(\"High CPU Usage\").\n    Condition(\"A\").\n    For(\"5m\").\n    FolderUID(\"my-folder\").\n    RuleGroup(\"cpu-alerts\").\n    Labels(map[string]string{\n        \"severity\": \"critical\",\n        \"team\":     \"platform\",\n    }).\n    Annotations(map[string]string{\n        \"summary\":     \"CPU usage above 90% for 5 minutes\",\n        \"description\": \"Instance {{ $labels.instance }} has high CPU usage.\",\n    })\n```\n\n## Common Issues\n\n| Issue | Fix |\n|-------|-----|\n| \"cannot infer resource type\" | Directory name doesn't match known types; use `--type dashboard` or `--type alertrule` |\n| \"file already exists\" | Delete the existing file first or use a different name |\n| Need to add to registry | Manually add the function call to your `All()` function in `all.go` |\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,48,63,76,83,220,226,239,325,338,375,381,428,434,447,454,739,745,893,899,987],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"generate-typed-resource-stubs",[45],{"type":46,"value":47},"text","Generate Typed Resource Stubs",{"type":40,"tag":49,"props":50,"children":51},"p",{},[52,54,61],{"type":46,"value":53},"Generate ready-to-edit Go files for dashboards and alert rules using\n",{"type":40,"tag":55,"props":56,"children":58},"code",{"className":57},[],[59],{"type":46,"value":60},"gcx dev generate",{"type":46,"value":62},". The generated code uses the grafana-foundation-sdk\nbuilder pattern and compiles without modification.",{"type":40,"tag":49,"props":64,"children":65},{},[66,68,74],{"type":46,"value":67},"This skill stops at scaffolding. If the task is to decide which dashboard\npanels, variables, queries, and layout should exist, use ",{"type":40,"tag":55,"props":69,"children":71},{"className":70},[],[72],{"type":46,"value":73},"create-dashboard",{"type":46,"value":75},"\nafter generating the stub.",{"type":40,"tag":77,"props":78,"children":80},"h2",{"id":79},"quick-start",[81],{"type":46,"value":82},"Quick Start",{"type":40,"tag":84,"props":85,"children":90},"pre",{"className":86,"code":87,"language":88,"meta":89,"style":89},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Dashboard stub\ngcx dev generate dashboards\u002Fmy-service-overview.go\n\n# Alert rule stub\ngcx dev generate alerts\u002Fhigh-cpu-usage.go\n\n# Batch generation\ngcx dev generate dashboards\u002Fa.go dashboards\u002Fb.go alerts\u002Fc.go\n","bash","",[91],{"type":40,"tag":55,"props":92,"children":93},{"__ignoreMap":89},[94,106,132,142,151,172,180,189],{"type":40,"tag":95,"props":96,"children":99},"span",{"class":97,"line":98},"line",1,[100],{"type":40,"tag":95,"props":101,"children":103},{"style":102},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[104],{"type":46,"value":105},"# Dashboard stub\n",{"type":40,"tag":95,"props":107,"children":109},{"class":97,"line":108},2,[110,116,122,127],{"type":40,"tag":95,"props":111,"children":113},{"style":112},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[114],{"type":46,"value":115},"gcx",{"type":40,"tag":95,"props":117,"children":119},{"style":118},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[120],{"type":46,"value":121}," dev",{"type":40,"tag":95,"props":123,"children":124},{"style":118},[125],{"type":46,"value":126}," generate",{"type":40,"tag":95,"props":128,"children":129},{"style":118},[130],{"type":46,"value":131}," dashboards\u002Fmy-service-overview.go\n",{"type":40,"tag":95,"props":133,"children":135},{"class":97,"line":134},3,[136],{"type":40,"tag":95,"props":137,"children":139},{"emptyLinePlaceholder":138},true,[140],{"type":46,"value":141},"\n",{"type":40,"tag":95,"props":143,"children":145},{"class":97,"line":144},4,[146],{"type":40,"tag":95,"props":147,"children":148},{"style":102},[149],{"type":46,"value":150},"# Alert rule stub\n",{"type":40,"tag":95,"props":152,"children":154},{"class":97,"line":153},5,[155,159,163,167],{"type":40,"tag":95,"props":156,"children":157},{"style":112},[158],{"type":46,"value":115},{"type":40,"tag":95,"props":160,"children":161},{"style":118},[162],{"type":46,"value":121},{"type":40,"tag":95,"props":164,"children":165},{"style":118},[166],{"type":46,"value":126},{"type":40,"tag":95,"props":168,"children":169},{"style":118},[170],{"type":46,"value":171}," alerts\u002Fhigh-cpu-usage.go\n",{"type":40,"tag":95,"props":173,"children":175},{"class":97,"line":174},6,[176],{"type":40,"tag":95,"props":177,"children":178},{"emptyLinePlaceholder":138},[179],{"type":46,"value":141},{"type":40,"tag":95,"props":181,"children":183},{"class":97,"line":182},7,[184],{"type":40,"tag":95,"props":185,"children":186},{"style":102},[187],{"type":46,"value":188},"# Batch generation\n",{"type":40,"tag":95,"props":190,"children":192},{"class":97,"line":191},8,[193,197,201,205,210,215],{"type":40,"tag":95,"props":194,"children":195},{"style":112},[196],{"type":46,"value":115},{"type":40,"tag":95,"props":198,"children":199},{"style":118},[200],{"type":46,"value":121},{"type":40,"tag":95,"props":202,"children":203},{"style":118},[204],{"type":46,"value":126},{"type":40,"tag":95,"props":206,"children":207},{"style":118},[208],{"type":46,"value":209}," dashboards\u002Fa.go",{"type":40,"tag":95,"props":211,"children":212},{"style":118},[213],{"type":46,"value":214}," dashboards\u002Fb.go",{"type":40,"tag":95,"props":216,"children":217},{"style":118},[218],{"type":46,"value":219}," alerts\u002Fc.go\n",{"type":40,"tag":77,"props":221,"children":223},{"id":222},"how-type-inference-works",[224],{"type":46,"value":225},"How Type Inference Works",{"type":40,"tag":49,"props":227,"children":228},{},[229,231,237],{"type":46,"value":230},"The resource type is inferred from the ",{"type":40,"tag":232,"props":233,"children":234},"strong",{},[235],{"type":46,"value":236},"immediate parent directory",{"type":46,"value":238},":",{"type":40,"tag":240,"props":241,"children":242},"table",{},[243,262],{"type":40,"tag":244,"props":245,"children":246},"thead",{},[247],{"type":40,"tag":248,"props":249,"children":250},"tr",{},[251,257],{"type":40,"tag":252,"props":253,"children":254},"th",{},[255],{"type":46,"value":256},"Directory",{"type":40,"tag":252,"props":258,"children":259},{},[260],{"type":46,"value":261},"Type",{"type":40,"tag":263,"props":264,"children":265},"tbody",{},[266,292],{"type":40,"tag":248,"props":267,"children":268},{},[269,287],{"type":40,"tag":270,"props":271,"children":272},"td",{},[273,279,281],{"type":40,"tag":55,"props":274,"children":276},{"className":275},[],[277],{"type":46,"value":278},"dashboards\u002F",{"type":46,"value":280}," or ",{"type":40,"tag":55,"props":282,"children":284},{"className":283},[],[285],{"type":46,"value":286},"dashboard\u002F",{"type":40,"tag":270,"props":288,"children":289},{},[290],{"type":46,"value":291},"dashboard",{"type":40,"tag":248,"props":293,"children":294},{},[295,320],{"type":40,"tag":270,"props":296,"children":297},{},[298,304,306,312,314],{"type":40,"tag":55,"props":299,"children":301},{"className":300},[],[302],{"type":46,"value":303},"alerts\u002F",{"type":46,"value":305},", ",{"type":40,"tag":55,"props":307,"children":309},{"className":308},[],[310],{"type":46,"value":311},"alertrules\u002F",{"type":46,"value":313},", or ",{"type":40,"tag":55,"props":315,"children":317},{"className":316},[],[318],{"type":46,"value":319},"alertrule\u002F",{"type":40,"tag":270,"props":321,"children":322},{},[323],{"type":46,"value":324},"alertrule",{"type":40,"tag":49,"props":326,"children":327},{},[328,330,336],{"type":46,"value":329},"Override with ",{"type":40,"tag":55,"props":331,"children":333},{"className":332},[],[334],{"type":46,"value":335},"--type",{"type":46,"value":337}," when the directory doesn't match:",{"type":40,"tag":84,"props":339,"children":341},{"className":86,"code":340,"language":88,"meta":89,"style":89},"gcx dev generate internal\u002Fmonitoring\u002Fcpu-alert.go --type alertrule\n",[342],{"type":40,"tag":55,"props":343,"children":344},{"__ignoreMap":89},[345],{"type":40,"tag":95,"props":346,"children":347},{"class":97,"line":98},[348,352,356,360,365,370],{"type":40,"tag":95,"props":349,"children":350},{"style":112},[351],{"type":46,"value":115},{"type":40,"tag":95,"props":353,"children":354},{"style":118},[355],{"type":46,"value":121},{"type":40,"tag":95,"props":357,"children":358},{"style":118},[359],{"type":46,"value":126},{"type":40,"tag":95,"props":361,"children":362},{"style":118},[363],{"type":46,"value":364}," internal\u002Fmonitoring\u002Fcpu-alert.go",{"type":40,"tag":95,"props":366,"children":367},{"style":118},[368],{"type":46,"value":369}," --type",{"type":40,"tag":95,"props":371,"children":372},{"style":118},[373],{"type":46,"value":374}," alertrule\n",{"type":40,"tag":77,"props":376,"children":378},{"id":377},"output",[379],{"type":46,"value":380},"Output",{"type":40,"tag":382,"props":383,"children":384},"ul",{},[385,405,423],{"type":40,"tag":386,"props":387,"children":388},"li",{},[389,391,397,399],{"type":46,"value":390},"Filename is normalized to snake_case: ",{"type":40,"tag":55,"props":392,"children":394},{"className":393},[],[395],{"type":46,"value":396},"my-dashboard.go",{"type":46,"value":398}," → ",{"type":40,"tag":55,"props":400,"children":402},{"className":401},[],[403],{"type":46,"value":404},"my_dashboard.go",{"type":40,"tag":386,"props":406,"children":407},{},[408,410,416,417],{"type":46,"value":409},"Function name is CamelCase: ",{"type":40,"tag":55,"props":411,"children":413},{"className":412},[],[414],{"type":46,"value":415},"my-dashboard",{"type":46,"value":398},{"type":40,"tag":55,"props":418,"children":420},{"className":419},[],[421],{"type":46,"value":422},"MyDashboard()",{"type":40,"tag":386,"props":424,"children":425},{},[426],{"type":46,"value":427},"Package name is derived from the parent directory",{"type":40,"tag":77,"props":429,"children":431},{"id":430},"after-generation-building-real-dashboards",[432],{"type":46,"value":433},"After Generation: Building Real Dashboards",{"type":40,"tag":49,"props":435,"children":436},{},[437,439,445],{"type":46,"value":438},"The generated stub is a starting point. See ",{"type":40,"tag":55,"props":440,"children":442},{"className":441},[],[443],{"type":46,"value":444},"references\u002Ffoundation-sdk-guide.md",{"type":46,"value":446},"\nfor the full builder API reference to customize your dashboards and alerts.",{"type":40,"tag":448,"props":449,"children":451},"h3",{"id":450},"dashboard-customization-cheat-sheet",[452],{"type":46,"value":453},"Dashboard Customization Cheat Sheet",{"type":40,"tag":84,"props":455,"children":458},{"className":456,"code":457,"language":22,"meta":89,"style":89},"language-go shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import (\n    dashboard \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fdashboardv2beta1\"\n    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fprometheus\"\n    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Ftimeseries\"\n)\n\nbuilder := dashboard.NewDashboardBuilder(\"My Dashboard\").\n    Tags([]string{\"team:platform\", \"env:production\"}).\n    Editable(true).\n    \u002F\u002F Add a panel\n    Panel(\"requests-panel\",\n        dashboard.NewPanelBuilder().\n            Title(\"Request Rate\").\n            Visualization(timeseries.NewVisualizationBuilder()).\n            Data(\n                dashboard.NewQueryGroupBuilder().\n                    Target(\n                        dashboard.NewTargetBuilder().Query(\n                            prometheus.NewDataqueryBuilder().\n                                Expr(`rate(http_requests_total[$__rate_interval])`).\n                                LegendFormat(\"{{method}} {{status}}\"),\n                        ),\n                    ),\n            ),\n    ).\n    \u002F\u002F Layout\n    AutoGridLayout(\n        dashboard.AutoGrid().\n            WithItem(\"requests-panel\"),\n    )\n\nreturn dashboard.Manifest(\"my-dashboard\", builder)\n",[459],{"type":40,"tag":55,"props":460,"children":461},{"__ignoreMap":89},[462,470,478,486,494,502,509,517,525,534,543,552,561,570,579,588,597,606,615,624,633,642,651,660,669,678,687,696,705,713,722,730],{"type":40,"tag":95,"props":463,"children":464},{"class":97,"line":98},[465],{"type":40,"tag":95,"props":466,"children":467},{},[468],{"type":46,"value":469},"import (\n",{"type":40,"tag":95,"props":471,"children":472},{"class":97,"line":108},[473],{"type":40,"tag":95,"props":474,"children":475},{},[476],{"type":46,"value":477},"    dashboard \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fdashboardv2beta1\"\n",{"type":40,"tag":95,"props":479,"children":480},{"class":97,"line":134},[481],{"type":40,"tag":95,"props":482,"children":483},{},[484],{"type":46,"value":485},"    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fprometheus\"\n",{"type":40,"tag":95,"props":487,"children":488},{"class":97,"line":144},[489],{"type":40,"tag":95,"props":490,"children":491},{},[492],{"type":46,"value":493},"    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Ftimeseries\"\n",{"type":40,"tag":95,"props":495,"children":496},{"class":97,"line":153},[497],{"type":40,"tag":95,"props":498,"children":499},{},[500],{"type":46,"value":501},")\n",{"type":40,"tag":95,"props":503,"children":504},{"class":97,"line":174},[505],{"type":40,"tag":95,"props":506,"children":507},{"emptyLinePlaceholder":138},[508],{"type":46,"value":141},{"type":40,"tag":95,"props":510,"children":511},{"class":97,"line":182},[512],{"type":40,"tag":95,"props":513,"children":514},{},[515],{"type":46,"value":516},"builder := dashboard.NewDashboardBuilder(\"My Dashboard\").\n",{"type":40,"tag":95,"props":518,"children":519},{"class":97,"line":191},[520],{"type":40,"tag":95,"props":521,"children":522},{},[523],{"type":46,"value":524},"    Tags([]string{\"team:platform\", \"env:production\"}).\n",{"type":40,"tag":95,"props":526,"children":528},{"class":97,"line":527},9,[529],{"type":40,"tag":95,"props":530,"children":531},{},[532],{"type":46,"value":533},"    Editable(true).\n",{"type":40,"tag":95,"props":535,"children":537},{"class":97,"line":536},10,[538],{"type":40,"tag":95,"props":539,"children":540},{},[541],{"type":46,"value":542},"    \u002F\u002F Add a panel\n",{"type":40,"tag":95,"props":544,"children":546},{"class":97,"line":545},11,[547],{"type":40,"tag":95,"props":548,"children":549},{},[550],{"type":46,"value":551},"    Panel(\"requests-panel\",\n",{"type":40,"tag":95,"props":553,"children":555},{"class":97,"line":554},12,[556],{"type":40,"tag":95,"props":557,"children":558},{},[559],{"type":46,"value":560},"        dashboard.NewPanelBuilder().\n",{"type":40,"tag":95,"props":562,"children":564},{"class":97,"line":563},13,[565],{"type":40,"tag":95,"props":566,"children":567},{},[568],{"type":46,"value":569},"            Title(\"Request Rate\").\n",{"type":40,"tag":95,"props":571,"children":573},{"class":97,"line":572},14,[574],{"type":40,"tag":95,"props":575,"children":576},{},[577],{"type":46,"value":578},"            Visualization(timeseries.NewVisualizationBuilder()).\n",{"type":40,"tag":95,"props":580,"children":582},{"class":97,"line":581},15,[583],{"type":40,"tag":95,"props":584,"children":585},{},[586],{"type":46,"value":587},"            Data(\n",{"type":40,"tag":95,"props":589,"children":591},{"class":97,"line":590},16,[592],{"type":40,"tag":95,"props":593,"children":594},{},[595],{"type":46,"value":596},"                dashboard.NewQueryGroupBuilder().\n",{"type":40,"tag":95,"props":598,"children":600},{"class":97,"line":599},17,[601],{"type":40,"tag":95,"props":602,"children":603},{},[604],{"type":46,"value":605},"                    Target(\n",{"type":40,"tag":95,"props":607,"children":609},{"class":97,"line":608},18,[610],{"type":40,"tag":95,"props":611,"children":612},{},[613],{"type":46,"value":614},"                        dashboard.NewTargetBuilder().Query(\n",{"type":40,"tag":95,"props":616,"children":618},{"class":97,"line":617},19,[619],{"type":40,"tag":95,"props":620,"children":621},{},[622],{"type":46,"value":623},"                            prometheus.NewDataqueryBuilder().\n",{"type":40,"tag":95,"props":625,"children":627},{"class":97,"line":626},20,[628],{"type":40,"tag":95,"props":629,"children":630},{},[631],{"type":46,"value":632},"                                Expr(`rate(http_requests_total[$__rate_interval])`).\n",{"type":40,"tag":95,"props":634,"children":636},{"class":97,"line":635},21,[637],{"type":40,"tag":95,"props":638,"children":639},{},[640],{"type":46,"value":641},"                                LegendFormat(\"{{method}} {{status}}\"),\n",{"type":40,"tag":95,"props":643,"children":645},{"class":97,"line":644},22,[646],{"type":40,"tag":95,"props":647,"children":648},{},[649],{"type":46,"value":650},"                        ),\n",{"type":40,"tag":95,"props":652,"children":654},{"class":97,"line":653},23,[655],{"type":40,"tag":95,"props":656,"children":657},{},[658],{"type":46,"value":659},"                    ),\n",{"type":40,"tag":95,"props":661,"children":663},{"class":97,"line":662},24,[664],{"type":40,"tag":95,"props":665,"children":666},{},[667],{"type":46,"value":668},"            ),\n",{"type":40,"tag":95,"props":670,"children":672},{"class":97,"line":671},25,[673],{"type":40,"tag":95,"props":674,"children":675},{},[676],{"type":46,"value":677},"    ).\n",{"type":40,"tag":95,"props":679,"children":681},{"class":97,"line":680},26,[682],{"type":40,"tag":95,"props":683,"children":684},{},[685],{"type":46,"value":686},"    \u002F\u002F Layout\n",{"type":40,"tag":95,"props":688,"children":690},{"class":97,"line":689},27,[691],{"type":40,"tag":95,"props":692,"children":693},{},[694],{"type":46,"value":695},"    AutoGridLayout(\n",{"type":40,"tag":95,"props":697,"children":699},{"class":97,"line":698},28,[700],{"type":40,"tag":95,"props":701,"children":702},{},[703],{"type":46,"value":704},"        dashboard.AutoGrid().\n",{"type":40,"tag":95,"props":706,"children":707},{"class":97,"line":27},[708],{"type":40,"tag":95,"props":709,"children":710},{},[711],{"type":46,"value":712},"            WithItem(\"requests-panel\"),\n",{"type":40,"tag":95,"props":714,"children":716},{"class":97,"line":715},30,[717],{"type":40,"tag":95,"props":718,"children":719},{},[720],{"type":46,"value":721},"    )\n",{"type":40,"tag":95,"props":723,"children":725},{"class":97,"line":724},31,[726],{"type":40,"tag":95,"props":727,"children":728},{"emptyLinePlaceholder":138},[729],{"type":46,"value":141},{"type":40,"tag":95,"props":731,"children":733},{"class":97,"line":732},32,[734],{"type":40,"tag":95,"props":735,"children":736},{},[737],{"type":46,"value":738},"return dashboard.Manifest(\"my-dashboard\", builder)\n",{"type":40,"tag":448,"props":740,"children":742},{"id":741},"alert-rule-customization-cheat-sheet",[743],{"type":46,"value":744},"Alert Rule Customization Cheat Sheet",{"type":40,"tag":84,"props":746,"children":748},{"className":456,"code":747,"language":22,"meta":89,"style":89},"import (\n    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Falerting\"\n    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fresource\"\n)\n\nrule := alerting.NewRuleBuilder(\"High CPU Usage\").\n    Condition(\"A\").\n    For(\"5m\").\n    FolderUID(\"my-folder\").\n    RuleGroup(\"cpu-alerts\").\n    Labels(map[string]string{\n        \"severity\": \"critical\",\n        \"team\":     \"platform\",\n    }).\n    Annotations(map[string]string{\n        \"summary\":     \"CPU usage above 90% for 5 minutes\",\n        \"description\": \"Instance {{ $labels.instance }} has high CPU usage.\",\n    })\n",[749],{"type":40,"tag":55,"props":750,"children":751},{"__ignoreMap":89},[752,759,767,775,782,789,797,805,813,821,829,837,845,853,861,869,877,885],{"type":40,"tag":95,"props":753,"children":754},{"class":97,"line":98},[755],{"type":40,"tag":95,"props":756,"children":757},{},[758],{"type":46,"value":469},{"type":40,"tag":95,"props":760,"children":761},{"class":97,"line":108},[762],{"type":40,"tag":95,"props":763,"children":764},{},[765],{"type":46,"value":766},"    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Falerting\"\n",{"type":40,"tag":95,"props":768,"children":769},{"class":97,"line":134},[770],{"type":40,"tag":95,"props":771,"children":772},{},[773],{"type":46,"value":774},"    \"github.com\u002Fgrafana\u002Fgrafana-foundation-sdk\u002Fgo\u002Fresource\"\n",{"type":40,"tag":95,"props":776,"children":777},{"class":97,"line":144},[778],{"type":40,"tag":95,"props":779,"children":780},{},[781],{"type":46,"value":501},{"type":40,"tag":95,"props":783,"children":784},{"class":97,"line":153},[785],{"type":40,"tag":95,"props":786,"children":787},{"emptyLinePlaceholder":138},[788],{"type":46,"value":141},{"type":40,"tag":95,"props":790,"children":791},{"class":97,"line":174},[792],{"type":40,"tag":95,"props":793,"children":794},{},[795],{"type":46,"value":796},"rule := alerting.NewRuleBuilder(\"High CPU Usage\").\n",{"type":40,"tag":95,"props":798,"children":799},{"class":97,"line":182},[800],{"type":40,"tag":95,"props":801,"children":802},{},[803],{"type":46,"value":804},"    Condition(\"A\").\n",{"type":40,"tag":95,"props":806,"children":807},{"class":97,"line":191},[808],{"type":40,"tag":95,"props":809,"children":810},{},[811],{"type":46,"value":812},"    For(\"5m\").\n",{"type":40,"tag":95,"props":814,"children":815},{"class":97,"line":527},[816],{"type":40,"tag":95,"props":817,"children":818},{},[819],{"type":46,"value":820},"    FolderUID(\"my-folder\").\n",{"type":40,"tag":95,"props":822,"children":823},{"class":97,"line":536},[824],{"type":40,"tag":95,"props":825,"children":826},{},[827],{"type":46,"value":828},"    RuleGroup(\"cpu-alerts\").\n",{"type":40,"tag":95,"props":830,"children":831},{"class":97,"line":545},[832],{"type":40,"tag":95,"props":833,"children":834},{},[835],{"type":46,"value":836},"    Labels(map[string]string{\n",{"type":40,"tag":95,"props":838,"children":839},{"class":97,"line":554},[840],{"type":40,"tag":95,"props":841,"children":842},{},[843],{"type":46,"value":844},"        \"severity\": \"critical\",\n",{"type":40,"tag":95,"props":846,"children":847},{"class":97,"line":563},[848],{"type":40,"tag":95,"props":849,"children":850},{},[851],{"type":46,"value":852},"        \"team\":     \"platform\",\n",{"type":40,"tag":95,"props":854,"children":855},{"class":97,"line":572},[856],{"type":40,"tag":95,"props":857,"children":858},{},[859],{"type":46,"value":860},"    }).\n",{"type":40,"tag":95,"props":862,"children":863},{"class":97,"line":581},[864],{"type":40,"tag":95,"props":865,"children":866},{},[867],{"type":46,"value":868},"    Annotations(map[string]string{\n",{"type":40,"tag":95,"props":870,"children":871},{"class":97,"line":590},[872],{"type":40,"tag":95,"props":873,"children":874},{},[875],{"type":46,"value":876},"        \"summary\":     \"CPU usage above 90% for 5 minutes\",\n",{"type":40,"tag":95,"props":878,"children":879},{"class":97,"line":599},[880],{"type":40,"tag":95,"props":881,"children":882},{},[883],{"type":46,"value":884},"        \"description\": \"Instance {{ $labels.instance }} has high CPU usage.\",\n",{"type":40,"tag":95,"props":886,"children":887},{"class":97,"line":608},[888],{"type":40,"tag":95,"props":889,"children":890},{},[891],{"type":46,"value":892},"    })\n",{"type":40,"tag":77,"props":894,"children":896},{"id":895},"common-issues",[897],{"type":46,"value":898},"Common Issues",{"type":40,"tag":240,"props":900,"children":901},{},[902,918],{"type":40,"tag":244,"props":903,"children":904},{},[905],{"type":40,"tag":248,"props":906,"children":907},{},[908,913],{"type":40,"tag":252,"props":909,"children":910},{},[911],{"type":46,"value":912},"Issue",{"type":40,"tag":252,"props":914,"children":915},{},[916],{"type":46,"value":917},"Fix",{"type":40,"tag":263,"props":919,"children":920},{},[921,947,960],{"type":40,"tag":248,"props":922,"children":923},{},[924,929],{"type":40,"tag":270,"props":925,"children":926},{},[927],{"type":46,"value":928},"\"cannot infer resource type\"",{"type":40,"tag":270,"props":930,"children":931},{},[932,934,940,941],{"type":46,"value":933},"Directory name doesn't match known types; use ",{"type":40,"tag":55,"props":935,"children":937},{"className":936},[],[938],{"type":46,"value":939},"--type dashboard",{"type":46,"value":280},{"type":40,"tag":55,"props":942,"children":944},{"className":943},[],[945],{"type":46,"value":946},"--type alertrule",{"type":40,"tag":248,"props":948,"children":949},{},[950,955],{"type":40,"tag":270,"props":951,"children":952},{},[953],{"type":46,"value":954},"\"file already exists\"",{"type":40,"tag":270,"props":956,"children":957},{},[958],{"type":46,"value":959},"Delete the existing file first or use a different name",{"type":40,"tag":248,"props":961,"children":962},{},[963,968],{"type":40,"tag":270,"props":964,"children":965},{},[966],{"type":46,"value":967},"Need to add to registry",{"type":40,"tag":270,"props":969,"children":970},{},[971,973,979,981],{"type":46,"value":972},"Manually add the function call to your ",{"type":40,"tag":55,"props":974,"children":976},{"className":975},[],[977],{"type":46,"value":978},"All()",{"type":46,"value":980}," function in ",{"type":40,"tag":55,"props":982,"children":984},{"className":983},[],[985],{"type":46,"value":986},"all.go",{"type":40,"tag":988,"props":989,"children":990},"style",{},[991],{"type":46,"value":992},"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":994,"total":662},[995,1012,1028,1041,1056,1072,1087],{"slug":996,"name":996,"fn":997,"description":998,"org":999,"tags":1000,"stars":23,"repoUrl":24,"updatedAt":1011},"agento11y","manage Grafana Agent Observability resources","Inspects and manages Grafana Agent Observability resources via gcx: conversations, generations, evaluators, rules, scores, and templates. Use when the user wants to list or search conversations, inspect generations, manage evaluators (upsert, test, delete), set up evaluation rules, check scores, or browse evaluator templates. Trigger on phrases like \"list conversations\", \"search generations\", \"what did the agent do\", \"debug LLM conversation\", \"create evaluator\", \"set up evaluation rule\", \"test evaluator\", \"check scores\", \"evaluate generation quality\", or \"set up online evaluation\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1001,1004,1005,1008],{"name":1002,"slug":1003,"type":13},"Agents","agents",{"name":9,"slug":8,"type":13},{"name":1006,"slug":1007,"type":13},"Monitoring","monitoring",{"name":1009,"slug":1010,"type":13},"Observability","observability","2026-07-25T05:30:40.29622",{"slug":1013,"name":1013,"fn":1014,"description":1015,"org":1016,"tags":1017,"stars":23,"repoUrl":24,"updatedAt":1027},"agento11y-instrument","instrument LLM apps for agent observability","Sets up and instruments a developer's own LLM app or agent to send generations and agentic workflow to Grafana Agent Observability (the Agent Observability SDKs) — greenfield setup, fixing broken instrumentation, or filling gaps in existing instrumentation. Uses gcx for the parts a static prompt can't do: `gcx login` \u002F `gcx cloud stacks` to find the stack, and `gcx agento11y agents|conversations|generations` to VERIFY that data actually lands — so it iterates (instrument → run → verify → fix) until generations arrive, not blindly. Reads the app's code, detects language\u002Fframework, classifies instrumentation state (none \u002F partial \u002F broken), then runs a fixed gap checklist whose #1 item is the silent failure no other prompt catches: the SDK emits OTel spans\u002Fmetrics but never creates a TracerProvider\u002FMeterProvider, so without them all metrics go to a no-op and are lost. Also checks agent_version (required for per-version Performance charts), set_result completeness, SYNC vs STREAM, parent_generation_ids DAG links, and workflow-step coverage. Recommends changes citing file:line and, only with explicit confirmation, applies minimal diffs that don't change app behavior. Pulls SDK reference from agento11y's llms.txt rather than restating it, and hands off to `agento11y-test-starter` once data flows. It does NOT write test suites or set up tenant evaluations, rules, or guards — offline test suites are `agento11y-test-starter`, tenant eval rules + guards are `agento11y-prod-setup`; does NOT install coding-agent telemetry plugins (that is llms.txt \"Path A\"); does NOT mint or store credentials or invent endpoints. Trigger on phrases like \"instrument my app\", \"send my agent's traces to Grafana\", \"set up AI observability for my app\", \"my generations aren't showing up\", \"why is Performance empty\", \"add Agent Observability to my code\", \"fix my instrumentation\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1018,1019,1020,1023,1026],{"name":1002,"slug":1003,"type":13},{"name":9,"slug":8,"type":13},{"name":1021,"slug":1022,"type":13},"Instrumentation","instrumentation",{"name":1024,"slug":1025,"type":13},"LLM","llm",{"name":1009,"slug":1010,"type":13},"2026-07-31T05:53:52.580237",{"slug":1029,"name":1029,"fn":1030,"description":1031,"org":1032,"tags":1033,"stars":23,"repoUrl":24,"updatedAt":1040},"agento11y-prod-setup","setup production evaluation for AI agents","Sets up production evaluation and guardrails for a DEPLOYED AI agent in Grafana Agent Observability, grounded in the agent's own code and its real ingested traffic. The judgment layer on top of the `agento11y` skill: it reads the agent's source (system prompt, tools, entrypoint) AND samples its live traffic via gcx, checks what evaluators\u002Frules\u002Fguards already exist, then recommends only what's missing — online eval rules (score live conversations for regressions) and guards (warn-first request-path policies that redact \u002F tool-filter and may later be promoted to deny). It drafts reviewable YAML and, only with explicit confirmation, applies via `gcx agento11y`. New guards are drafted in warn mode (safe on live traffic — warn records but never blocks). It DOES create stack-level objects — that is the point — but every write is confirmed. It never rewrites or redeploys the agent. Trigger on phrases like \"set up production evaluation\", \"my agent is in prod what should I evaluate\", \"catch quality regressions\", \"add guardrails to my agent\", \"redact PII from my agent\", \"block dangerous tools\", \"set up online evals and guards\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1034,1035,1038,1039],{"name":1002,"slug":1003,"type":13},{"name":1036,"slug":1037,"type":13},"Evals","evals",{"name":9,"slug":8,"type":13},{"name":1009,"slug":1010,"type":13},"2026-07-31T05:53:53.576347",{"slug":1042,"name":1042,"fn":1043,"description":1044,"org":1045,"tags":1046,"stars":23,"repoUrl":24,"updatedAt":1055},"agento11y-test-starter","build and run agent test suites","Use early in an AI-agent project — before ship, before real traffic — to build a starter test suite for the agent and run it offline. Reads the agent's own code (system prompt, tools, task), writes a labeled draft suite of test cases (happy\u002Fedge\u002Fadversarial) grounded in real lines, and recommends how to score each case (the evaluators\u002Fjudges the offline runner uses). Assesses how runnable the agent is: for an easily-invoked agent it generates a runner stub (run_experiment.py) with two holes to fill and can optionally run it (only with permission, only against the endpoint the developer configured); for agents needing a harness or full runtime it points to the existing eval infra. It runs OFFLINE and never creates tenant-level evaluators, rules, or guards — that is `agento11y-prod-setup`, for a deployed agent with real traffic. Trigger on phrases like \"how do I test my agent before shipping\", \"write test cases for my agent\", \"set up tests for my agent\", \"check my agent before prod\", \"I have no traffic yet, how do I evaluate it\", \"test my agent offline\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1047,1048,1049,1052],{"name":1002,"slug":1003,"type":13},{"name":9,"slug":8,"type":13},{"name":1050,"slug":1051,"type":13},"QA","qa",{"name":1053,"slug":1054,"type":13},"Testing","testing","2026-07-31T05:53:51.62785",{"slug":73,"name":73,"fn":1057,"description":1058,"org":1059,"tags":1060,"stars":23,"repoUrl":24,"updatedAt":1071},"create Grafana dashboards with gcx","Designs and creates Grafana dashboards with gcx, using `gcx dashboards snapshot` as a visual feedback loop. Use when the user wants to create a new Grafana dashboard, add panels, variables, or annotations to an existing dashboard, design dashboard panels, variables, queries, or layout, or make a material visual redesign. Triggers on \"create dashboard\", \"new dashboard\", \"build dashboard\", \"dashboard for \u003Cservice>\", \"add panels\", \"add variable\", \"add annotation\", \"improve this dashboard\", or \"iterate on a dashboard\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1061,1064,1067,1070],{"name":1062,"slug":1063,"type":13},"Dashboards","dashboards",{"name":1065,"slug":1066,"type":13},"Data Visualization","data-visualization",{"name":1068,"slug":1069,"type":13},"Design","design",{"name":9,"slug":8,"type":13},"2026-07-25T05:30:46.289717",{"slug":1073,"name":1073,"fn":1074,"description":1075,"org":1076,"tags":1077,"stars":23,"repoUrl":24,"updatedAt":1086},"debug-with-grafana","investigate application issues with Grafana","Structured workflow for investigating application problems with Grafana observability data (metrics, logs, traces) via gcx. Covers live firefighting AND retrospective incident analysis: incident triage, root-cause analysis, blast-radius checks (did an incident spill into other services), verifying whether a deployment or rollout triggered an incident, finding which service, endpoint, or path owns the most errors or slow requests, checking whether retries or queue backlogs piled up, and quantifying error or latency shares over a time window. Trigger on: \"my API is returning 500 errors\", \"latency is spiking\", \"investigate why requests are failing\", \"triage the incident\", \"blast radius\", \"root cause\", \"did the rollout cause it\", \"which endpoint owns the most 5xx\", \"did retries pile up\", or any request to analyse an earlier incident window using telemetry. For authoring dashboards use create-dashboard; for dashboard inventory use manage-dashboards.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1078,1081,1082,1085],{"name":1079,"slug":1080,"type":13},"Debugging","debugging",{"name":9,"slug":8,"type":13},{"name":1083,"slug":1084,"type":13},"Incident Response","incident-response",{"name":1009,"slug":1010,"type":13},"2026-07-18T05:11:10.445428",{"slug":1088,"name":1088,"fn":1089,"description":1090,"org":1091,"tags":1092,"stars":23,"repoUrl":24,"updatedAt":1099},"diagnose-entity-graph","diagnose Grafana Entity Graph issues","Diagnose Entity Graph problems: missing entities, missing edges, disconnected clusters, or filtering issues. Use when the user reports that Entity Graph doesn't look right, services are missing, edges aren't appearing, or environments can't be filtered. Triggers for: \"entity graph is empty\", \"services missing from entity graph\", \"no edges in entity graph\", \"disconnected services\", \"can't filter entity graph\", \"entity graph not working\", \"diagnose entity graph\", \"debug knowledge graph\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1093,1094,1095,1098],{"name":1079,"slug":1080,"type":13},{"name":9,"slug":8,"type":13},{"name":1096,"slug":1097,"type":13},"Graph Analysis","graph-analysis",{"name":1009,"slug":1010,"type":13},"2026-07-25T05:30:39.380934",{"items":1101,"total":1234},[1102,1119,1138,1158,1165,1173,1180,1187,1194,1201,1208,1222],{"slug":1103,"name":1103,"fn":1104,"description":1105,"org":1106,"tags":1107,"stars":1116,"repoUrl":1117,"updatedAt":1118},"faro-setup-web","instrument web apps with Grafana Faro","Instruments a web app with Grafana Faro Web SDK for frontend observability. Use when setting up error tracking, Web Vitals, session monitoring, or distributed tracing in a browser app.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1108,1111,1114,1115],{"name":1109,"slug":1110,"type":13},"Distributed Tracing","distributed-tracing",{"name":1112,"slug":1113,"type":13},"Frontend","frontend",{"name":1006,"slug":1007,"type":13},{"name":1009,"slug":1010,"type":13},1103,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Ffaro-web-sdk","2026-07-12T07:43:24.63314",{"slug":1120,"name":1120,"fn":1121,"description":1122,"org":1123,"tags":1124,"stars":1135,"repoUrl":1136,"updatedAt":1137},"configuring-yesoreyeram-infinity-datasource","configure Grafana Infinity data source","Configure the Infinity data source — base URL and allowed hosts, the authentication methods (basic, bearer token, API key, digest, OAuth passthrough, OAuth 2.0 client credentials\u002FJWT, Azure, Azure Blob, AWS), TLS, custom HTTP headers, network and security settings, the custom health check, and provisioning with a config file. Use when a user asks how to set up, configure, or change settings for the Infinity data source; how to authenticate to an API; how to allow hosts; how to provision it as YAML; or how to troubleshoot connection, authentication, or health-check issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1125,1128,1131,1134],{"name":1126,"slug":1127,"type":13},"API Development","api-development",{"name":1129,"slug":1130,"type":13},"Authentication","authentication",{"name":1132,"slug":1133,"type":13},"Configuration","configuration",{"name":9,"slug":8,"type":13},1056,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fgrafana-infinity-datasource","2026-07-12T07:43:25.939136",{"slug":1139,"name":1139,"fn":1140,"description":1141,"org":1142,"tags":1143,"stars":1135,"repoUrl":1136,"updatedAt":1157},"querying-yesoreyeram-infinity-datasource","query data with Infinity datasource","Build queries with the Infinity data source — the query types (JSON, CSV, TSV, XML, GraphQL, HTML, UQL, GROQ, Google Sheets, Series, Transformations), the parsers (Frontend\u002Fsimple, Backend JSONata, JQ, UQL, GROQ) and which support alerting, the sources (URL, Inline, Reference, Azure Blob, Random walk), output formats (table, timeseries, logs, trace, node graph, dataframe), root selector and columns, computed columns\u002Ffilters\u002Fsummarize, pagination, and template variables. Use when a user asks how to query Infinity; how to fetch JSON\u002FCSV\u002FXML\u002FGraphQL\u002FHTML from a URL or inline; how to select rows and columns; how to transform data with UQL\u002FGROQ\u002FJSONata\u002FJQ; how to make a query work with alerting; how to paginate; or how to use variables in a query.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1144,1147,1150,1151,1154],{"name":1145,"slug":1146,"type":13},"CSV","csv",{"name":1148,"slug":1149,"type":13},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":13},{"name":1152,"slug":1153,"type":13},"GraphQL","graphql",{"name":1155,"slug":1156,"type":13},"JSON","json","2026-07-15T05:34:05.773947",{"slug":996,"name":996,"fn":997,"description":998,"org":1159,"tags":1160,"stars":23,"repoUrl":24,"updatedAt":1011},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1161,1162,1163,1164],{"name":1002,"slug":1003,"type":13},{"name":9,"slug":8,"type":13},{"name":1006,"slug":1007,"type":13},{"name":1009,"slug":1010,"type":13},{"slug":1013,"name":1013,"fn":1014,"description":1015,"org":1166,"tags":1167,"stars":23,"repoUrl":24,"updatedAt":1027},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1168,1169,1170,1171,1172],{"name":1002,"slug":1003,"type":13},{"name":9,"slug":8,"type":13},{"name":1021,"slug":1022,"type":13},{"name":1024,"slug":1025,"type":13},{"name":1009,"slug":1010,"type":13},{"slug":1029,"name":1029,"fn":1030,"description":1031,"org":1174,"tags":1175,"stars":23,"repoUrl":24,"updatedAt":1040},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1176,1177,1178,1179],{"name":1002,"slug":1003,"type":13},{"name":1036,"slug":1037,"type":13},{"name":9,"slug":8,"type":13},{"name":1009,"slug":1010,"type":13},{"slug":1042,"name":1042,"fn":1043,"description":1044,"org":1181,"tags":1182,"stars":23,"repoUrl":24,"updatedAt":1055},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1183,1184,1185,1186],{"name":1002,"slug":1003,"type":13},{"name":9,"slug":8,"type":13},{"name":1050,"slug":1051,"type":13},{"name":1053,"slug":1054,"type":13},{"slug":73,"name":73,"fn":1057,"description":1058,"org":1188,"tags":1189,"stars":23,"repoUrl":24,"updatedAt":1071},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1190,1191,1192,1193],{"name":1062,"slug":1063,"type":13},{"name":1065,"slug":1066,"type":13},{"name":1068,"slug":1069,"type":13},{"name":9,"slug":8,"type":13},{"slug":1073,"name":1073,"fn":1074,"description":1075,"org":1195,"tags":1196,"stars":23,"repoUrl":24,"updatedAt":1086},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1197,1198,1199,1200],{"name":1079,"slug":1080,"type":13},{"name":9,"slug":8,"type":13},{"name":1083,"slug":1084,"type":13},{"name":1009,"slug":1010,"type":13},{"slug":1088,"name":1088,"fn":1089,"description":1090,"org":1202,"tags":1203,"stars":23,"repoUrl":24,"updatedAt":1099},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1204,1205,1206,1207],{"name":1079,"slug":1080,"type":13},{"name":9,"slug":8,"type":13},{"name":1096,"slug":1097,"type":13},{"name":1009,"slug":1010,"type":13},{"slug":115,"name":115,"fn":1209,"description":1210,"org":1211,"tags":1212,"stars":23,"repoUrl":24,"updatedAt":1221},"manage Grafana Cloud resources via gcx","Manages Grafana Cloud resources via the gcx CLI. Trigger when the user wants to inspect, create, update, delete, query, or automate any Grafana resource - dashboards, datasources, alerts, SLOs, synthetic checks, oncall, incidents, fleet, k6, knowledge graph, or adaptive telemetry.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1213,1216,1217,1218],{"name":1214,"slug":1215,"type":13},"CLI","cli",{"name":9,"slug":8,"type":13},{"name":1006,"slug":1007,"type":13},{"name":1219,"slug":1220,"type":13},"Operations","operations","2026-07-31T05:53:50.587304",{"slug":1223,"name":1223,"fn":1224,"description":1225,"org":1226,"tags":1227,"stars":23,"repoUrl":24,"updatedAt":1233},"gcx-demo","present gcx demo tours","Run a narrated, read-only demo tour of gcx for customer or colleague presentations. Showcases the breadth of gcx across every Grafana Cloud product area — resources, datasources, metrics, logs, traces, SLOs, alerts, synthetic monitoring, IRM, k6, fleet, and more. All commands are strictly read-only. Trigger when the user says \"demo gcx\", \"show off gcx\", \"customer demo\", \"gcx tour\", or \"\u002Fgcx-demo\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1228,1229,1230],{"name":1214,"slug":1215,"type":13},{"name":9,"slug":8,"type":13},{"name":1231,"slug":1232,"type":13},"Presentations","presentations","2026-07-25T05:30:45.282458",80]