From 25e96f56edfe707c66d07d9087bff221645e1632 Mon Sep 17 00:00:00 2001 From: Timur Olzhabayev Date: Thu, 30 Apr 2026 09:46:53 +0200 Subject: [PATCH] docs: sync metadata.md with latest plugin.schema.json Adds the new `docsPath` property that was added upstream to grafana/grafana's plugin.schema.json. Generated via `npm -w website run prebuild`. --- docusaurus/docs/reference/metadata.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docusaurus/docs/reference/metadata.md b/docusaurus/docs/reference/metadata.md index eef89cdb4d..5d00801192 100644 --- a/docusaurus/docs/reference/metadata.md +++ b/docusaurus/docs/reference/metadata.md @@ -33,6 +33,7 @@ The `plugin.json` file is required for all plugins. When Grafana starts, it scan | **buildMode** | `string` | The build mode of the plugin. This field is set automatically at build time, so it should not be provided manually.
| | | **builtIn** | `boolean` | [internal only] Indicates whether the plugin is developed and shipped as part of Grafana. Also known as a 'core plugin'.
| | | **category** | `string` | Plugin category used on the Add new connection page. Can be one from the list: "tsdb", "logging", "cloud", "tracing", "profiling", "sql", "enterprise", "iot", "other", empty string or custom string
| | +| **docsPath** | `string` | Path to the directory containing plugin documentation.
| | | [**enterpriseFeatures**](#enterprisefeatures) | `object` | Grafana Enterprise specific features
| | | **executable** | `string` | The first part of the file name of the backend component executable. There can be multiple executables built for different operating system and architecture. Grafana will check for executables named `_<$GOOS>_<.exe for Windows>`, e.g. `plugin_linux_amd64`. Combination of $GOOS and $GOARCH can be found here: https://golang.org/doc/install/source#environment.
| | | **hideFromList** | `boolean` | [internal only] Excludes the plugin from listings in Grafana's UI. Only allowed for `builtIn` plugins.
| |