From ec950973a60c9a7cdc75cfff6a2fae915edb4b85 Mon Sep 17 00:00:00 2001 From: Marcus Andersson Date: Thu, 16 Apr 2026 16:49:20 +0200 Subject: [PATCH] Docs: Sync metadata.md with latest plugin.schema.json Co-Authored-By: Claude Opus 4.6 --- docusaurus/docs/reference/metadata.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus/docs/reference/metadata.md b/docusaurus/docs/reference/metadata.md index 16a5d51313..eef89cdb4d 100644 --- a/docusaurus/docs/reference/metadata.md +++ b/docusaurus/docs/reference/metadata.md @@ -39,7 +39,7 @@ The `plugin.json` file is required for all plugins. When Grafana starts, it scan | [**includes**](#includes) | `object[]` | Resources to include in plugin.
| | | **logs** | `boolean` | For data source plugins, if the plugin supports logs. It may be used to filter logs only features.
| | | **metrics** | `boolean` | For data source plugins, if the plugin supports metric queries. Used to enable the plugin in the panel editor.
| | -| **multiValueFilterOperators** | `boolean` | For data source plugins, if the plugin supports multi value operators in adhoc filters.
| | +| **multiValueFilterOperators** | `boolean` | For data source plugins, if the plugin supports multi value operators in filters.
| | | **pascalName** | `string` | [internal only] The PascalCase name for the plugin. Used for creating machine-friendly identifiers, typically in code generation. If not provided, defaults to name, but title-cased and sanitized (only alphabetical characters allowed).
Pattern: `^([A-Z][a-zA-Z]{1,62})$`
| | | **preload** | `boolean` | Initialize plugin on startup. By default, the plugin initializes on first use, but when preload is set to true the plugin loads when the Grafana web app loads the first time. Only applicable to app plugins. When setting to `true`, implement [frontend code splitting](https://grafana.com/developers/plugin-tools/get-started/best-practices#app-plugins) to minimise performance implications.
| | | **suggestions** | `boolean` | For panel plugins. If set to true, the plugin's suggestions supplier will be invoked and any suggestions returned will be included in the Suggestions pane in the Panel Editor.
| |