[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-grafana-datasources-provisioning":3,"mdc-xatjme-key":37,"related-repo-grafana-datasources-provisioning":2943,"related-org-grafana-datasources-provisioning":3060},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"datasources-provisioning","provision Grafana data sources","Generate a copy-paste Grafana data source provisioning file (YAML or Terraform) for any plugin from its standardized settings schema on the plugins CDN. Use when the user wants to provision or configure a data source as code — e.g. \"provision infinity\", \"datasource yaml for clickhouse\", \"terraform for the github datasource\" — even when they only name the plugin and not the word \"provisioning\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"grafana","Grafana","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fgrafana.jpg",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Configuration","configuration","tag",{"name":17,"slug":18,"type":15},"YAML","yaml",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Terraform","terraform",{"name":9,"slug":8,"type":15},189,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fskills","2026-07-12T07:45:03.633244","Apache-2.0",16,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],null,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fgrafana-datasources\u002Fdatasources-provisioning","---\nname: datasources-provisioning\nlicense: Apache-2.0\ndescription: Generate a copy-paste Grafana data source provisioning file (YAML or Terraform) for any plugin from its standardized settings schema on the plugins CDN. Use when the user wants to provision or configure a data source as code — e.g. \"provision infinity\", \"datasource yaml for clickhouse\", \"terraform for the github datasource\" — even when they only name the plugin and not the word \"provisioning\".\n---\n\n## Workflow\n\n### 1. Ask the starting point: from scratch, or from an existing data source?\n\n**Ask this before anything else** (skip only if the user already made it clear):\n\n- **From scratch** — the user names a plugin type to provision → continue with step 2.\n- **From an existing data source** in a running instance → jump to [Convert an existing data source](#convert-an-existing-data-source), then return to step 6.\n\n### 2. Resolve the full plugin id\n\nProvisioning needs the canonical plugin id (`\u003Corg>-\u003Cname>-datasource`), not the short name a user might say.\n\n- Already canonical (contains `-datasource` or `-app`)? Use as-is: `yesoreyeram-infinity-datasource`.\n- Short name only (e.g. `infinity`, `clickhouse`)? Search the catalog API with `filter=\u003Ckeyword>`:\n  ```bash\n  curl -s \"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins?filter=infinity\" \\\n    | jq -r '.items[] | \"\\(.slug)\\t\\(.name)\"'\n  # → yesoreyeram-infinity-datasource    Infinity\n  ```\n  Multiple matches → show the candidates and ask which one.\n\nThe snippets below use Infinity (`yesoreyeram-infinity-datasource`) as the worked example — substitute the id resolved here (and the version from step 3) in every command and output.\n\n### 3. Resolve the latest version\n\n```bash\ncurl -s \"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins\u002Fyesoreyeram-infinity-datasource\" | jq -r '.version'\n```\n\nNever hardcode a version — the CDN path is version-pinned and a stale version 404s.\n\n### 4. Fetch the settings schema (primary structured source)\n\n```\nhttps:\u002F\u002Fplugins-cdn.grafana.net\u002F\u003CPLUGIN_ID>\u002F\u003CVERSION>\u002Fpublic\u002Fplugins\u002F\u003CPLUGIN_ID>\u002Fschema\u002Fdsconfig.json\n```\n\n```bash\nID=yesoreyeram-infinity-datasource\nVER=$(curl -s \"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins\u002F$ID\" | jq -r '.version')\ncurl -sf \"https:\u002F\u002Fplugins-cdn.grafana.net\u002F$ID\u002F$VER\u002Fpublic\u002Fplugins\u002F$ID\u002Fschema\u002Fdsconfig.json\"\n```\n\nThis file conforms to the **dsconfig** schema spec — the source of truth for how to interpret it. Don't re-derive field semantics from memory (`valueType` alone spans `string`, `number`, `boolean`, `array`, `object`, `map`, `any`); consult the spec when a field isn't a plain scalar:\n\n- Prose spec: https:\u002F\u002Fraw.githubusercontent.com\u002Fgrafana\u002Fdsconfig\u002Frefs\u002Fheads\u002Fmain\u002Fdsconfig\u002Fschema.md\n- Meta-schema (defines the format of every `dsconfig.json`): https:\u002F\u002Fraw.githubusercontent.com\u002Fgrafana\u002Fdsconfig\u002Frefs\u002Fheads\u002Fmain\u002Fdsconfig\u002Fschema.json\n\nWhat you need from each field to provision: `key` (the provisioning key), `valueType`, `target` (`root` | `jsonData` | `secureJsonData`), and `validations` (honor `allowedValues` for selectors like `auth_method`). Orientation example (`schemaVersion: \"v1\"`):\n\n```json\n{\n  \"pluginType\": \"yesoreyeram-infinity-datasource\",\n  \"fields\": [\n    {\n      \"key\": \"auth_method\",\n      \"valueType\": \"string\",\n      \"target\": \"jsonData\",\n      \"validations\": [\n        {\n          \"type\": \"allowedValues\",\n          \"values\": [\n            \"none\",\n            \"basicAuth\",\n            \"apiKey\",\n            \"bearerToken\",\n            \"oauth2\",\n            \"aws\",\n            \"azureBlob\"\n          ]\n        }\n      ]\n    }\n  ]\n}\n```\n\nSelect only the fields relevant to what the user asked for (chosen auth method + connection), not all of them. Each field's `description` tells you which auth method it belongs to.\n\nFor ready-made example configs, fetch `v0alpha1.json`:\n\n```\nhttps:\u002F\u002Fplugins-cdn.grafana.net\u002F\u003CPLUGIN_ID>\u002F\u003CVERSION>\u002Fpublic\u002Fplugins\u002F\u003CPLUGIN_ID>\u002Fschema\u002Fv0alpha1.json\n```\n\n```bash\nID=yesoreyeram-infinity-datasource\nVER=$(curl -s \"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins\u002F$ID\" | jq -r '.version')\ncurl -sf \"https:\u002F\u002Fplugins-cdn.grafana.net\u002F$ID\u002F$VER\u002Fpublic\u002Fplugins\u002F$ID\u002Fschema\u002Fv0alpha1.json\"\n```\n\nWorked examples live under `settingsExamples.examples`, an object keyed by scenario (e.g. `apiKey`, `oauth2ClientCredentials`). Each entry has a `summary`\u002F`description` (the scenario) and a `value` holding the `jsonData`\u002F`secureJsonData` payload to lift straight into the file:\n\n```bash\n# list scenarios, then pull one payload\n... | jq -r '.settingsExamples.examples | keys[]'\n... | jq '.settingsExamples.examples.apiKey.value'\n```\n\n### 5. Fallback when no schema is published\n\nIf `schema\u002Fdsconfig.json` 404s (older plugins):\n\n- Last resort: the generic structure in **grafana-oss** skill (§ Data source provisioning) can also tell the user the field names are best-effort, not plugin-authoritative.\n\n> NOTE: **grafana-oss** skill is available in `grafana-core` plugin and also available as a standalone skill from the https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fskills repository\n\n### 6. Map each field by its `target`\n\n| `target`         | YAML                                                                  | Terraform (`grafana_data_source`)                                                    |\n| ---------------- | --------------------------------------------------------------------- | ------------------------------------------------------------------------------------ |\n| `root`           | top-level key on the datasource (`url`, `basicAuth`, `basicAuthUser`) | top-level argument (`url`) \u002F inside `json_data_encoded`                              |\n| `jsonData`       | under `jsonData:`                                                     | key inside `json_data_encoded = jsonencode({ … })`                                   |\n| `secureJsonData` | under `secureJsonData:` as `${ENV_VAR}`                               | key inside `secure_json_data_encoded = jsonencode({ … })` via a `sensitive` variable |\n\nUse each field's `valueType` for the scalar (`string` quoted in YAML, `boolean`→`true`\u002F`false`, `number` bare). Never inline a real secret. Nested objects (`oauth2`, `aws`) and arrays (`allowedHosts`, `scopes`) map directly.\n\nAlways set `access` (`root` target) and default it to `proxy` — queries route through the Grafana server (the secure default); only use `direct` (browser → data source) if the user explicitly asks for it. In Terraform the argument is `access_mode`.\n\n### 7. Ask the format, then emit the file\n\n**Now ask: YAML or Terraform?** Same fields, different output file and syntax. Don't assume: \"provision X\" may mean either; skip the question only if the user already named a format (\"terraform for X\"). YAML file provisioning is the native, zero-dependency path; Terraform needs the official [`grafana\u002Fgrafana`](https:\u002F\u002Fregistry.terraform.io\u002Fproviders\u002Fgrafana\u002Fgrafana\u002Flatest) provider.\n\n| Choice               | Produces                                     |\n| -------------------- | -------------------------------------------- |\n| **YAML config file** | `provisioning\u002Fdatasources\u002F\u003Cname>.yaml`       |\n| **Terraform**        | `\u003Cname>.tf` (`grafana_data_source` resource) |\n\n`\u003Cname>` is just the file's basename — cosmetic, since both loaders read every file in the directory regardless of name. Default it to the plugin name.\n\n**YAML** → `provisioning\u002Fdatasources\u002F\u003Cname>.yaml`:\n\n```yaml\napiVersion: 1\ndatasources:\n  - name: Infinity # must be unique across the instance — collides even with a different datasource type\n    type: yesoreyeram-infinity-datasource # = pluginType from the schema\n    access: proxy # always set; default proxy (route queries through the Grafana server)\n    uid: infinity-ds # also unique and immutable so dashboards can reference it\n    jsonData:\n      auth_method: apiKey # value from validations.allowedValues\n      apiKeyKey: X-API-Key\n      apiKeyType: header\n      allowedHosts:\n        - https:\u002F\u002Fapi.example.com\n    secureJsonData:\n      apiKeyValue: ${API_KEY} # env var ref, never a literal secret\n    editable: false\n```\n\n**Terraform** → `\u003Cname>.tf`:\n\n```hcl\nvariable \"api_key\" {\n  type      = string\n  sensitive = true\n}\n\nresource \"grafana_data_source\" \"infinity\" {\n  type        = \"yesoreyeram-infinity-datasource\"\n  name        = \"Infinity\"\n  uid         = \"infinity-ds\"\n  access_mode = \"proxy\" # always set; default proxy (route queries through the Grafana server)\n\n  json_data_encoded = jsonencode({\n    auth_method  = \"apiKey\"\n    apiKeyKey    = \"X-API-Key\"\n    apiKeyType   = \"header\"\n    allowedHosts = [\"https:\u002F\u002Fapi.example.com\"]\n  })\n\n  secure_json_data_encoded = jsonencode({\n    apiKeyValue = var.api_key\n  })\n}\n```\n\n`grafana_data_source` is from the [`grafana\u002Fgrafana`](https:\u002F\u002Fregistry.terraform.io\u002Fproviders\u002Fgrafana\u002Fgrafana\u002Flatest\u002Fdocs\u002Fresources\u002Fdata_source) provider — the authoritative reference for argument names (`access_mode`, `json_data_encoded`, `secure_json_data_encoded`). This file is only the resource; the user supplies the `required_providers` + `provider \"grafana\"` block and credentials.\n\n### 8. Return the file to the user\n\nPresent the complete file in a single code block for the user to copy and paste into their environment — note where it goes:\n\n- **YAML** → `provisioning\u002Fdatasources\u002F\u003Cname>.yaml` (apply on Grafana start or a provisioning reload).\n- **Terraform** → their Terraform config, applied with `terraform apply`.\n\nOptionally, tell them how to confirm it worked once applied:\n\n```bash\ncurl -s https:\u002F\u002Fgrafana.example.com\u002Fapi\u002Fdatasources\u002Fuid\u002F\u003Cuid>\u002Fhealth \\\n  -H \"Authorization: Bearer \u003Ctoken>\"\n# { \"status\": \"OK\" }    → working\n# { \"status\": \"ERROR\" } → URL unreachable or auth misconfigured\n```\n\nOr verify in the UI: visit `\u003Chttps:\u002F\u002Fgrafana.example.com>\u002Fconnections\u002Fdatasources\u002Fedit\u002F\u003Cuid>` and click **Test**.\n\n## Convert an existing data source\n\nTo codify a data source already configured in a running instance, read its config through the **Grafana MCP server** ([grafana\u002Fmcp-grafana](https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fmcp-grafana)).\n\n**Precondition:** the Grafana MCP server is connected with its **Datasources** toolset enabled (it holds the instance credentials). **If it isn't available, do not support this path** — never ask the user to paste a Grafana token into chat. Fall back to the from-scratch Workflow instead.\n\n1. Find the data source with the MCP tools — `list_datasources` to browse, then `get_datasource` (by `uid` or `name`) for the full config.\n2. The result carries every **non-secret** field directly: `type`, `uid`, `url`, `access`, `basicAuth`, `basicAuthUser`, and the full `jsonData` object. Copy them as-is.\n3. **Secrets are never returned.** The `secureJsonFields` map lists _which_ secret keys are set (e.g. `{\"apiKeyValue\": true}`) without their values. Emit an `${ENV_VAR}` placeholder in `secureJsonData` for each key it reports `true`.\n4. Cross-check against the schema (step 4) to confirm secret key names and `target` placement, then continue at **step 6** (map) and **step 7** (emit) as normal.\n\n## Related\n\n- [grafana-oss](..\u002F..\u002Fgrafana-core\u002Fgrafana-oss\u002FSKILL.md) — generic data source \u002F dashboard provisioning structure and provisioning paths.\n",{"data":38,"body":39},{"name":4,"license":29,"description":6},{"type":40,"children":41},"root",[42,51,58,70,104,110,124,282,294,300,357,362,368,378,526,596,630,711,1205,1218,1230,1239,1372,1434,1511,1517,1530,1545,1575,1586,1765,1840,1882,1888,1911,1980,1991,2006,2282,2296,2477,2535,2541,2546,2580,2585,2674,2693,2698,2718,2742,2918,2924,2937],{"type":43,"tag":44,"props":45,"children":47},"element","h2",{"id":46},"workflow",[48],{"type":49,"value":50},"text","Workflow",{"type":43,"tag":52,"props":53,"children":55},"h3",{"id":54},"_1-ask-the-starting-point-from-scratch-or-from-an-existing-data-source",[56],{"type":49,"value":57},"1. Ask the starting point: from scratch, or from an existing data source?",{"type":43,"tag":59,"props":60,"children":61},"p",{},[62,68],{"type":43,"tag":63,"props":64,"children":65},"strong",{},[66],{"type":49,"value":67},"Ask this before anything else",{"type":49,"value":69}," (skip only if the user already made it clear):",{"type":43,"tag":71,"props":72,"children":73},"ul",{},[74,85],{"type":43,"tag":75,"props":76,"children":77},"li",{},[78,83],{"type":43,"tag":63,"props":79,"children":80},{},[81],{"type":49,"value":82},"From scratch",{"type":49,"value":84}," — the user names a plugin type to provision → continue with step 2.",{"type":43,"tag":75,"props":86,"children":87},{},[88,93,95,102],{"type":43,"tag":63,"props":89,"children":90},{},[91],{"type":49,"value":92},"From an existing data source",{"type":49,"value":94}," in a running instance → jump to ",{"type":43,"tag":96,"props":97,"children":99},"a",{"href":98},"#convert-an-existing-data-source",[100],{"type":49,"value":101},"Convert an existing data source",{"type":49,"value":103},", then return to step 6.",{"type":43,"tag":52,"props":105,"children":107},{"id":106},"_2-resolve-the-full-plugin-id",[108],{"type":49,"value":109},"2. Resolve the full plugin id",{"type":43,"tag":59,"props":111,"children":112},{},[113,115,122],{"type":49,"value":114},"Provisioning needs the canonical plugin id (",{"type":43,"tag":116,"props":117,"children":119},"code",{"className":118},[],[120],{"type":49,"value":121},"\u003Corg>-\u003Cname>-datasource",{"type":49,"value":123},"), not the short name a user might say.",{"type":43,"tag":71,"props":125,"children":126},{},[127,156],{"type":43,"tag":75,"props":128,"children":129},{},[130,132,138,140,146,148,154],{"type":49,"value":131},"Already canonical (contains ",{"type":43,"tag":116,"props":133,"children":135},{"className":134},[],[136],{"type":49,"value":137},"-datasource",{"type":49,"value":139}," or ",{"type":43,"tag":116,"props":141,"children":143},{"className":142},[],[144],{"type":49,"value":145},"-app",{"type":49,"value":147},")? Use as-is: ",{"type":43,"tag":116,"props":149,"children":151},{"className":150},[],[152],{"type":49,"value":153},"yesoreyeram-infinity-datasource",{"type":49,"value":155},".",{"type":43,"tag":75,"props":157,"children":158},{},[159,161,167,169,175,177,183,185,280],{"type":49,"value":160},"Short name only (e.g. ",{"type":43,"tag":116,"props":162,"children":164},{"className":163},[],[165],{"type":49,"value":166},"infinity",{"type":49,"value":168},", ",{"type":43,"tag":116,"props":170,"children":172},{"className":171},[],[173],{"type":49,"value":174},"clickhouse",{"type":49,"value":176},")? Search the catalog API with ",{"type":43,"tag":116,"props":178,"children":180},{"className":179},[],[181],{"type":49,"value":182},"filter=\u003Ckeyword>",{"type":49,"value":184},":\n",{"type":43,"tag":186,"props":187,"children":192},"pre",{"className":188,"code":189,"language":190,"meta":191,"style":191},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s \"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins?filter=infinity\" \\\n  | jq -r '.items[] | \"\\(.slug)\\t\\(.name)\"'\n# → yesoreyeram-infinity-datasource    Infinity\n","bash","",[193],{"type":43,"tag":116,"props":194,"children":195},{"__ignoreMap":191},[196,236,270],{"type":43,"tag":197,"props":198,"children":201},"span",{"class":199,"line":200},"line",1,[202,208,214,220,225,230],{"type":43,"tag":197,"props":203,"children":205},{"style":204},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[206],{"type":49,"value":207},"curl",{"type":43,"tag":197,"props":209,"children":211},{"style":210},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[212],{"type":49,"value":213}," -s",{"type":43,"tag":197,"props":215,"children":217},{"style":216},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[218],{"type":49,"value":219}," \"",{"type":43,"tag":197,"props":221,"children":222},{"style":210},[223],{"type":49,"value":224},"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins?filter=infinity",{"type":43,"tag":197,"props":226,"children":227},{"style":216},[228],{"type":49,"value":229},"\"",{"type":43,"tag":197,"props":231,"children":233},{"style":232},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[234],{"type":49,"value":235}," \\\n",{"type":43,"tag":197,"props":237,"children":239},{"class":199,"line":238},2,[240,245,250,255,260,265],{"type":43,"tag":197,"props":241,"children":242},{"style":216},[243],{"type":49,"value":244},"  |",{"type":43,"tag":197,"props":246,"children":247},{"style":204},[248],{"type":49,"value":249}," jq",{"type":43,"tag":197,"props":251,"children":252},{"style":210},[253],{"type":49,"value":254}," -r",{"type":43,"tag":197,"props":256,"children":257},{"style":216},[258],{"type":49,"value":259}," '",{"type":43,"tag":197,"props":261,"children":262},{"style":210},[263],{"type":49,"value":264},".items[] | \"\\(.slug)\\t\\(.name)\"",{"type":43,"tag":197,"props":266,"children":267},{"style":216},[268],{"type":49,"value":269},"'\n",{"type":43,"tag":197,"props":271,"children":273},{"class":199,"line":272},3,[274],{"type":43,"tag":197,"props":275,"children":277},{"style":276},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[278],{"type":49,"value":279},"# → yesoreyeram-infinity-datasource    Infinity\n",{"type":49,"value":281},"\nMultiple matches → show the candidates and ask which one.",{"type":43,"tag":59,"props":283,"children":284},{},[285,287,292],{"type":49,"value":286},"The snippets below use Infinity (",{"type":43,"tag":116,"props":288,"children":290},{"className":289},[],[291],{"type":49,"value":153},{"type":49,"value":293},") as the worked example — substitute the id resolved here (and the version from step 3) in every command and output.",{"type":43,"tag":52,"props":295,"children":297},{"id":296},"_3-resolve-the-latest-version",[298],{"type":49,"value":299},"3. Resolve the latest version",{"type":43,"tag":186,"props":301,"children":303},{"className":188,"code":302,"language":190,"meta":191,"style":191},"curl -s \"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins\u002Fyesoreyeram-infinity-datasource\" | jq -r '.version'\n",[304],{"type":43,"tag":116,"props":305,"children":306},{"__ignoreMap":191},[307],{"type":43,"tag":197,"props":308,"children":309},{"class":199,"line":200},[310,314,318,322,327,331,336,340,344,348,353],{"type":43,"tag":197,"props":311,"children":312},{"style":204},[313],{"type":49,"value":207},{"type":43,"tag":197,"props":315,"children":316},{"style":210},[317],{"type":49,"value":213},{"type":43,"tag":197,"props":319,"children":320},{"style":216},[321],{"type":49,"value":219},{"type":43,"tag":197,"props":323,"children":324},{"style":210},[325],{"type":49,"value":326},"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins\u002Fyesoreyeram-infinity-datasource",{"type":43,"tag":197,"props":328,"children":329},{"style":216},[330],{"type":49,"value":229},{"type":43,"tag":197,"props":332,"children":333},{"style":216},[334],{"type":49,"value":335}," |",{"type":43,"tag":197,"props":337,"children":338},{"style":204},[339],{"type":49,"value":249},{"type":43,"tag":197,"props":341,"children":342},{"style":210},[343],{"type":49,"value":254},{"type":43,"tag":197,"props":345,"children":346},{"style":216},[347],{"type":49,"value":259},{"type":43,"tag":197,"props":349,"children":350},{"style":210},[351],{"type":49,"value":352},".version",{"type":43,"tag":197,"props":354,"children":355},{"style":216},[356],{"type":49,"value":269},{"type":43,"tag":59,"props":358,"children":359},{},[360],{"type":49,"value":361},"Never hardcode a version — the CDN path is version-pinned and a stale version 404s.",{"type":43,"tag":52,"props":363,"children":365},{"id":364},"_4-fetch-the-settings-schema-primary-structured-source",[366],{"type":49,"value":367},"4. Fetch the settings schema (primary structured source)",{"type":43,"tag":186,"props":369,"children":373},{"className":370,"code":372,"language":49},[371],"language-text","https:\u002F\u002Fplugins-cdn.grafana.net\u002F\u003CPLUGIN_ID>\u002F\u003CVERSION>\u002Fpublic\u002Fplugins\u002F\u003CPLUGIN_ID>\u002Fschema\u002Fdsconfig.json\n",[374],{"type":43,"tag":116,"props":375,"children":376},{"__ignoreMap":191},[377],{"type":49,"value":372},{"type":43,"tag":186,"props":379,"children":381},{"className":188,"code":380,"language":190,"meta":191,"style":191},"ID=yesoreyeram-infinity-datasource\nVER=$(curl -s \"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins\u002F$ID\" | jq -r '.version')\ncurl -sf \"https:\u002F\u002Fplugins-cdn.grafana.net\u002F$ID\u002F$VER\u002Fpublic\u002Fplugins\u002F$ID\u002Fschema\u002Fdsconfig.json\"\n",[382],{"type":43,"tag":116,"props":383,"children":384},{"__ignoreMap":191},[385,403,472],{"type":43,"tag":197,"props":386,"children":387},{"class":199,"line":200},[388,393,398],{"type":43,"tag":197,"props":389,"children":390},{"style":232},[391],{"type":49,"value":392},"ID",{"type":43,"tag":197,"props":394,"children":395},{"style":216},[396],{"type":49,"value":397},"=",{"type":43,"tag":197,"props":399,"children":400},{"style":210},[401],{"type":49,"value":402},"yesoreyeram-infinity-datasource\n",{"type":43,"tag":197,"props":404,"children":405},{"class":199,"line":238},[406,411,416,420,424,428,433,438,442,446,450,454,458,462,467],{"type":43,"tag":197,"props":407,"children":408},{"style":232},[409],{"type":49,"value":410},"VER",{"type":43,"tag":197,"props":412,"children":413},{"style":216},[414],{"type":49,"value":415},"=$(",{"type":43,"tag":197,"props":417,"children":418},{"style":204},[419],{"type":49,"value":207},{"type":43,"tag":197,"props":421,"children":422},{"style":210},[423],{"type":49,"value":213},{"type":43,"tag":197,"props":425,"children":426},{"style":216},[427],{"type":49,"value":219},{"type":43,"tag":197,"props":429,"children":430},{"style":210},[431],{"type":49,"value":432},"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins\u002F",{"type":43,"tag":197,"props":434,"children":435},{"style":232},[436],{"type":49,"value":437},"$ID",{"type":43,"tag":197,"props":439,"children":440},{"style":216},[441],{"type":49,"value":229},{"type":43,"tag":197,"props":443,"children":444},{"style":216},[445],{"type":49,"value":335},{"type":43,"tag":197,"props":447,"children":448},{"style":204},[449],{"type":49,"value":249},{"type":43,"tag":197,"props":451,"children":452},{"style":210},[453],{"type":49,"value":254},{"type":43,"tag":197,"props":455,"children":456},{"style":216},[457],{"type":49,"value":259},{"type":43,"tag":197,"props":459,"children":460},{"style":210},[461],{"type":49,"value":352},{"type":43,"tag":197,"props":463,"children":464},{"style":216},[465],{"type":49,"value":466},"'",{"type":43,"tag":197,"props":468,"children":469},{"style":216},[470],{"type":49,"value":471},")\n",{"type":43,"tag":197,"props":473,"children":474},{"class":199,"line":272},[475,479,484,488,493,497,502,507,512,516,521],{"type":43,"tag":197,"props":476,"children":477},{"style":204},[478],{"type":49,"value":207},{"type":43,"tag":197,"props":480,"children":481},{"style":210},[482],{"type":49,"value":483}," -sf",{"type":43,"tag":197,"props":485,"children":486},{"style":216},[487],{"type":49,"value":219},{"type":43,"tag":197,"props":489,"children":490},{"style":210},[491],{"type":49,"value":492},"https:\u002F\u002Fplugins-cdn.grafana.net\u002F",{"type":43,"tag":197,"props":494,"children":495},{"style":232},[496],{"type":49,"value":437},{"type":43,"tag":197,"props":498,"children":499},{"style":210},[500],{"type":49,"value":501},"\u002F",{"type":43,"tag":197,"props":503,"children":504},{"style":232},[505],{"type":49,"value":506},"$VER",{"type":43,"tag":197,"props":508,"children":509},{"style":210},[510],{"type":49,"value":511},"\u002Fpublic\u002Fplugins\u002F",{"type":43,"tag":197,"props":513,"children":514},{"style":232},[515],{"type":49,"value":437},{"type":43,"tag":197,"props":517,"children":518},{"style":210},[519],{"type":49,"value":520},"\u002Fschema\u002Fdsconfig.json",{"type":43,"tag":197,"props":522,"children":523},{"style":216},[524],{"type":49,"value":525},"\"\n",{"type":43,"tag":59,"props":527,"children":528},{},[529,531,536,538,544,546,552,553,559,560,566,567,573,574,580,581,587,588,594],{"type":49,"value":530},"This file conforms to the ",{"type":43,"tag":63,"props":532,"children":533},{},[534],{"type":49,"value":535},"dsconfig",{"type":49,"value":537}," schema spec — the source of truth for how to interpret it. Don't re-derive field semantics from memory (",{"type":43,"tag":116,"props":539,"children":541},{"className":540},[],[542],{"type":49,"value":543},"valueType",{"type":49,"value":545}," alone spans ",{"type":43,"tag":116,"props":547,"children":549},{"className":548},[],[550],{"type":49,"value":551},"string",{"type":49,"value":168},{"type":43,"tag":116,"props":554,"children":556},{"className":555},[],[557],{"type":49,"value":558},"number",{"type":49,"value":168},{"type":43,"tag":116,"props":561,"children":563},{"className":562},[],[564],{"type":49,"value":565},"boolean",{"type":49,"value":168},{"type":43,"tag":116,"props":568,"children":570},{"className":569},[],[571],{"type":49,"value":572},"array",{"type":49,"value":168},{"type":43,"tag":116,"props":575,"children":577},{"className":576},[],[578],{"type":49,"value":579},"object",{"type":49,"value":168},{"type":43,"tag":116,"props":582,"children":584},{"className":583},[],[585],{"type":49,"value":586},"map",{"type":49,"value":168},{"type":43,"tag":116,"props":589,"children":591},{"className":590},[],[592],{"type":49,"value":593},"any",{"type":49,"value":595},"); consult the spec when a field isn't a plain scalar:",{"type":43,"tag":71,"props":597,"children":598},{},[599,611],{"type":43,"tag":75,"props":600,"children":601},{},[602,604],{"type":49,"value":603},"Prose spec: ",{"type":43,"tag":96,"props":605,"children":609},{"href":606,"rel":607},"https:\u002F\u002Fraw.githubusercontent.com\u002Fgrafana\u002Fdsconfig\u002Frefs\u002Fheads\u002Fmain\u002Fdsconfig\u002Fschema.md",[608],"nofollow",[610],{"type":49,"value":606},{"type":43,"tag":75,"props":612,"children":613},{},[614,616,622,624],{"type":49,"value":615},"Meta-schema (defines the format of every ",{"type":43,"tag":116,"props":617,"children":619},{"className":618},[],[620],{"type":49,"value":621},"dsconfig.json",{"type":49,"value":623},"): ",{"type":43,"tag":96,"props":625,"children":628},{"href":626,"rel":627},"https:\u002F\u002Fraw.githubusercontent.com\u002Fgrafana\u002Fdsconfig\u002Frefs\u002Fheads\u002Fmain\u002Fdsconfig\u002Fschema.json",[608],[629],{"type":49,"value":626},{"type":43,"tag":59,"props":631,"children":632},{},[633,635,641,643,648,649,655,657,662,664,670,671,677,679,685,687,693,695,701,703,709],{"type":49,"value":634},"What you need from each field to provision: ",{"type":43,"tag":116,"props":636,"children":638},{"className":637},[],[639],{"type":49,"value":640},"key",{"type":49,"value":642}," (the provisioning key), ",{"type":43,"tag":116,"props":644,"children":646},{"className":645},[],[647],{"type":49,"value":543},{"type":49,"value":168},{"type":43,"tag":116,"props":650,"children":652},{"className":651},[],[653],{"type":49,"value":654},"target",{"type":49,"value":656}," (",{"type":43,"tag":116,"props":658,"children":660},{"className":659},[],[661],{"type":49,"value":40},{"type":49,"value":663}," | ",{"type":43,"tag":116,"props":665,"children":667},{"className":666},[],[668],{"type":49,"value":669},"jsonData",{"type":49,"value":663},{"type":43,"tag":116,"props":672,"children":674},{"className":673},[],[675],{"type":49,"value":676},"secureJsonData",{"type":49,"value":678},"), and ",{"type":43,"tag":116,"props":680,"children":682},{"className":681},[],[683],{"type":49,"value":684},"validations",{"type":49,"value":686}," (honor ",{"type":43,"tag":116,"props":688,"children":690},{"className":689},[],[691],{"type":49,"value":692},"allowedValues",{"type":49,"value":694}," for selectors like ",{"type":43,"tag":116,"props":696,"children":698},{"className":697},[],[699],{"type":49,"value":700},"auth_method",{"type":49,"value":702},"). Orientation example (",{"type":43,"tag":116,"props":704,"children":706},{"className":705},[],[707],{"type":49,"value":708},"schemaVersion: \"v1\"",{"type":49,"value":710},"):",{"type":43,"tag":186,"props":712,"children":716},{"className":713,"code":714,"language":715,"meta":191,"style":191},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"pluginType\": \"yesoreyeram-infinity-datasource\",\n  \"fields\": [\n    {\n      \"key\": \"auth_method\",\n      \"valueType\": \"string\",\n      \"target\": \"jsonData\",\n      \"validations\": [\n        {\n          \"type\": \"allowedValues\",\n          \"values\": [\n            \"none\",\n            \"basicAuth\",\n            \"apiKey\",\n            \"bearerToken\",\n            \"oauth2\",\n            \"aws\",\n            \"azureBlob\"\n          ]\n        }\n      ]\n    }\n  ]\n}\n","json",[717],{"type":43,"tag":116,"props":718,"children":719},{"__ignoreMap":191},[720,728,768,793,802,839,875,911,935,944,983,1008,1030,1051,1072,1093,1113,1134,1151,1160,1169,1178,1187,1196],{"type":43,"tag":197,"props":721,"children":722},{"class":199,"line":200},[723],{"type":43,"tag":197,"props":724,"children":725},{"style":216},[726],{"type":49,"value":727},"{\n",{"type":43,"tag":197,"props":729,"children":730},{"class":199,"line":238},[731,736,742,746,751,755,759,763],{"type":43,"tag":197,"props":732,"children":733},{"style":216},[734],{"type":49,"value":735},"  \"",{"type":43,"tag":197,"props":737,"children":739},{"style":738},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[740],{"type":49,"value":741},"pluginType",{"type":43,"tag":197,"props":743,"children":744},{"style":216},[745],{"type":49,"value":229},{"type":43,"tag":197,"props":747,"children":748},{"style":216},[749],{"type":49,"value":750},":",{"type":43,"tag":197,"props":752,"children":753},{"style":216},[754],{"type":49,"value":219},{"type":43,"tag":197,"props":756,"children":757},{"style":210},[758],{"type":49,"value":153},{"type":43,"tag":197,"props":760,"children":761},{"style":216},[762],{"type":49,"value":229},{"type":43,"tag":197,"props":764,"children":765},{"style":216},[766],{"type":49,"value":767},",\n",{"type":43,"tag":197,"props":769,"children":770},{"class":199,"line":272},[771,775,780,784,788],{"type":43,"tag":197,"props":772,"children":773},{"style":216},[774],{"type":49,"value":735},{"type":43,"tag":197,"props":776,"children":777},{"style":738},[778],{"type":49,"value":779},"fields",{"type":43,"tag":197,"props":781,"children":782},{"style":216},[783],{"type":49,"value":229},{"type":43,"tag":197,"props":785,"children":786},{"style":216},[787],{"type":49,"value":750},{"type":43,"tag":197,"props":789,"children":790},{"style":216},[791],{"type":49,"value":792}," [\n",{"type":43,"tag":197,"props":794,"children":796},{"class":199,"line":795},4,[797],{"type":43,"tag":197,"props":798,"children":799},{"style":216},[800],{"type":49,"value":801},"    {\n",{"type":43,"tag":197,"props":803,"children":805},{"class":199,"line":804},5,[806,811,815,819,823,827,831,835],{"type":43,"tag":197,"props":807,"children":808},{"style":216},[809],{"type":49,"value":810},"      \"",{"type":43,"tag":197,"props":812,"children":813},{"style":204},[814],{"type":49,"value":640},{"type":43,"tag":197,"props":816,"children":817},{"style":216},[818],{"type":49,"value":229},{"type":43,"tag":197,"props":820,"children":821},{"style":216},[822],{"type":49,"value":750},{"type":43,"tag":197,"props":824,"children":825},{"style":216},[826],{"type":49,"value":219},{"type":43,"tag":197,"props":828,"children":829},{"style":210},[830],{"type":49,"value":700},{"type":43,"tag":197,"props":832,"children":833},{"style":216},[834],{"type":49,"value":229},{"type":43,"tag":197,"props":836,"children":837},{"style":216},[838],{"type":49,"value":767},{"type":43,"tag":197,"props":840,"children":842},{"class":199,"line":841},6,[843,847,851,855,859,863,867,871],{"type":43,"tag":197,"props":844,"children":845},{"style":216},[846],{"type":49,"value":810},{"type":43,"tag":197,"props":848,"children":849},{"style":204},[850],{"type":49,"value":543},{"type":43,"tag":197,"props":852,"children":853},{"style":216},[854],{"type":49,"value":229},{"type":43,"tag":197,"props":856,"children":857},{"style":216},[858],{"type":49,"value":750},{"type":43,"tag":197,"props":860,"children":861},{"style":216},[862],{"type":49,"value":219},{"type":43,"tag":197,"props":864,"children":865},{"style":210},[866],{"type":49,"value":551},{"type":43,"tag":197,"props":868,"children":869},{"style":216},[870],{"type":49,"value":229},{"type":43,"tag":197,"props":872,"children":873},{"style":216},[874],{"type":49,"value":767},{"type":43,"tag":197,"props":876,"children":878},{"class":199,"line":877},7,[879,883,887,891,895,899,903,907],{"type":43,"tag":197,"props":880,"children":881},{"style":216},[882],{"type":49,"value":810},{"type":43,"tag":197,"props":884,"children":885},{"style":204},[886],{"type":49,"value":654},{"type":43,"tag":197,"props":888,"children":889},{"style":216},[890],{"type":49,"value":229},{"type":43,"tag":197,"props":892,"children":893},{"style":216},[894],{"type":49,"value":750},{"type":43,"tag":197,"props":896,"children":897},{"style":216},[898],{"type":49,"value":219},{"type":43,"tag":197,"props":900,"children":901},{"style":210},[902],{"type":49,"value":669},{"type":43,"tag":197,"props":904,"children":905},{"style":216},[906],{"type":49,"value":229},{"type":43,"tag":197,"props":908,"children":909},{"style":216},[910],{"type":49,"value":767},{"type":43,"tag":197,"props":912,"children":914},{"class":199,"line":913},8,[915,919,923,927,931],{"type":43,"tag":197,"props":916,"children":917},{"style":216},[918],{"type":49,"value":810},{"type":43,"tag":197,"props":920,"children":921},{"style":204},[922],{"type":49,"value":684},{"type":43,"tag":197,"props":924,"children":925},{"style":216},[926],{"type":49,"value":229},{"type":43,"tag":197,"props":928,"children":929},{"style":216},[930],{"type":49,"value":750},{"type":43,"tag":197,"props":932,"children":933},{"style":216},[934],{"type":49,"value":792},{"type":43,"tag":197,"props":936,"children":938},{"class":199,"line":937},9,[939],{"type":43,"tag":197,"props":940,"children":941},{"style":216},[942],{"type":49,"value":943},"        {\n",{"type":43,"tag":197,"props":945,"children":947},{"class":199,"line":946},10,[948,953,959,963,967,971,975,979],{"type":43,"tag":197,"props":949,"children":950},{"style":216},[951],{"type":49,"value":952},"          \"",{"type":43,"tag":197,"props":954,"children":956},{"style":955},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[957],{"type":49,"value":958},"type",{"type":43,"tag":197,"props":960,"children":961},{"style":216},[962],{"type":49,"value":229},{"type":43,"tag":197,"props":964,"children":965},{"style":216},[966],{"type":49,"value":750},{"type":43,"tag":197,"props":968,"children":969},{"style":216},[970],{"type":49,"value":219},{"type":43,"tag":197,"props":972,"children":973},{"style":210},[974],{"type":49,"value":692},{"type":43,"tag":197,"props":976,"children":977},{"style":216},[978],{"type":49,"value":229},{"type":43,"tag":197,"props":980,"children":981},{"style":216},[982],{"type":49,"value":767},{"type":43,"tag":197,"props":984,"children":986},{"class":199,"line":985},11,[987,991,996,1000,1004],{"type":43,"tag":197,"props":988,"children":989},{"style":216},[990],{"type":49,"value":952},{"type":43,"tag":197,"props":992,"children":993},{"style":955},[994],{"type":49,"value":995},"values",{"type":43,"tag":197,"props":997,"children":998},{"style":216},[999],{"type":49,"value":229},{"type":43,"tag":197,"props":1001,"children":1002},{"style":216},[1003],{"type":49,"value":750},{"type":43,"tag":197,"props":1005,"children":1006},{"style":216},[1007],{"type":49,"value":792},{"type":43,"tag":197,"props":1009,"children":1011},{"class":199,"line":1010},12,[1012,1017,1022,1026],{"type":43,"tag":197,"props":1013,"children":1014},{"style":216},[1015],{"type":49,"value":1016},"            \"",{"type":43,"tag":197,"props":1018,"children":1019},{"style":210},[1020],{"type":49,"value":1021},"none",{"type":43,"tag":197,"props":1023,"children":1024},{"style":216},[1025],{"type":49,"value":229},{"type":43,"tag":197,"props":1027,"children":1028},{"style":216},[1029],{"type":49,"value":767},{"type":43,"tag":197,"props":1031,"children":1033},{"class":199,"line":1032},13,[1034,1038,1043,1047],{"type":43,"tag":197,"props":1035,"children":1036},{"style":216},[1037],{"type":49,"value":1016},{"type":43,"tag":197,"props":1039,"children":1040},{"style":210},[1041],{"type":49,"value":1042},"basicAuth",{"type":43,"tag":197,"props":1044,"children":1045},{"style":216},[1046],{"type":49,"value":229},{"type":43,"tag":197,"props":1048,"children":1049},{"style":216},[1050],{"type":49,"value":767},{"type":43,"tag":197,"props":1052,"children":1054},{"class":199,"line":1053},14,[1055,1059,1064,1068],{"type":43,"tag":197,"props":1056,"children":1057},{"style":216},[1058],{"type":49,"value":1016},{"type":43,"tag":197,"props":1060,"children":1061},{"style":210},[1062],{"type":49,"value":1063},"apiKey",{"type":43,"tag":197,"props":1065,"children":1066},{"style":216},[1067],{"type":49,"value":229},{"type":43,"tag":197,"props":1069,"children":1070},{"style":216},[1071],{"type":49,"value":767},{"type":43,"tag":197,"props":1073,"children":1075},{"class":199,"line":1074},15,[1076,1080,1085,1089],{"type":43,"tag":197,"props":1077,"children":1078},{"style":216},[1079],{"type":49,"value":1016},{"type":43,"tag":197,"props":1081,"children":1082},{"style":210},[1083],{"type":49,"value":1084},"bearerToken",{"type":43,"tag":197,"props":1086,"children":1087},{"style":216},[1088],{"type":49,"value":229},{"type":43,"tag":197,"props":1090,"children":1091},{"style":216},[1092],{"type":49,"value":767},{"type":43,"tag":197,"props":1094,"children":1095},{"class":199,"line":30},[1096,1100,1105,1109],{"type":43,"tag":197,"props":1097,"children":1098},{"style":216},[1099],{"type":49,"value":1016},{"type":43,"tag":197,"props":1101,"children":1102},{"style":210},[1103],{"type":49,"value":1104},"oauth2",{"type":43,"tag":197,"props":1106,"children":1107},{"style":216},[1108],{"type":49,"value":229},{"type":43,"tag":197,"props":1110,"children":1111},{"style":216},[1112],{"type":49,"value":767},{"type":43,"tag":197,"props":1114,"children":1116},{"class":199,"line":1115},17,[1117,1121,1126,1130],{"type":43,"tag":197,"props":1118,"children":1119},{"style":216},[1120],{"type":49,"value":1016},{"type":43,"tag":197,"props":1122,"children":1123},{"style":210},[1124],{"type":49,"value":1125},"aws",{"type":43,"tag":197,"props":1127,"children":1128},{"style":216},[1129],{"type":49,"value":229},{"type":43,"tag":197,"props":1131,"children":1132},{"style":216},[1133],{"type":49,"value":767},{"type":43,"tag":197,"props":1135,"children":1137},{"class":199,"line":1136},18,[1138,1142,1147],{"type":43,"tag":197,"props":1139,"children":1140},{"style":216},[1141],{"type":49,"value":1016},{"type":43,"tag":197,"props":1143,"children":1144},{"style":210},[1145],{"type":49,"value":1146},"azureBlob",{"type":43,"tag":197,"props":1148,"children":1149},{"style":216},[1150],{"type":49,"value":525},{"type":43,"tag":197,"props":1152,"children":1154},{"class":199,"line":1153},19,[1155],{"type":43,"tag":197,"props":1156,"children":1157},{"style":216},[1158],{"type":49,"value":1159},"          ]\n",{"type":43,"tag":197,"props":1161,"children":1163},{"class":199,"line":1162},20,[1164],{"type":43,"tag":197,"props":1165,"children":1166},{"style":216},[1167],{"type":49,"value":1168},"        }\n",{"type":43,"tag":197,"props":1170,"children":1172},{"class":199,"line":1171},21,[1173],{"type":43,"tag":197,"props":1174,"children":1175},{"style":216},[1176],{"type":49,"value":1177},"      ]\n",{"type":43,"tag":197,"props":1179,"children":1181},{"class":199,"line":1180},22,[1182],{"type":43,"tag":197,"props":1183,"children":1184},{"style":216},[1185],{"type":49,"value":1186},"    }\n",{"type":43,"tag":197,"props":1188,"children":1190},{"class":199,"line":1189},23,[1191],{"type":43,"tag":197,"props":1192,"children":1193},{"style":216},[1194],{"type":49,"value":1195},"  ]\n",{"type":43,"tag":197,"props":1197,"children":1199},{"class":199,"line":1198},24,[1200],{"type":43,"tag":197,"props":1201,"children":1202},{"style":216},[1203],{"type":49,"value":1204},"}\n",{"type":43,"tag":59,"props":1206,"children":1207},{},[1208,1210,1216],{"type":49,"value":1209},"Select only the fields relevant to what the user asked for (chosen auth method + connection), not all of them. Each field's ",{"type":43,"tag":116,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":49,"value":1215},"description",{"type":49,"value":1217}," tells you which auth method it belongs to.",{"type":43,"tag":59,"props":1219,"children":1220},{},[1221,1223,1229],{"type":49,"value":1222},"For ready-made example configs, fetch ",{"type":43,"tag":116,"props":1224,"children":1226},{"className":1225},[],[1227],{"type":49,"value":1228},"v0alpha1.json",{"type":49,"value":750},{"type":43,"tag":186,"props":1231,"children":1234},{"className":1232,"code":1233,"language":49},[371],"https:\u002F\u002Fplugins-cdn.grafana.net\u002F\u003CPLUGIN_ID>\u002F\u003CVERSION>\u002Fpublic\u002Fplugins\u002F\u003CPLUGIN_ID>\u002Fschema\u002Fv0alpha1.json\n",[1235],{"type":43,"tag":116,"props":1236,"children":1237},{"__ignoreMap":191},[1238],{"type":49,"value":1233},{"type":43,"tag":186,"props":1240,"children":1242},{"className":188,"code":1241,"language":190,"meta":191,"style":191},"ID=yesoreyeram-infinity-datasource\nVER=$(curl -s \"https:\u002F\u002Fgrafana.com\u002Fapi\u002Fplugins\u002F$ID\" | jq -r '.version')\ncurl -sf \"https:\u002F\u002Fplugins-cdn.grafana.net\u002F$ID\u002F$VER\u002Fpublic\u002Fplugins\u002F$ID\u002Fschema\u002Fv0alpha1.json\"\n",[1243],{"type":43,"tag":116,"props":1244,"children":1245},{"__ignoreMap":191},[1246,1261,1324],{"type":43,"tag":197,"props":1247,"children":1248},{"class":199,"line":200},[1249,1253,1257],{"type":43,"tag":197,"props":1250,"children":1251},{"style":232},[1252],{"type":49,"value":392},{"type":43,"tag":197,"props":1254,"children":1255},{"style":216},[1256],{"type":49,"value":397},{"type":43,"tag":197,"props":1258,"children":1259},{"style":210},[1260],{"type":49,"value":402},{"type":43,"tag":197,"props":1262,"children":1263},{"class":199,"line":238},[1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320],{"type":43,"tag":197,"props":1265,"children":1266},{"style":232},[1267],{"type":49,"value":410},{"type":43,"tag":197,"props":1269,"children":1270},{"style":216},[1271],{"type":49,"value":415},{"type":43,"tag":197,"props":1273,"children":1274},{"style":204},[1275],{"type":49,"value":207},{"type":43,"tag":197,"props":1277,"children":1278},{"style":210},[1279],{"type":49,"value":213},{"type":43,"tag":197,"props":1281,"children":1282},{"style":216},[1283],{"type":49,"value":219},{"type":43,"tag":197,"props":1285,"children":1286},{"style":210},[1287],{"type":49,"value":432},{"type":43,"tag":197,"props":1289,"children":1290},{"style":232},[1291],{"type":49,"value":437},{"type":43,"tag":197,"props":1293,"children":1294},{"style":216},[1295],{"type":49,"value":229},{"type":43,"tag":197,"props":1297,"children":1298},{"style":216},[1299],{"type":49,"value":335},{"type":43,"tag":197,"props":1301,"children":1302},{"style":204},[1303],{"type":49,"value":249},{"type":43,"tag":197,"props":1305,"children":1306},{"style":210},[1307],{"type":49,"value":254},{"type":43,"tag":197,"props":1309,"children":1310},{"style":216},[1311],{"type":49,"value":259},{"type":43,"tag":197,"props":1313,"children":1314},{"style":210},[1315],{"type":49,"value":352},{"type":43,"tag":197,"props":1317,"children":1318},{"style":216},[1319],{"type":49,"value":466},{"type":43,"tag":197,"props":1321,"children":1322},{"style":216},[1323],{"type":49,"value":471},{"type":43,"tag":197,"props":1325,"children":1326},{"class":199,"line":272},[1327,1331,1335,1339,1343,1347,1351,1355,1359,1363,1368],{"type":43,"tag":197,"props":1328,"children":1329},{"style":204},[1330],{"type":49,"value":207},{"type":43,"tag":197,"props":1332,"children":1333},{"style":210},[1334],{"type":49,"value":483},{"type":43,"tag":197,"props":1336,"children":1337},{"style":216},[1338],{"type":49,"value":219},{"type":43,"tag":197,"props":1340,"children":1341},{"style":210},[1342],{"type":49,"value":492},{"type":43,"tag":197,"props":1344,"children":1345},{"style":232},[1346],{"type":49,"value":437},{"type":43,"tag":197,"props":1348,"children":1349},{"style":210},[1350],{"type":49,"value":501},{"type":43,"tag":197,"props":1352,"children":1353},{"style":232},[1354],{"type":49,"value":506},{"type":43,"tag":197,"props":1356,"children":1357},{"style":210},[1358],{"type":49,"value":511},{"type":43,"tag":197,"props":1360,"children":1361},{"style":232},[1362],{"type":49,"value":437},{"type":43,"tag":197,"props":1364,"children":1365},{"style":210},[1366],{"type":49,"value":1367},"\u002Fschema\u002Fv0alpha1.json",{"type":43,"tag":197,"props":1369,"children":1370},{"style":216},[1371],{"type":49,"value":525},{"type":43,"tag":59,"props":1373,"children":1374},{},[1375,1377,1383,1385,1390,1391,1397,1399,1405,1406,1411,1413,1419,1421,1426,1427,1432],{"type":49,"value":1376},"Worked examples live under ",{"type":43,"tag":116,"props":1378,"children":1380},{"className":1379},[],[1381],{"type":49,"value":1382},"settingsExamples.examples",{"type":49,"value":1384},", an object keyed by scenario (e.g. ",{"type":43,"tag":116,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":49,"value":1063},{"type":49,"value":168},{"type":43,"tag":116,"props":1392,"children":1394},{"className":1393},[],[1395],{"type":49,"value":1396},"oauth2ClientCredentials",{"type":49,"value":1398},"). Each entry has a ",{"type":43,"tag":116,"props":1400,"children":1402},{"className":1401},[],[1403],{"type":49,"value":1404},"summary",{"type":49,"value":501},{"type":43,"tag":116,"props":1407,"children":1409},{"className":1408},[],[1410],{"type":49,"value":1215},{"type":49,"value":1412}," (the scenario) and a ",{"type":43,"tag":116,"props":1414,"children":1416},{"className":1415},[],[1417],{"type":49,"value":1418},"value",{"type":49,"value":1420}," holding the ",{"type":43,"tag":116,"props":1422,"children":1424},{"className":1423},[],[1425],{"type":49,"value":669},{"type":49,"value":501},{"type":43,"tag":116,"props":1428,"children":1430},{"className":1429},[],[1431],{"type":49,"value":676},{"type":49,"value":1433}," payload to lift straight into the file:",{"type":43,"tag":186,"props":1435,"children":1437},{"className":188,"code":1436,"language":190,"meta":191,"style":191},"# list scenarios, then pull one payload\n... | jq -r '.settingsExamples.examples | keys[]'\n... | jq '.settingsExamples.examples.apiKey.value'\n",[1438],{"type":43,"tag":116,"props":1439,"children":1440},{"__ignoreMap":191},[1441,1449,1483],{"type":43,"tag":197,"props":1442,"children":1443},{"class":199,"line":200},[1444],{"type":43,"tag":197,"props":1445,"children":1446},{"style":276},[1447],{"type":49,"value":1448},"# list scenarios, then pull one payload\n",{"type":43,"tag":197,"props":1450,"children":1451},{"class":199,"line":238},[1452,1458,1462,1466,1470,1474,1479],{"type":43,"tag":197,"props":1453,"children":1455},{"style":1454},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1456],{"type":49,"value":1457},"...",{"type":43,"tag":197,"props":1459,"children":1460},{"style":216},[1461],{"type":49,"value":335},{"type":43,"tag":197,"props":1463,"children":1464},{"style":204},[1465],{"type":49,"value":249},{"type":43,"tag":197,"props":1467,"children":1468},{"style":210},[1469],{"type":49,"value":254},{"type":43,"tag":197,"props":1471,"children":1472},{"style":216},[1473],{"type":49,"value":259},{"type":43,"tag":197,"props":1475,"children":1476},{"style":210},[1477],{"type":49,"value":1478},".settingsExamples.examples | keys[]",{"type":43,"tag":197,"props":1480,"children":1481},{"style":216},[1482],{"type":49,"value":269},{"type":43,"tag":197,"props":1484,"children":1485},{"class":199,"line":272},[1486,1490,1494,1498,1502,1507],{"type":43,"tag":197,"props":1487,"children":1488},{"style":1454},[1489],{"type":49,"value":1457},{"type":43,"tag":197,"props":1491,"children":1492},{"style":216},[1493],{"type":49,"value":335},{"type":43,"tag":197,"props":1495,"children":1496},{"style":204},[1497],{"type":49,"value":249},{"type":43,"tag":197,"props":1499,"children":1500},{"style":216},[1501],{"type":49,"value":259},{"type":43,"tag":197,"props":1503,"children":1504},{"style":210},[1505],{"type":49,"value":1506},".settingsExamples.examples.apiKey.value",{"type":43,"tag":197,"props":1508,"children":1509},{"style":216},[1510],{"type":49,"value":269},{"type":43,"tag":52,"props":1512,"children":1514},{"id":1513},"_5-fallback-when-no-schema-is-published",[1515],{"type":49,"value":1516},"5. Fallback when no schema is published",{"type":43,"tag":59,"props":1518,"children":1519},{},[1520,1522,1528],{"type":49,"value":1521},"If ",{"type":43,"tag":116,"props":1523,"children":1525},{"className":1524},[],[1526],{"type":49,"value":1527},"schema\u002Fdsconfig.json",{"type":49,"value":1529}," 404s (older plugins):",{"type":43,"tag":71,"props":1531,"children":1532},{},[1533],{"type":43,"tag":75,"props":1534,"children":1535},{},[1536,1538,1543],{"type":49,"value":1537},"Last resort: the generic structure in ",{"type":43,"tag":63,"props":1539,"children":1540},{},[1541],{"type":49,"value":1542},"grafana-oss",{"type":49,"value":1544}," skill (§ Data source provisioning) can also tell the user the field names are best-effort, not plugin-authoritative.",{"type":43,"tag":1546,"props":1547,"children":1548},"blockquote",{},[1549],{"type":43,"tag":59,"props":1550,"children":1551},{},[1552,1554,1558,1560,1566,1568,1573],{"type":49,"value":1553},"NOTE: ",{"type":43,"tag":63,"props":1555,"children":1556},{},[1557],{"type":49,"value":1542},{"type":49,"value":1559}," skill is available in ",{"type":43,"tag":116,"props":1561,"children":1563},{"className":1562},[],[1564],{"type":49,"value":1565},"grafana-core",{"type":49,"value":1567}," plugin and also available as a standalone skill from the ",{"type":43,"tag":96,"props":1569,"children":1571},{"href":27,"rel":1570},[608],[1572],{"type":49,"value":27},{"type":49,"value":1574}," repository",{"type":43,"tag":52,"props":1576,"children":1578},{"id":1577},"_6-map-each-field-by-its-target",[1579,1581],{"type":49,"value":1580},"6. Map each field by its ",{"type":43,"tag":116,"props":1582,"children":1584},{"className":1583},[],[1585],{"type":49,"value":654},{"type":43,"tag":1587,"props":1588,"children":1589},"table",{},[1590,1624],{"type":43,"tag":1591,"props":1592,"children":1593},"thead",{},[1594],{"type":43,"tag":1595,"props":1596,"children":1597},"tr",{},[1598,1607,1611],{"type":43,"tag":1599,"props":1600,"children":1601},"th",{},[1602],{"type":43,"tag":116,"props":1603,"children":1605},{"className":1604},[],[1606],{"type":49,"value":654},{"type":43,"tag":1599,"props":1608,"children":1609},{},[1610],{"type":49,"value":17},{"type":43,"tag":1599,"props":1612,"children":1613},{},[1614,1616,1622],{"type":49,"value":1615},"Terraform (",{"type":43,"tag":116,"props":1617,"children":1619},{"className":1618},[],[1620],{"type":49,"value":1621},"grafana_data_source",{"type":49,"value":1623},")",{"type":43,"tag":1625,"props":1626,"children":1627},"tbody",{},[1628,1683,1716],{"type":43,"tag":1595,"props":1629,"children":1630},{},[1631,1640,1665],{"type":43,"tag":1632,"props":1633,"children":1634},"td",{},[1635],{"type":43,"tag":116,"props":1636,"children":1638},{"className":1637},[],[1639],{"type":49,"value":40},{"type":43,"tag":1632,"props":1641,"children":1642},{},[1643,1645,1651,1652,1657,1658,1664],{"type":49,"value":1644},"top-level key on the datasource (",{"type":43,"tag":116,"props":1646,"children":1648},{"className":1647},[],[1649],{"type":49,"value":1650},"url",{"type":49,"value":168},{"type":43,"tag":116,"props":1653,"children":1655},{"className":1654},[],[1656],{"type":49,"value":1042},{"type":49,"value":168},{"type":43,"tag":116,"props":1659,"children":1661},{"className":1660},[],[1662],{"type":49,"value":1663},"basicAuthUser",{"type":49,"value":1623},{"type":43,"tag":1632,"props":1666,"children":1667},{},[1668,1670,1675,1677],{"type":49,"value":1669},"top-level argument (",{"type":43,"tag":116,"props":1671,"children":1673},{"className":1672},[],[1674],{"type":49,"value":1650},{"type":49,"value":1676},") \u002F inside ",{"type":43,"tag":116,"props":1678,"children":1680},{"className":1679},[],[1681],{"type":49,"value":1682},"json_data_encoded",{"type":43,"tag":1595,"props":1684,"children":1685},{},[1686,1694,1705],{"type":43,"tag":1632,"props":1687,"children":1688},{},[1689],{"type":43,"tag":116,"props":1690,"children":1692},{"className":1691},[],[1693],{"type":49,"value":669},{"type":43,"tag":1632,"props":1695,"children":1696},{},[1697,1699],{"type":49,"value":1698},"under ",{"type":43,"tag":116,"props":1700,"children":1702},{"className":1701},[],[1703],{"type":49,"value":1704},"jsonData:",{"type":43,"tag":1632,"props":1706,"children":1707},{},[1708,1710],{"type":49,"value":1709},"key inside ",{"type":43,"tag":116,"props":1711,"children":1713},{"className":1712},[],[1714],{"type":49,"value":1715},"json_data_encoded = jsonencode({ … })",{"type":43,"tag":1595,"props":1717,"children":1718},{},[1719,1727,1745],{"type":43,"tag":1632,"props":1720,"children":1721},{},[1722],{"type":43,"tag":116,"props":1723,"children":1725},{"className":1724},[],[1726],{"type":49,"value":676},{"type":43,"tag":1632,"props":1728,"children":1729},{},[1730,1731,1737,1739],{"type":49,"value":1698},{"type":43,"tag":116,"props":1732,"children":1734},{"className":1733},[],[1735],{"type":49,"value":1736},"secureJsonData:",{"type":49,"value":1738}," as ",{"type":43,"tag":116,"props":1740,"children":1742},{"className":1741},[],[1743],{"type":49,"value":1744},"${ENV_VAR}",{"type":43,"tag":1632,"props":1746,"children":1747},{},[1748,1749,1755,1757,1763],{"type":49,"value":1709},{"type":43,"tag":116,"props":1750,"children":1752},{"className":1751},[],[1753],{"type":49,"value":1754},"secure_json_data_encoded = jsonencode({ … })",{"type":49,"value":1756}," via a ",{"type":43,"tag":116,"props":1758,"children":1760},{"className":1759},[],[1761],{"type":49,"value":1762},"sensitive",{"type":49,"value":1764}," variable",{"type":43,"tag":59,"props":1766,"children":1767},{},[1768,1770,1775,1777,1782,1784,1789,1791,1797,1798,1804,1805,1810,1812,1817,1818,1823,1825,1831,1832,1838],{"type":49,"value":1769},"Use each field's ",{"type":43,"tag":116,"props":1771,"children":1773},{"className":1772},[],[1774],{"type":49,"value":543},{"type":49,"value":1776}," for the scalar (",{"type":43,"tag":116,"props":1778,"children":1780},{"className":1779},[],[1781],{"type":49,"value":551},{"type":49,"value":1783}," quoted in YAML, ",{"type":43,"tag":116,"props":1785,"children":1787},{"className":1786},[],[1788],{"type":49,"value":565},{"type":49,"value":1790},"→",{"type":43,"tag":116,"props":1792,"children":1794},{"className":1793},[],[1795],{"type":49,"value":1796},"true",{"type":49,"value":501},{"type":43,"tag":116,"props":1799,"children":1801},{"className":1800},[],[1802],{"type":49,"value":1803},"false",{"type":49,"value":168},{"type":43,"tag":116,"props":1806,"children":1808},{"className":1807},[],[1809],{"type":49,"value":558},{"type":49,"value":1811}," bare). Never inline a real secret. Nested objects (",{"type":43,"tag":116,"props":1813,"children":1815},{"className":1814},[],[1816],{"type":49,"value":1104},{"type":49,"value":168},{"type":43,"tag":116,"props":1819,"children":1821},{"className":1820},[],[1822],{"type":49,"value":1125},{"type":49,"value":1824},") and arrays (",{"type":43,"tag":116,"props":1826,"children":1828},{"className":1827},[],[1829],{"type":49,"value":1830},"allowedHosts",{"type":49,"value":168},{"type":43,"tag":116,"props":1833,"children":1835},{"className":1834},[],[1836],{"type":49,"value":1837},"scopes",{"type":49,"value":1839},") map directly.",{"type":43,"tag":59,"props":1841,"children":1842},{},[1843,1845,1851,1852,1857,1859,1865,1867,1873,1875,1881],{"type":49,"value":1844},"Always set ",{"type":43,"tag":116,"props":1846,"children":1848},{"className":1847},[],[1849],{"type":49,"value":1850},"access",{"type":49,"value":656},{"type":43,"tag":116,"props":1853,"children":1855},{"className":1854},[],[1856],{"type":49,"value":40},{"type":49,"value":1858}," target) and default it to ",{"type":43,"tag":116,"props":1860,"children":1862},{"className":1861},[],[1863],{"type":49,"value":1864},"proxy",{"type":49,"value":1866}," — queries route through the Grafana server (the secure default); only use ",{"type":43,"tag":116,"props":1868,"children":1870},{"className":1869},[],[1871],{"type":49,"value":1872},"direct",{"type":49,"value":1874}," (browser → data source) if the user explicitly asks for it. In Terraform the argument is ",{"type":43,"tag":116,"props":1876,"children":1878},{"className":1877},[],[1879],{"type":49,"value":1880},"access_mode",{"type":49,"value":155},{"type":43,"tag":52,"props":1883,"children":1885},{"id":1884},"_7-ask-the-format-then-emit-the-file",[1886],{"type":49,"value":1887},"7. Ask the format, then emit the file",{"type":43,"tag":59,"props":1889,"children":1890},{},[1891,1896,1898,1909],{"type":43,"tag":63,"props":1892,"children":1893},{},[1894],{"type":49,"value":1895},"Now ask: YAML or Terraform?",{"type":49,"value":1897}," Same fields, different output file and syntax. Don't assume: \"provision X\" may mean either; skip the question only if the user already named a format (\"terraform for X\"). YAML file provisioning is the native, zero-dependency path; Terraform needs the official ",{"type":43,"tag":96,"props":1899,"children":1902},{"href":1900,"rel":1901},"https:\u002F\u002Fregistry.terraform.io\u002Fproviders\u002Fgrafana\u002Fgrafana\u002Flatest",[608],[1903],{"type":43,"tag":116,"props":1904,"children":1906},{"className":1905},[],[1907],{"type":49,"value":1908},"grafana\u002Fgrafana",{"type":49,"value":1910}," provider.",{"type":43,"tag":1587,"props":1912,"children":1913},{},[1914,1930],{"type":43,"tag":1591,"props":1915,"children":1916},{},[1917],{"type":43,"tag":1595,"props":1918,"children":1919},{},[1920,1925],{"type":43,"tag":1599,"props":1921,"children":1922},{},[1923],{"type":49,"value":1924},"Choice",{"type":43,"tag":1599,"props":1926,"children":1927},{},[1928],{"type":49,"value":1929},"Produces",{"type":43,"tag":1625,"props":1931,"children":1932},{},[1933,1953],{"type":43,"tag":1595,"props":1934,"children":1935},{},[1936,1944],{"type":43,"tag":1632,"props":1937,"children":1938},{},[1939],{"type":43,"tag":63,"props":1940,"children":1941},{},[1942],{"type":49,"value":1943},"YAML config file",{"type":43,"tag":1632,"props":1945,"children":1946},{},[1947],{"type":43,"tag":116,"props":1948,"children":1950},{"className":1949},[],[1951],{"type":49,"value":1952},"provisioning\u002Fdatasources\u002F\u003Cname>.yaml",{"type":43,"tag":1595,"props":1954,"children":1955},{},[1956,1963],{"type":43,"tag":1632,"props":1957,"children":1958},{},[1959],{"type":43,"tag":63,"props":1960,"children":1961},{},[1962],{"type":49,"value":23},{"type":43,"tag":1632,"props":1964,"children":1965},{},[1966,1972,1973,1978],{"type":43,"tag":116,"props":1967,"children":1969},{"className":1968},[],[1970],{"type":49,"value":1971},"\u003Cname>.tf",{"type":49,"value":656},{"type":43,"tag":116,"props":1974,"children":1976},{"className":1975},[],[1977],{"type":49,"value":1621},{"type":49,"value":1979}," resource)",{"type":43,"tag":59,"props":1981,"children":1982},{},[1983,1989],{"type":43,"tag":116,"props":1984,"children":1986},{"className":1985},[],[1987],{"type":49,"value":1988},"\u003Cname>",{"type":49,"value":1990}," is just the file's basename — cosmetic, since both loaders read every file in the directory regardless of name. Default it to the plugin name.",{"type":43,"tag":59,"props":1992,"children":1993},{},[1994,1998,2000,2005],{"type":43,"tag":63,"props":1995,"children":1996},{},[1997],{"type":49,"value":17},{"type":49,"value":1999}," → ",{"type":43,"tag":116,"props":2001,"children":2003},{"className":2002},[],[2004],{"type":49,"value":1952},{"type":49,"value":750},{"type":43,"tag":186,"props":2007,"children":2010},{"className":2008,"code":2009,"language":18,"meta":191,"style":191},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","apiVersion: 1\ndatasources:\n  - name: Infinity # must be unique across the instance — collides even with a different datasource type\n    type: yesoreyeram-infinity-datasource # = pluginType from the schema\n    access: proxy # always set; default proxy (route queries through the Grafana server)\n    uid: infinity-ds # also unique and immutable so dashboards can reference it\n    jsonData:\n      auth_method: apiKey # value from validations.allowedValues\n      apiKeyKey: X-API-Key\n      apiKeyType: header\n      allowedHosts:\n        - https:\u002F\u002Fapi.example.com\n    secureJsonData:\n      apiKeyValue: ${API_KEY} # env var ref, never a literal secret\n    editable: false\n",[2011],{"type":43,"tag":116,"props":2012,"children":2013},{"__ignoreMap":191},[2014,2032,2044,2071,2093,2115,2137,2149,2171,2188,2205,2217,2230,2242,2264],{"type":43,"tag":197,"props":2015,"children":2016},{"class":199,"line":200},[2017,2023,2027],{"type":43,"tag":197,"props":2018,"children":2020},{"style":2019},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[2021],{"type":49,"value":2022},"apiVersion",{"type":43,"tag":197,"props":2024,"children":2025},{"style":216},[2026],{"type":49,"value":750},{"type":43,"tag":197,"props":2028,"children":2029},{"style":955},[2030],{"type":49,"value":2031}," 1\n",{"type":43,"tag":197,"props":2033,"children":2034},{"class":199,"line":238},[2035,2040],{"type":43,"tag":197,"props":2036,"children":2037},{"style":2019},[2038],{"type":49,"value":2039},"datasources",{"type":43,"tag":197,"props":2041,"children":2042},{"style":216},[2043],{"type":49,"value":184},{"type":43,"tag":197,"props":2045,"children":2046},{"class":199,"line":272},[2047,2052,2057,2061,2066],{"type":43,"tag":197,"props":2048,"children":2049},{"style":216},[2050],{"type":49,"value":2051},"  -",{"type":43,"tag":197,"props":2053,"children":2054},{"style":2019},[2055],{"type":49,"value":2056}," name",{"type":43,"tag":197,"props":2058,"children":2059},{"style":216},[2060],{"type":49,"value":750},{"type":43,"tag":197,"props":2062,"children":2063},{"style":210},[2064],{"type":49,"value":2065}," Infinity",{"type":43,"tag":197,"props":2067,"children":2068},{"style":276},[2069],{"type":49,"value":2070}," # must be unique across the instance — collides even with a different datasource type\n",{"type":43,"tag":197,"props":2072,"children":2073},{"class":199,"line":795},[2074,2079,2083,2088],{"type":43,"tag":197,"props":2075,"children":2076},{"style":2019},[2077],{"type":49,"value":2078},"    type",{"type":43,"tag":197,"props":2080,"children":2081},{"style":216},[2082],{"type":49,"value":750},{"type":43,"tag":197,"props":2084,"children":2085},{"style":210},[2086],{"type":49,"value":2087}," yesoreyeram-infinity-datasource",{"type":43,"tag":197,"props":2089,"children":2090},{"style":276},[2091],{"type":49,"value":2092}," # = pluginType from the schema\n",{"type":43,"tag":197,"props":2094,"children":2095},{"class":199,"line":804},[2096,2101,2105,2110],{"type":43,"tag":197,"props":2097,"children":2098},{"style":2019},[2099],{"type":49,"value":2100},"    access",{"type":43,"tag":197,"props":2102,"children":2103},{"style":216},[2104],{"type":49,"value":750},{"type":43,"tag":197,"props":2106,"children":2107},{"style":210},[2108],{"type":49,"value":2109}," proxy",{"type":43,"tag":197,"props":2111,"children":2112},{"style":276},[2113],{"type":49,"value":2114}," # always set; default proxy (route queries through the Grafana server)\n",{"type":43,"tag":197,"props":2116,"children":2117},{"class":199,"line":841},[2118,2123,2127,2132],{"type":43,"tag":197,"props":2119,"children":2120},{"style":2019},[2121],{"type":49,"value":2122},"    uid",{"type":43,"tag":197,"props":2124,"children":2125},{"style":216},[2126],{"type":49,"value":750},{"type":43,"tag":197,"props":2128,"children":2129},{"style":210},[2130],{"type":49,"value":2131}," infinity-ds",{"type":43,"tag":197,"props":2133,"children":2134},{"style":276},[2135],{"type":49,"value":2136}," # also unique and immutable so dashboards can reference it\n",{"type":43,"tag":197,"props":2138,"children":2139},{"class":199,"line":877},[2140,2145],{"type":43,"tag":197,"props":2141,"children":2142},{"style":2019},[2143],{"type":49,"value":2144},"    jsonData",{"type":43,"tag":197,"props":2146,"children":2147},{"style":216},[2148],{"type":49,"value":184},{"type":43,"tag":197,"props":2150,"children":2151},{"class":199,"line":913},[2152,2157,2161,2166],{"type":43,"tag":197,"props":2153,"children":2154},{"style":2019},[2155],{"type":49,"value":2156},"      auth_method",{"type":43,"tag":197,"props":2158,"children":2159},{"style":216},[2160],{"type":49,"value":750},{"type":43,"tag":197,"props":2162,"children":2163},{"style":210},[2164],{"type":49,"value":2165}," apiKey",{"type":43,"tag":197,"props":2167,"children":2168},{"style":276},[2169],{"type":49,"value":2170}," # value from validations.allowedValues\n",{"type":43,"tag":197,"props":2172,"children":2173},{"class":199,"line":937},[2174,2179,2183],{"type":43,"tag":197,"props":2175,"children":2176},{"style":2019},[2177],{"type":49,"value":2178},"      apiKeyKey",{"type":43,"tag":197,"props":2180,"children":2181},{"style":216},[2182],{"type":49,"value":750},{"type":43,"tag":197,"props":2184,"children":2185},{"style":210},[2186],{"type":49,"value":2187}," X-API-Key\n",{"type":43,"tag":197,"props":2189,"children":2190},{"class":199,"line":946},[2191,2196,2200],{"type":43,"tag":197,"props":2192,"children":2193},{"style":2019},[2194],{"type":49,"value":2195},"      apiKeyType",{"type":43,"tag":197,"props":2197,"children":2198},{"style":216},[2199],{"type":49,"value":750},{"type":43,"tag":197,"props":2201,"children":2202},{"style":210},[2203],{"type":49,"value":2204}," header\n",{"type":43,"tag":197,"props":2206,"children":2207},{"class":199,"line":985},[2208,2213],{"type":43,"tag":197,"props":2209,"children":2210},{"style":2019},[2211],{"type":49,"value":2212},"      allowedHosts",{"type":43,"tag":197,"props":2214,"children":2215},{"style":216},[2216],{"type":49,"value":184},{"type":43,"tag":197,"props":2218,"children":2219},{"class":199,"line":1010},[2220,2225],{"type":43,"tag":197,"props":2221,"children":2222},{"style":216},[2223],{"type":49,"value":2224},"        -",{"type":43,"tag":197,"props":2226,"children":2227},{"style":210},[2228],{"type":49,"value":2229}," https:\u002F\u002Fapi.example.com\n",{"type":43,"tag":197,"props":2231,"children":2232},{"class":199,"line":1032},[2233,2238],{"type":43,"tag":197,"props":2234,"children":2235},{"style":2019},[2236],{"type":49,"value":2237},"    secureJsonData",{"type":43,"tag":197,"props":2239,"children":2240},{"style":216},[2241],{"type":49,"value":184},{"type":43,"tag":197,"props":2243,"children":2244},{"class":199,"line":1053},[2245,2250,2254,2259],{"type":43,"tag":197,"props":2246,"children":2247},{"style":2019},[2248],{"type":49,"value":2249},"      apiKeyValue",{"type":43,"tag":197,"props":2251,"children":2252},{"style":216},[2253],{"type":49,"value":750},{"type":43,"tag":197,"props":2255,"children":2256},{"style":210},[2257],{"type":49,"value":2258}," ${API_KEY}",{"type":43,"tag":197,"props":2260,"children":2261},{"style":276},[2262],{"type":49,"value":2263}," # env var ref, never a literal secret\n",{"type":43,"tag":197,"props":2265,"children":2266},{"class":199,"line":1074},[2267,2272,2276],{"type":43,"tag":197,"props":2268,"children":2269},{"style":2019},[2270],{"type":49,"value":2271},"    editable",{"type":43,"tag":197,"props":2273,"children":2274},{"style":216},[2275],{"type":49,"value":750},{"type":43,"tag":197,"props":2277,"children":2279},{"style":2278},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[2280],{"type":49,"value":2281}," false\n",{"type":43,"tag":59,"props":2283,"children":2284},{},[2285,2289,2290,2295],{"type":43,"tag":63,"props":2286,"children":2287},{},[2288],{"type":49,"value":23},{"type":49,"value":1999},{"type":43,"tag":116,"props":2291,"children":2293},{"className":2292},[],[2294],{"type":49,"value":1971},{"type":49,"value":750},{"type":43,"tag":186,"props":2297,"children":2301},{"className":2298,"code":2299,"language":2300,"meta":191,"style":191},"language-hcl shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","variable \"api_key\" {\n  type      = string\n  sensitive = true\n}\n\nresource \"grafana_data_source\" \"infinity\" {\n  type        = \"yesoreyeram-infinity-datasource\"\n  name        = \"Infinity\"\n  uid         = \"infinity-ds\"\n  access_mode = \"proxy\" # always set; default proxy (route queries through the Grafana server)\n\n  json_data_encoded = jsonencode({\n    auth_method  = \"apiKey\"\n    apiKeyKey    = \"X-API-Key\"\n    apiKeyType   = \"header\"\n    allowedHosts = [\"https:\u002F\u002Fapi.example.com\"]\n  })\n\n  secure_json_data_encoded = jsonencode({\n    apiKeyValue = var.api_key\n  })\n}\n","hcl",[2302],{"type":43,"tag":116,"props":2303,"children":2304},{"__ignoreMap":191},[2305,2313,2321,2329,2336,2345,2353,2361,2369,2377,2385,2392,2400,2408,2416,2424,2432,2440,2447,2455,2463,2470],{"type":43,"tag":197,"props":2306,"children":2307},{"class":199,"line":200},[2308],{"type":43,"tag":197,"props":2309,"children":2310},{},[2311],{"type":49,"value":2312},"variable \"api_key\" {\n",{"type":43,"tag":197,"props":2314,"children":2315},{"class":199,"line":238},[2316],{"type":43,"tag":197,"props":2317,"children":2318},{},[2319],{"type":49,"value":2320},"  type      = string\n",{"type":43,"tag":197,"props":2322,"children":2323},{"class":199,"line":272},[2324],{"type":43,"tag":197,"props":2325,"children":2326},{},[2327],{"type":49,"value":2328},"  sensitive = true\n",{"type":43,"tag":197,"props":2330,"children":2331},{"class":199,"line":795},[2332],{"type":43,"tag":197,"props":2333,"children":2334},{},[2335],{"type":49,"value":1204},{"type":43,"tag":197,"props":2337,"children":2338},{"class":199,"line":804},[2339],{"type":43,"tag":197,"props":2340,"children":2342},{"emptyLinePlaceholder":2341},true,[2343],{"type":49,"value":2344},"\n",{"type":43,"tag":197,"props":2346,"children":2347},{"class":199,"line":841},[2348],{"type":43,"tag":197,"props":2349,"children":2350},{},[2351],{"type":49,"value":2352},"resource \"grafana_data_source\" \"infinity\" {\n",{"type":43,"tag":197,"props":2354,"children":2355},{"class":199,"line":877},[2356],{"type":43,"tag":197,"props":2357,"children":2358},{},[2359],{"type":49,"value":2360},"  type        = \"yesoreyeram-infinity-datasource\"\n",{"type":43,"tag":197,"props":2362,"children":2363},{"class":199,"line":913},[2364],{"type":43,"tag":197,"props":2365,"children":2366},{},[2367],{"type":49,"value":2368},"  name        = \"Infinity\"\n",{"type":43,"tag":197,"props":2370,"children":2371},{"class":199,"line":937},[2372],{"type":43,"tag":197,"props":2373,"children":2374},{},[2375],{"type":49,"value":2376},"  uid         = \"infinity-ds\"\n",{"type":43,"tag":197,"props":2378,"children":2379},{"class":199,"line":946},[2380],{"type":43,"tag":197,"props":2381,"children":2382},{},[2383],{"type":49,"value":2384},"  access_mode = \"proxy\" # always set; default proxy (route queries through the Grafana server)\n",{"type":43,"tag":197,"props":2386,"children":2387},{"class":199,"line":985},[2388],{"type":43,"tag":197,"props":2389,"children":2390},{"emptyLinePlaceholder":2341},[2391],{"type":49,"value":2344},{"type":43,"tag":197,"props":2393,"children":2394},{"class":199,"line":1010},[2395],{"type":43,"tag":197,"props":2396,"children":2397},{},[2398],{"type":49,"value":2399},"  json_data_encoded = jsonencode({\n",{"type":43,"tag":197,"props":2401,"children":2402},{"class":199,"line":1032},[2403],{"type":43,"tag":197,"props":2404,"children":2405},{},[2406],{"type":49,"value":2407},"    auth_method  = \"apiKey\"\n",{"type":43,"tag":197,"props":2409,"children":2410},{"class":199,"line":1053},[2411],{"type":43,"tag":197,"props":2412,"children":2413},{},[2414],{"type":49,"value":2415},"    apiKeyKey    = \"X-API-Key\"\n",{"type":43,"tag":197,"props":2417,"children":2418},{"class":199,"line":1074},[2419],{"type":43,"tag":197,"props":2420,"children":2421},{},[2422],{"type":49,"value":2423},"    apiKeyType   = \"header\"\n",{"type":43,"tag":197,"props":2425,"children":2426},{"class":199,"line":30},[2427],{"type":43,"tag":197,"props":2428,"children":2429},{},[2430],{"type":49,"value":2431},"    allowedHosts = [\"https:\u002F\u002Fapi.example.com\"]\n",{"type":43,"tag":197,"props":2433,"children":2434},{"class":199,"line":1115},[2435],{"type":43,"tag":197,"props":2436,"children":2437},{},[2438],{"type":49,"value":2439},"  })\n",{"type":43,"tag":197,"props":2441,"children":2442},{"class":199,"line":1136},[2443],{"type":43,"tag":197,"props":2444,"children":2445},{"emptyLinePlaceholder":2341},[2446],{"type":49,"value":2344},{"type":43,"tag":197,"props":2448,"children":2449},{"class":199,"line":1153},[2450],{"type":43,"tag":197,"props":2451,"children":2452},{},[2453],{"type":49,"value":2454},"  secure_json_data_encoded = jsonencode({\n",{"type":43,"tag":197,"props":2456,"children":2457},{"class":199,"line":1162},[2458],{"type":43,"tag":197,"props":2459,"children":2460},{},[2461],{"type":49,"value":2462},"    apiKeyValue = var.api_key\n",{"type":43,"tag":197,"props":2464,"children":2465},{"class":199,"line":1171},[2466],{"type":43,"tag":197,"props":2467,"children":2468},{},[2469],{"type":49,"value":2439},{"type":43,"tag":197,"props":2471,"children":2472},{"class":199,"line":1180},[2473],{"type":43,"tag":197,"props":2474,"children":2475},{},[2476],{"type":49,"value":1204},{"type":43,"tag":59,"props":2478,"children":2479},{},[2480,2485,2487,2497,2499,2504,2505,2510,2511,2517,2519,2525,2527,2533],{"type":43,"tag":116,"props":2481,"children":2483},{"className":2482},[],[2484],{"type":49,"value":1621},{"type":49,"value":2486}," is from the ",{"type":43,"tag":96,"props":2488,"children":2491},{"href":2489,"rel":2490},"https:\u002F\u002Fregistry.terraform.io\u002Fproviders\u002Fgrafana\u002Fgrafana\u002Flatest\u002Fdocs\u002Fresources\u002Fdata_source",[608],[2492],{"type":43,"tag":116,"props":2493,"children":2495},{"className":2494},[],[2496],{"type":49,"value":1908},{"type":49,"value":2498}," provider — the authoritative reference for argument names (",{"type":43,"tag":116,"props":2500,"children":2502},{"className":2501},[],[2503],{"type":49,"value":1880},{"type":49,"value":168},{"type":43,"tag":116,"props":2506,"children":2508},{"className":2507},[],[2509],{"type":49,"value":1682},{"type":49,"value":168},{"type":43,"tag":116,"props":2512,"children":2514},{"className":2513},[],[2515],{"type":49,"value":2516},"secure_json_data_encoded",{"type":49,"value":2518},"). This file is only the resource; the user supplies the ",{"type":43,"tag":116,"props":2520,"children":2522},{"className":2521},[],[2523],{"type":49,"value":2524},"required_providers",{"type":49,"value":2526}," + ",{"type":43,"tag":116,"props":2528,"children":2530},{"className":2529},[],[2531],{"type":49,"value":2532},"provider \"grafana\"",{"type":49,"value":2534}," block and credentials.",{"type":43,"tag":52,"props":2536,"children":2538},{"id":2537},"_8-return-the-file-to-the-user",[2539],{"type":49,"value":2540},"8. Return the file to the user",{"type":43,"tag":59,"props":2542,"children":2543},{},[2544],{"type":49,"value":2545},"Present the complete file in a single code block for the user to copy and paste into their environment — note where it goes:",{"type":43,"tag":71,"props":2547,"children":2548},{},[2549,2564],{"type":43,"tag":75,"props":2550,"children":2551},{},[2552,2556,2557,2562],{"type":43,"tag":63,"props":2553,"children":2554},{},[2555],{"type":49,"value":17},{"type":49,"value":1999},{"type":43,"tag":116,"props":2558,"children":2560},{"className":2559},[],[2561],{"type":49,"value":1952},{"type":49,"value":2563}," (apply on Grafana start or a provisioning reload).",{"type":43,"tag":75,"props":2565,"children":2566},{},[2567,2571,2573,2579],{"type":43,"tag":63,"props":2568,"children":2569},{},[2570],{"type":49,"value":23},{"type":49,"value":2572}," → their Terraform config, applied with ",{"type":43,"tag":116,"props":2574,"children":2576},{"className":2575},[],[2577],{"type":49,"value":2578},"terraform apply",{"type":49,"value":155},{"type":43,"tag":59,"props":2581,"children":2582},{},[2583],{"type":49,"value":2584},"Optionally, tell them how to confirm it worked once applied:",{"type":43,"tag":186,"props":2586,"children":2588},{"className":188,"code":2587,"language":190,"meta":191,"style":191},"curl -s https:\u002F\u002Fgrafana.example.com\u002Fapi\u002Fdatasources\u002Fuid\u002F\u003Cuid>\u002Fhealth \\\n  -H \"Authorization: Bearer \u003Ctoken>\"\n# { \"status\": \"OK\" }    → working\n# { \"status\": \"ERROR\" } → URL unreachable or auth misconfigured\n",[2589],{"type":43,"tag":116,"props":2590,"children":2591},{"__ignoreMap":191},[2592,2637,2658,2666],{"type":43,"tag":197,"props":2593,"children":2594},{"class":199,"line":200},[2595,2599,2603,2608,2613,2618,2623,2628,2633],{"type":43,"tag":197,"props":2596,"children":2597},{"style":204},[2598],{"type":49,"value":207},{"type":43,"tag":197,"props":2600,"children":2601},{"style":210},[2602],{"type":49,"value":213},{"type":43,"tag":197,"props":2604,"children":2605},{"style":210},[2606],{"type":49,"value":2607}," https:\u002F\u002Fgrafana.example.com\u002Fapi\u002Fdatasources\u002Fuid\u002F",{"type":43,"tag":197,"props":2609,"children":2610},{"style":216},[2611],{"type":49,"value":2612},"\u003C",{"type":43,"tag":197,"props":2614,"children":2615},{"style":210},[2616],{"type":49,"value":2617},"ui",{"type":43,"tag":197,"props":2619,"children":2620},{"style":232},[2621],{"type":49,"value":2622},"d",{"type":43,"tag":197,"props":2624,"children":2625},{"style":216},[2626],{"type":49,"value":2627},">",{"type":43,"tag":197,"props":2629,"children":2630},{"style":210},[2631],{"type":49,"value":2632},"\u002Fhealth",{"type":43,"tag":197,"props":2634,"children":2635},{"style":232},[2636],{"type":49,"value":235},{"type":43,"tag":197,"props":2638,"children":2639},{"class":199,"line":238},[2640,2645,2649,2654],{"type":43,"tag":197,"props":2641,"children":2642},{"style":210},[2643],{"type":49,"value":2644},"  -H",{"type":43,"tag":197,"props":2646,"children":2647},{"style":216},[2648],{"type":49,"value":219},{"type":43,"tag":197,"props":2650,"children":2651},{"style":210},[2652],{"type":49,"value":2653},"Authorization: Bearer \u003Ctoken>",{"type":43,"tag":197,"props":2655,"children":2656},{"style":216},[2657],{"type":49,"value":525},{"type":43,"tag":197,"props":2659,"children":2660},{"class":199,"line":272},[2661],{"type":43,"tag":197,"props":2662,"children":2663},{"style":276},[2664],{"type":49,"value":2665},"# { \"status\": \"OK\" }    → working\n",{"type":43,"tag":197,"props":2667,"children":2668},{"class":199,"line":795},[2669],{"type":43,"tag":197,"props":2670,"children":2671},{"style":276},[2672],{"type":49,"value":2673},"# { \"status\": \"ERROR\" } → URL unreachable or auth misconfigured\n",{"type":43,"tag":59,"props":2675,"children":2676},{},[2677,2679,2685,2687,2692],{"type":49,"value":2678},"Or verify in the UI: visit ",{"type":43,"tag":116,"props":2680,"children":2682},{"className":2681},[],[2683],{"type":49,"value":2684},"\u003Chttps:\u002F\u002Fgrafana.example.com>\u002Fconnections\u002Fdatasources\u002Fedit\u002F\u003Cuid>",{"type":49,"value":2686}," and click ",{"type":43,"tag":63,"props":2688,"children":2689},{},[2690],{"type":49,"value":2691},"Test",{"type":49,"value":155},{"type":43,"tag":44,"props":2694,"children":2696},{"id":2695},"convert-an-existing-data-source",[2697],{"type":49,"value":101},{"type":43,"tag":59,"props":2699,"children":2700},{},[2701,2703,2708,2709,2716],{"type":49,"value":2702},"To codify a data source already configured in a running instance, read its config through the ",{"type":43,"tag":63,"props":2704,"children":2705},{},[2706],{"type":49,"value":2707},"Grafana MCP server",{"type":49,"value":656},{"type":43,"tag":96,"props":2710,"children":2713},{"href":2711,"rel":2712},"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fmcp-grafana",[608],[2714],{"type":49,"value":2715},"grafana\u002Fmcp-grafana",{"type":49,"value":2717},").",{"type":43,"tag":59,"props":2719,"children":2720},{},[2721,2726,2728,2733,2735,2740],{"type":43,"tag":63,"props":2722,"children":2723},{},[2724],{"type":49,"value":2725},"Precondition:",{"type":49,"value":2727}," the Grafana MCP server is connected with its ",{"type":43,"tag":63,"props":2729,"children":2730},{},[2731],{"type":49,"value":2732},"Datasources",{"type":49,"value":2734}," toolset enabled (it holds the instance credentials). ",{"type":43,"tag":63,"props":2736,"children":2737},{},[2738],{"type":49,"value":2739},"If it isn't available, do not support this path",{"type":49,"value":2741}," — never ask the user to paste a Grafana token into chat. Fall back to the from-scratch Workflow instead.",{"type":43,"tag":2743,"props":2744,"children":2745},"ol",{},[2746,2782,2838,2892],{"type":43,"tag":75,"props":2747,"children":2748},{},[2749,2751,2757,2759,2765,2767,2773,2774,2780],{"type":49,"value":2750},"Find the data source with the MCP tools — ",{"type":43,"tag":116,"props":2752,"children":2754},{"className":2753},[],[2755],{"type":49,"value":2756},"list_datasources",{"type":49,"value":2758}," to browse, then ",{"type":43,"tag":116,"props":2760,"children":2762},{"className":2761},[],[2763],{"type":49,"value":2764},"get_datasource",{"type":49,"value":2766}," (by ",{"type":43,"tag":116,"props":2768,"children":2770},{"className":2769},[],[2771],{"type":49,"value":2772},"uid",{"type":49,"value":139},{"type":43,"tag":116,"props":2775,"children":2777},{"className":2776},[],[2778],{"type":49,"value":2779},"name",{"type":49,"value":2781},") for the full config.",{"type":43,"tag":75,"props":2783,"children":2784},{},[2785,2787,2792,2794,2799,2800,2805,2806,2811,2812,2817,2818,2823,2824,2829,2831,2836],{"type":49,"value":2786},"The result carries every ",{"type":43,"tag":63,"props":2788,"children":2789},{},[2790],{"type":49,"value":2791},"non-secret",{"type":49,"value":2793}," field directly: ",{"type":43,"tag":116,"props":2795,"children":2797},{"className":2796},[],[2798],{"type":49,"value":958},{"type":49,"value":168},{"type":43,"tag":116,"props":2801,"children":2803},{"className":2802},[],[2804],{"type":49,"value":2772},{"type":49,"value":168},{"type":43,"tag":116,"props":2807,"children":2809},{"className":2808},[],[2810],{"type":49,"value":1650},{"type":49,"value":168},{"type":43,"tag":116,"props":2813,"children":2815},{"className":2814},[],[2816],{"type":49,"value":1850},{"type":49,"value":168},{"type":43,"tag":116,"props":2819,"children":2821},{"className":2820},[],[2822],{"type":49,"value":1042},{"type":49,"value":168},{"type":43,"tag":116,"props":2825,"children":2827},{"className":2826},[],[2828],{"type":49,"value":1663},{"type":49,"value":2830},", and the full ",{"type":43,"tag":116,"props":2832,"children":2834},{"className":2833},[],[2835],{"type":49,"value":669},{"type":49,"value":2837}," object. Copy them as-is.",{"type":43,"tag":75,"props":2839,"children":2840},{},[2841,2846,2848,2854,2856,2862,2864,2870,2872,2877,2879,2884,2886,2891],{"type":43,"tag":63,"props":2842,"children":2843},{},[2844],{"type":49,"value":2845},"Secrets are never returned.",{"type":49,"value":2847}," The ",{"type":43,"tag":116,"props":2849,"children":2851},{"className":2850},[],[2852],{"type":49,"value":2853},"secureJsonFields",{"type":49,"value":2855}," map lists ",{"type":43,"tag":2857,"props":2858,"children":2859},"em",{},[2860],{"type":49,"value":2861},"which",{"type":49,"value":2863}," secret keys are set (e.g. ",{"type":43,"tag":116,"props":2865,"children":2867},{"className":2866},[],[2868],{"type":49,"value":2869},"{\"apiKeyValue\": true}",{"type":49,"value":2871},") without their values. Emit an ",{"type":43,"tag":116,"props":2873,"children":2875},{"className":2874},[],[2876],{"type":49,"value":1744},{"type":49,"value":2878}," placeholder in ",{"type":43,"tag":116,"props":2880,"children":2882},{"className":2881},[],[2883],{"type":49,"value":676},{"type":49,"value":2885}," for each key it reports ",{"type":43,"tag":116,"props":2887,"children":2889},{"className":2888},[],[2890],{"type":49,"value":1796},{"type":49,"value":155},{"type":43,"tag":75,"props":2893,"children":2894},{},[2895,2897,2902,2904,2909,2911,2916],{"type":49,"value":2896},"Cross-check against the schema (step 4) to confirm secret key names and ",{"type":43,"tag":116,"props":2898,"children":2900},{"className":2899},[],[2901],{"type":49,"value":654},{"type":49,"value":2903}," placement, then continue at ",{"type":43,"tag":63,"props":2905,"children":2906},{},[2907],{"type":49,"value":2908},"step 6",{"type":49,"value":2910}," (map) and ",{"type":43,"tag":63,"props":2912,"children":2913},{},[2914],{"type":49,"value":2915},"step 7",{"type":49,"value":2917}," (emit) as normal.",{"type":43,"tag":44,"props":2919,"children":2921},{"id":2920},"related",[2922],{"type":49,"value":2923},"Related",{"type":43,"tag":71,"props":2925,"children":2926},{},[2927],{"type":43,"tag":75,"props":2928,"children":2929},{},[2930,2935],{"type":43,"tag":96,"props":2931,"children":2933},{"href":2932},"..\u002F..\u002Fgrafana-core\u002Fgrafana-oss\u002FSKILL.md",[2934],{"type":49,"value":1542},{"type":49,"value":2936}," — generic data source \u002F dashboard provisioning structure and provisioning paths.",{"type":43,"tag":2938,"props":2939,"children":2940},"style",{},[2941],{"type":49,"value":2942},"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":2944,"total":3059},[2945,2962,2979,2995,3012,3028,3046],{"slug":2946,"name":2946,"fn":2947,"description":2948,"org":2949,"tags":2950,"stars":26,"repoUrl":27,"updatedAt":2961},"adaptive-metrics","optimize Grafana Cloud metrics costs","Cut Grafana Cloud Metrics cost by shrinking active-series count with Adaptive Metrics aggregation rules — auto-recommendations from query history, custom exact\u002Fregex rules, label-drop config, unused-metric detection, and Alloy remote_write fallback. Use when investigating a high Mimir\u002FGrafana Cloud bill, hunting high-cardinality labels (`pod_uid`, `service_instance_id`, `version`), pre-aggregating counters\u002Fgauges, dropping unused metrics, or measuring `grafanacloud_instance_active_series` before\u002Fafter — even when the user says \"reduce cardinality\", \"too many series\", \"metrics spend\", \"active series count is exploding\", or \"drop the version label\" without naming Adaptive Metrics.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2951,2954,2955,2958],{"name":2952,"slug":2953,"type":15},"Cost Optimization","cost-optimization",{"name":9,"slug":8,"type":15},{"name":2956,"slug":2957,"type":15},"Metrics","metrics",{"name":2959,"slug":2960,"type":15},"Observability","observability","2026-07-12T07:44:27.451068",{"slug":2963,"name":2963,"fn":2964,"description":2965,"org":2966,"tags":2967,"stars":26,"repoUrl":27,"updatedAt":2978},"admin","manage Grafana Cloud accounts and RBAC","Manage Grafana Cloud accounts — organizations, stacks, RBAC roles and assignments, SSO\u002FSAML\u002FOAuth\u002FGitHub auth, service accounts for CI\u002FCD, user invites, team membership, and API-driven provisioning. Creates stacks via the Cloud API, mints service-account tokens, applies role assignments, configures SSO providers, and provisions teams\u002Ffolders\u002Fdashboards via Terraform. Use when managing Grafana Cloud access, configuring SSO\u002FSAML\u002FOAuth, setting up service accounts for Terraform\u002FCI\u002FCD, assigning RBAC roles, inviting users, managing multiple stacks or organizations, provisioning cloud resources via API or Terraform, or auditing admin actions — even when the user says \"set up SSO\", \"create a stack\", \"make a service account\", or \"onboard a team\" without explicitly saying \"admin\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2968,2971,2974,2975],{"name":2969,"slug":2970,"type":15},"Access Control","access-control",{"name":2972,"slug":2973,"type":15},"Auth","auth",{"name":9,"slug":8,"type":15},{"name":2976,"slug":2977,"type":15},"Operations","operations","2026-07-12T07:44:12.078436",{"slug":2980,"name":2980,"fn":2981,"description":2982,"org":2983,"tags":2984,"stars":26,"repoUrl":27,"updatedAt":2994},"admission-control","implement admission control webhooks","Use when the user asks to \"write a validator\", \"add validation\", \"implement admission control\", \"write a mutating webhook\", \"add a mutation handler\", \"validate incoming resources\", \"implement admission logic\", \"add admission webhooks\", \"write ingress validation\", or asks how to validate or mutate resources before they are persisted in a grafana-app-sdk app. Provides guidance on implementing validation and mutation admission handlers for grafana-app-sdk apps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2985,2988,2991],{"name":2986,"slug":2987,"type":15},"Architecture","architecture",{"name":2989,"slug":2990,"type":15},"Security","security",{"name":2992,"slug":2993,"type":15},"Validation","validation","2026-07-12T07:45:06.148973",{"slug":2996,"name":2996,"fn":2997,"description":2998,"org":2999,"tags":3000,"stars":26,"repoUrl":27,"updatedAt":3011},"alerting-irm","configure Grafana Alerting and Incident Management","Configure Grafana Alerting, Incident Response Management (IRM), and SLOs end-to-end — provisions Grafana-managed and data-source-managed alert rules, contact points (Slack\u002FPagerDuty\u002Femail\u002Fwebhook), notification policies with hierarchical matchers, silences, mute timings, on-call schedules and escalation chains, incident-management integrations, and SLOs with multi-window burn-rate alerts. Use when configuring alerts, debugging notification routing, setting up on-call rotations, declaring or managing incidents, defining SLOs, provisioning alerting via YAML or API, picking matchers for a notification policy, building a PagerDuty\u002FSlack webhook receiver, or troubleshooting why an alert isn't firing — even when the user says \"page me on errors\", \"alert me when X happens\", \"route this to the platform team\", or \"set up an SLO\" without naming Alerting or IRM.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3001,3004,3005,3008],{"name":3002,"slug":3003,"type":15},"Alerting","alerting",{"name":9,"slug":8,"type":15},{"name":3006,"slug":3007,"type":15},"Incident Response","incident-response",{"name":3009,"slug":3010,"type":15},"Monitoring","monitoring","2026-07-12T07:44:02.393397",{"slug":3013,"name":3013,"fn":3014,"description":3015,"org":3016,"tags":3017,"stars":26,"repoUrl":27,"updatedAt":3027},"alloy","build unified telemetry pipelines with Grafana Alloy","Build a unified telemetry pipeline with Grafana Alloy — one OpenTelemetry-compatible binary that collects metrics, logs, traces, and profiles and ships to Grafana Cloud \u002F Prometheus \u002F Loki \u002F Tempo \u002F Pyroscope. Covers the Alloy config language (blocks, `sys.env`, component refs), `prometheus.scrape` → `remote_write`, `loki.source.file` + `loki.process` → `loki.write`, `otelcol.receiver.otlp` → `otelcol.exporter.otlp`, `pyroscope.scrape`, K8s \u002F Docker \u002F EC2 discovery, relabeling, modules (`import.file\u002Fgit\u002Fhttp`), clustering, Fleet Management `remotecfg`, the Alloy UI at `:12345`, and `alloy fmt` \u002F `alloy validate`. Use when writing a `config.alloy`, replacing Grafana Agent \u002F OTel Collector, scraping K8s pods, parsing logs, ingesting OTLP, or debugging \"Alloy isn't sending anything\" — even when the user says \"set up the agent\", \"write me a scrape config\", \"drop these logs before sending\", or \"OTel collector config\" without naming Alloy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3018,3019,3022,3023,3024],{"name":9,"slug":8,"type":15},{"name":3020,"slug":3021,"type":15},"Logs","logs",{"name":2956,"slug":2957,"type":15},{"name":2959,"slug":2960,"type":15},{"name":3025,"slug":3026,"type":15},"OpenTelemetry","opentelemetry","2026-07-12T07:43:54.817139",{"slug":3029,"name":3029,"fn":3030,"description":3031,"org":3032,"tags":3033,"stars":26,"repoUrl":27,"updatedAt":3045},"app-observability","monitor application performance in Grafana Cloud","Get RED metrics + service maps + frontend RUM + AI\u002FLLM monitoring out of Grafana Cloud — Application Observability (`traces_spanmetrics_*` from OTel traces, p50\u002Fp95\u002Fp99 latency, exemplar-to-trace, traces-to-logs \u002F profiles), Frontend Observability with the Faro Web SDK (Core Web Vitals, session replay, `pushError`, React + router integration, `TracingInstrumentation` for browser → backend trace correlation), and AI Observability via OpenLIT (token \u002F cost \u002F latency, GPU, hallucination + toxicity evals). Use when standing up APM for a service, wiring an Alloy OTLP receiver + forwarding to Cloud, instrumenting a React frontend for RUM, debugging why service-map edges are missing, monitoring LLM cost drift, or correlating a frontend error to its backend trace — even when the user says \"set up APM\", \"show service map\", \"monitor browser perf\", \"session replay\", \"RUM SDK\", or \"watch our OpenAI bill\" without naming App \u002F Frontend \u002F AI Observability.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3034,3037,3040,3041,3044],{"name":3035,"slug":3036,"type":15},"APM","apm",{"name":3038,"slug":3039,"type":15},"Distributed Tracing","distributed-tracing",{"name":9,"slug":8,"type":15},{"name":3042,"slug":3043,"type":15},"LLM","llm",{"name":2959,"slug":2960,"type":15},"2026-07-12T07:44:34.500406",{"slug":3047,"name":3047,"fn":3048,"description":3049,"org":3050,"tags":3051,"stars":26,"repoUrl":27,"updatedAt":3058},"app-sdk-concepts","scaffold and configure Grafana apps","Use when starting any grafana-app-sdk work — scaffolding a Grafana app, initializing a Grafana App Platform app, picking a deployment mode (standalone operator \u002F grafana\u002Fapps \u002F frontend-only), wiring app-specific config, or onboarding to the SDK. Covers `grafana-app-sdk` CLI install, `project init` per deployment mode, project layout, the schema-centric workflow (CUE kinds → generated code → reconciler\u002Fadmission logic), and `SpecificConfig` for env-driven app configuration. Use even if the user just says \"make a new app\", \"Grafana app platform\", \"kinds and watchers\", \"operator scaffold\", or asks about `apps\u002F` inside the Grafana repo, without naming the SDK explicitly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3052,3053,3054,3057],{"name":2986,"slug":2987,"type":15},{"name":20,"slug":21,"type":15},{"name":3055,"slug":3056,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},"2026-07-12T07:45:08.595757",48,{"items":3061,"total":3238},[3062,3077,3094,3113,3128,3142,3155,3170,3187,3200,3213,3226],{"slug":3063,"name":3063,"fn":3064,"description":3065,"org":3066,"tags":3067,"stars":3074,"repoUrl":3075,"updatedAt":3076},"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},[3068,3069,3072,3073],{"name":3038,"slug":3039,"type":15},{"name":3070,"slug":3071,"type":15},"Frontend","frontend",{"name":3009,"slug":3010,"type":15},{"name":2959,"slug":2960,"type":15},1103,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Ffaro-web-sdk","2026-07-12T07:43:24.63314",{"slug":3078,"name":3078,"fn":3079,"description":3080,"org":3081,"tags":3082,"stars":3091,"repoUrl":3092,"updatedAt":3093},"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},[3083,3086,3089,3090],{"name":3084,"slug":3085,"type":15},"API Development","api-development",{"name":3087,"slug":3088,"type":15},"Authentication","authentication",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},1056,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fgrafana-infinity-datasource","2026-07-12T07:43:25.939136",{"slug":3095,"name":3095,"fn":3096,"description":3097,"org":3098,"tags":3099,"stars":3091,"repoUrl":3092,"updatedAt":3112},"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},[3100,3103,3106,3107,3110],{"name":3101,"slug":3102,"type":15},"CSV","csv",{"name":3104,"slug":3105,"type":15},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":15},{"name":3108,"slug":3109,"type":15},"GraphQL","graphql",{"name":3111,"slug":715,"type":15},"JSON","2026-07-15T05:34:05.773947",{"slug":3114,"name":3114,"fn":3115,"description":3116,"org":3117,"tags":3118,"stars":3125,"repoUrl":3126,"updatedAt":3127},"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},[3119,3122,3123,3124],{"name":3120,"slug":3121,"type":15},"Agents","agents",{"name":9,"slug":8,"type":15},{"name":3009,"slug":3010,"type":15},{"name":2959,"slug":2960,"type":15},430,"https:\u002F\u002Fgithub.com\u002Fgrafana\u002Fgcx","2026-07-25T05:30:40.29622",{"slug":3129,"name":3129,"fn":3130,"description":3131,"org":3132,"tags":3133,"stars":3125,"repoUrl":3126,"updatedAt":3141},"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},[3134,3135,3136,3139,3140],{"name":3120,"slug":3121,"type":15},{"name":9,"slug":8,"type":15},{"name":3137,"slug":3138,"type":15},"Instrumentation","instrumentation",{"name":3042,"slug":3043,"type":15},{"name":2959,"slug":2960,"type":15},"2026-07-31T05:53:52.580237",{"slug":3143,"name":3143,"fn":3144,"description":3145,"org":3146,"tags":3147,"stars":3125,"repoUrl":3126,"updatedAt":3154},"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},[3148,3149,3152,3153],{"name":3120,"slug":3121,"type":15},{"name":3150,"slug":3151,"type":15},"Evals","evals",{"name":9,"slug":8,"type":15},{"name":2959,"slug":2960,"type":15},"2026-07-31T05:53:53.576347",{"slug":3156,"name":3156,"fn":3157,"description":3158,"org":3159,"tags":3160,"stars":3125,"repoUrl":3126,"updatedAt":3169},"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},[3161,3162,3163,3166],{"name":3120,"slug":3121,"type":15},{"name":9,"slug":8,"type":15},{"name":3164,"slug":3165,"type":15},"QA","qa",{"name":3167,"slug":3168,"type":15},"Testing","testing","2026-07-31T05:53:51.62785",{"slug":3171,"name":3171,"fn":3172,"description":3173,"org":3174,"tags":3175,"stars":3125,"repoUrl":3126,"updatedAt":3186},"create-dashboard","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},[3176,3179,3182,3185],{"name":3177,"slug":3178,"type":15},"Dashboards","dashboards",{"name":3180,"slug":3181,"type":15},"Data Visualization","data-visualization",{"name":3183,"slug":3184,"type":15},"Design","design",{"name":9,"slug":8,"type":15},"2026-07-25T05:30:46.289717",{"slug":3188,"name":3188,"fn":3189,"description":3190,"org":3191,"tags":3192,"stars":3125,"repoUrl":3126,"updatedAt":3199},"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},[3193,3196,3197,3198],{"name":3194,"slug":3195,"type":15},"Debugging","debugging",{"name":9,"slug":8,"type":15},{"name":3006,"slug":3007,"type":15},{"name":2959,"slug":2960,"type":15},"2026-07-18T05:11:10.445428",{"slug":3201,"name":3201,"fn":3202,"description":3203,"org":3204,"tags":3205,"stars":3125,"repoUrl":3126,"updatedAt":3212},"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},[3206,3207,3208,3211],{"name":3194,"slug":3195,"type":15},{"name":9,"slug":8,"type":15},{"name":3209,"slug":3210,"type":15},"Graph Analysis","graph-analysis",{"name":2959,"slug":2960,"type":15},"2026-07-25T05:30:39.380934",{"slug":3214,"name":3214,"fn":3215,"description":3216,"org":3217,"tags":3218,"stars":3125,"repoUrl":3126,"updatedAt":3225},"gcx","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},[3219,3222,3223,3224],{"name":3220,"slug":3221,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":3009,"slug":3010,"type":15},{"name":2976,"slug":2977,"type":15},"2026-07-31T05:53:50.587304",{"slug":3227,"name":3227,"fn":3228,"description":3229,"org":3230,"tags":3231,"stars":3125,"repoUrl":3126,"updatedAt":3237},"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},[3232,3233,3234],{"name":3220,"slug":3221,"type":15},{"name":9,"slug":8,"type":15},{"name":3235,"slug":3236,"type":15},"Presentations","presentations","2026-07-25T05:30:45.282458",80]