chore: Promote panel monitoring feature toggle to GA (#82472)

This commit is contained in:
Nathan Marrs 2024-02-15 22:29:59 -07:00 committed by GitHub
parent 5985876f4a
commit cdd3e1c776
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 6 deletions

View File

@ -50,6 +50,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `alertingNoDataErrorExecution` | Changes how Alerting state manager handles execution of NoData/Error | Yes |
| `alertingInsights` | Show the new alerting insights landing page | Yes |
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
| `panelMonitoring` | Enables panel monitoring through logs and measurements | Yes |
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes |
| `lokiStructuredMetadata` | Enables the loki data source to request structured metadata from the Loki server | Yes |
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
@ -150,7 +151,6 @@ Experimental features might be changed or removed without prior notice.
| `externalCorePlugins` | Allow core plugins to be loaded as external |
| `pluginsAPIMetrics` | Sends metrics of public grafana packages usage by plugins |
| `idForwarding` | Generate signed id token for identity that can be forwarded to plugins and external services |
| `panelMonitoring` | Enables panel monitoring through logs and measurements |
| `enableNativeHTTPHistogram` | Enables native HTTP Histograms |
| `kubernetesPlaylists` | Use the kubernetes API in the frontend for playlists, and route /api/playlist requests to k8s |
| `kubernetesSnapshots` | Routes snapshot requests from /api to the /apis endpoint |

View File

@ -813,7 +813,8 @@ var (
{
Name: "panelMonitoring",
Description: "Enables panel monitoring through logs and measurements",
Stage: FeatureStageExperimental,
Stage: FeatureStageGeneralAvailability,
Expression: "true", // enabled by default
Owner: grafanaDatavizSquad,
FrontendOnly: true,
},

View File

@ -107,7 +107,7 @@ pluginsAPIMetrics,experimental,@grafana/plugins-platform-backend,false,false,tru
idForwarding,experimental,@grafana/identity-access-team,false,false,false
cloudWatchWildCardDimensionValues,GA,@grafana/aws-datasources,false,false,false
externalServiceAccounts,preview,@grafana/identity-access-team,false,false,false
panelMonitoring,experimental,@grafana/dataviz-squad,false,false,true
panelMonitoring,GA,@grafana/dataviz-squad,false,false,true
enableNativeHTTPHistogram,experimental,@grafana/hosted-grafana-team,false,false,false
formatString,preview,@grafana/dataviz-squad,false,false,true
transformationsVariableSupport,preview,@grafana/dataviz-squad,false,false,true

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
107 idForwarding experimental @grafana/identity-access-team false false false
108 cloudWatchWildCardDimensionValues GA @grafana/aws-datasources false false false
109 externalServiceAccounts preview @grafana/identity-access-team false false false
110 panelMonitoring experimental GA @grafana/dataviz-squad false false true
111 enableNativeHTTPHistogram experimental @grafana/hosted-grafana-team false false false
112 formatString preview @grafana/dataviz-squad false false true
113 transformationsVariableSupport preview @grafana/dataviz-squad false false true

View File

@ -932,12 +932,15 @@
{
"metadata": {
"name": "panelMonitoring",
"resourceVersion": "1707928895402",
"creationTimestamp": "2024-02-14T16:41:35Z"
"resourceVersion": "1707938948387",
"creationTimestamp": "2024-02-14T16:41:35Z",
"annotations": {
"grafana.app/updatedTimestamp": "2024-02-14 19:29:08.387414 +0000 UTC"
}
},
"spec": {
"description": "Enables panel monitoring through logs and measurements",
"stage": "experimental",
"stage": "GA",
"codeowner": "@grafana/dataviz-squad",
"frontend": true
}