mirror of https://github.com/grafana/grafana.git
MetricsDrilldown: Advance `exploreMetricsUseExternalAppPlugin` to GA (#103653)
chore: advance `exploreMetricsUseExternalAppPlugin` to GA
This commit is contained in:
parent
97897b796e
commit
ac0c1ece79
|
|
@ -85,6 +85,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
|||
| `azureMonitorEnableUserAuth` | Enables user auth for Azure Monitor datasource only | Yes |
|
||||
| `alertingNotificationsStepMode` | Enables simplified step mode in the notifications section | Yes |
|
||||
| `lokiLabelNamesQueryApi` | Defaults to using the Loki `/labels` API instead of `/series` | Yes |
|
||||
| `exploreMetricsUseExternalAppPlugin` | Use the externalized Grafana Metrics Drilldown (formerly known as Explore Metrics) app plugin | Yes |
|
||||
| `unifiedNavbars` | Enables unified navbars | |
|
||||
|
||||
## Public preview feature toggles
|
||||
|
|
@ -113,7 +114,6 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
|||
| `elasticsearchCrossClusterSearch` | Enables cross cluster search in the Elasticsearch datasource |
|
||||
| `improvedExternalSessionHandlingSAML` | Enables improved support for SAML external sessions. Ensure the NameID format is correctly configured in Grafana for SAML Single Logout to function properly. |
|
||||
| `teamHttpHeadersMimir` | Enables LBAC for datasources for Mimir to apply LBAC filtering of metrics to the client requests for users in teams |
|
||||
| `exploreMetricsUseExternalAppPlugin` | Use the externalized Grafana Metrics Drilldown (formerly known as Explore Metrics) app plugin |
|
||||
| `alertRuleRestore` | Enables the alert rule restore feature |
|
||||
| `azureMonitorLogsBuilderEditor` | Enables the logs builder mode for the Azure Monitor data source |
|
||||
|
||||
|
|
|
|||
|
|
@ -915,6 +915,7 @@ export interface FeatureToggles {
|
|||
elasticsearchImprovedParsing?: boolean;
|
||||
/**
|
||||
* Use the externalized Grafana Metrics Drilldown (formerly known as Explore Metrics) app plugin
|
||||
* @default true
|
||||
*/
|
||||
exploreMetricsUseExternalAppPlugin?: boolean;
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1554,8 +1554,9 @@ var (
|
|||
{
|
||||
Name: "exploreMetricsUseExternalAppPlugin",
|
||||
Description: "Use the externalized Grafana Metrics Drilldown (formerly known as Explore Metrics) app plugin",
|
||||
Stage: FeatureStagePublicPreview,
|
||||
Stage: FeatureStageGeneralAvailability,
|
||||
Owner: grafanaObservabilityMetricsSquad,
|
||||
Expression: "true",
|
||||
FrontendOnly: false,
|
||||
RequiresRestart: true,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -204,7 +204,7 @@ templateVariablesUsesCombobox,experimental,@grafana/grafana-frontend-platform,fa
|
|||
ABTestFeatureToggleB,experimental,@grafana/sharing-squad,false,false,false
|
||||
grafanaAdvisor,experimental,@grafana/plugins-platform-backend,false,false,false
|
||||
elasticsearchImprovedParsing,experimental,@grafana/aws-datasources,false,false,false
|
||||
exploreMetricsUseExternalAppPlugin,preview,@grafana/observability-metrics,false,true,false
|
||||
exploreMetricsUseExternalAppPlugin,GA,@grafana/observability-metrics,false,true,false
|
||||
datasourceConnectionsTab,privatePreview,@grafana/plugins-platform-backend,false,false,true
|
||||
fetchRulesUsingPost,experimental,@grafana/alerting-squad,false,false,false
|
||||
newLogsPanel,experimental,@grafana/observability-logs,false,false,true
|
||||
|
|
|
|||
|
|
|
@ -1117,14 +1117,18 @@
|
|||
{
|
||||
"metadata": {
|
||||
"name": "exploreMetricsUseExternalAppPlugin",
|
||||
"resourceVersion": "1743693517832",
|
||||
"creationTimestamp": "2025-04-03T15:18:37Z"
|
||||
"resourceVersion": "1744146547481",
|
||||
"creationTimestamp": "2025-04-03T15:18:37Z",
|
||||
"annotations": {
|
||||
"grafana.app/updatedTimestamp": "2025-04-08 21:09:07.481769 +0000 UTC"
|
||||
}
|
||||
},
|
||||
"spec": {
|
||||
"description": "Use the externalized Grafana Metrics Drilldown (formerly known as Explore Metrics) app plugin",
|
||||
"stage": "preview",
|
||||
"stage": "GA",
|
||||
"codeowner": "@grafana/observability-metrics",
|
||||
"requiresRestart": true
|
||||
"requiresRestart": true,
|
||||
"expression": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue