mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Features: Add cloudwatchMetricInsightsCrossAccount feature toggle (#89848)
This commit is contained in:
parent
ba64ee44cb
commit
36ff0fe63a
@ -192,6 +192,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `databaseReadReplica` | Use a read replica for some database queries. |
|
||||
| `alertingApiServer` | Register Alerting APIs with the K8s API server |
|
||||
| `dashboardRestoreUI` | Enables the frontend to be able to restore a recently deleted dashboard |
|
||||
| `cloudwatchMetricInsightsCrossAccount` | Enables cross account observability for Cloudwatch Metric Insights |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -200,4 +200,5 @@ export interface FeatureToggles {
|
||||
dashboardRestoreUI?: boolean;
|
||||
cloudWatchRoundUpEndTime?: boolean;
|
||||
bodyScrolling?: boolean;
|
||||
cloudwatchMetricInsightsCrossAccount?: boolean;
|
||||
}
|
||||
|
@ -1371,6 +1371,13 @@ var (
|
||||
HideFromDocs: true,
|
||||
HideFromAdminPage: true,
|
||||
},
|
||||
{
|
||||
Name: "cloudwatchMetricInsightsCrossAccount",
|
||||
Description: "Enables cross account observability for Cloudwatch Metric Insights",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: awsDatasourcesSquad,
|
||||
FrontendOnly: true,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -181,3 +181,4 @@ alertingApiServer,experimental,@grafana/alerting-squad,false,true,false
|
||||
dashboardRestoreUI,experimental,@grafana/grafana-frontend-platform,false,false,false
|
||||
cloudWatchRoundUpEndTime,GA,@grafana/aws-datasources,false,false,false
|
||||
bodyScrolling,experimental,@grafana/grafana-frontend-platform,false,false,true
|
||||
cloudwatchMetricInsightsCrossAccount,experimental,@grafana/aws-datasources,false,false,true
|
||||
|
|
@ -734,4 +734,8 @@ const (
|
||||
// FlagBodyScrolling
|
||||
// Adjusts Page to make body the scrollable element
|
||||
FlagBodyScrolling = "bodyScrolling"
|
||||
|
||||
// FlagCloudwatchMetricInsightsCrossAccount
|
||||
// Enables cross account observability for Cloudwatch Metric Insights
|
||||
FlagCloudwatchMetricInsightsCrossAccount = "cloudwatchMetricInsightsCrossAccount"
|
||||
)
|
||||
|
@ -590,6 +590,19 @@
|
||||
"codeowner": "@grafana/aws-datasources"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "cloudwatchMetricInsightsCrossAccount",
|
||||
"resourceVersion": "1719497905377",
|
||||
"creationTimestamp": "2024-06-27T14:18:25Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Enables cross account observability for Cloudwatch Metric Insights",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/aws-datasources",
|
||||
"frontend": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "configurableSchedulerTick",
|
||||
|
Loading…
Reference in New Issue
Block a user