mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 21:32:20 +08:00
Alerting: Enable recovery threshold feature by default (#80088)
This commit is contained in:
@ -54,6 +54,7 @@ Some features are enabled by default. You can disable these feature by setting t
|
|||||||
| `influxdbSqlSupport` | Enable InfluxDB SQL query language support with new querying UI | Yes |
|
| `influxdbSqlSupport` | Enable InfluxDB SQL query language support with new querying UI | Yes |
|
||||||
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
||||||
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
|
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
|
||||||
|
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes |
|
||||||
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana | Yes |
|
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana | Yes |
|
||||||
| `lokiQueryHints` | Enables query hints for Loki | Yes |
|
| `lokiQueryHints` | Enables query hints for Loki | Yes |
|
||||||
|
|
||||||
@ -145,7 +146,6 @@ Experimental features might be changed or removed without prior notice.
|
|||||||
| `enableNativeHTTPHistogram` | Enables native HTTP Histograms |
|
| `enableNativeHTTPHistogram` | Enables native HTTP Histograms |
|
||||||
| `kubernetesPlaylists` | Use the kubernetes API in the frontend for playlists, and route /api/playlist requests to k8s |
|
| `kubernetesPlaylists` | Use the kubernetes API in the frontend for playlists, and route /api/playlist requests to k8s |
|
||||||
| `kubernetesSnapshots` | Use the kubernetes API in the frontend to support playlists |
|
| `kubernetesSnapshots` | Use the kubernetes API in the frontend to support playlists |
|
||||||
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression |
|
|
||||||
| `lokiStructuredMetadata` | Enables the loki data source to request structured metadata from the Loki server |
|
| `lokiStructuredMetadata` | Enables the loki data source to request structured metadata from the Loki server |
|
||||||
| `teamHttpHeaders` | Enables datasources to apply team headers to the client requests |
|
| `teamHttpHeaders` | Enables datasources to apply team headers to the client requests |
|
||||||
| `awsDatasourcesNewFormStyling` | Applies new form styling for configuration and query editors in AWS plugins |
|
| `awsDatasourcesNewFormStyling` | Applies new form styling for configuration and query editors in AWS plugins |
|
||||||
|
@ -1013,11 +1013,12 @@ var (
|
|||||||
{
|
{
|
||||||
Name: "recoveryThreshold",
|
Name: "recoveryThreshold",
|
||||||
Description: "Enables feature recovery threshold (aka hysteresis) for threshold server-side expression",
|
Description: "Enables feature recovery threshold (aka hysteresis) for threshold server-side expression",
|
||||||
Stage: FeatureStageExperimental,
|
Stage: FeatureStageGeneralAvailability,
|
||||||
FrontendOnly: false,
|
FrontendOnly: false,
|
||||||
Owner: grafanaAlertingSquad,
|
Owner: grafanaAlertingSquad,
|
||||||
RequiresRestart: true,
|
RequiresRestart: true,
|
||||||
Created: time.Date(2023, time.October, 10, 12, 0, 0, 0, time.UTC),
|
Created: time.Date(2023, time.October, 10, 12, 0, 0, 0, time.UTC),
|
||||||
|
Expression: "true",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "lokiStructuredMetadata",
|
Name: "lokiStructuredMetadata",
|
||||||
|
@ -118,7 +118,7 @@ transformationsVariableSupport,preview,@grafana/grafana-bi-squad,2023-10-04,fals
|
|||||||
kubernetesPlaylists,experimental,@grafana/grafana-app-platform-squad,2023-11-08,false,false,true,false
|
kubernetesPlaylists,experimental,@grafana/grafana-app-platform-squad,2023-11-08,false,false,true,false
|
||||||
kubernetesSnapshots,experimental,@grafana/grafana-app-platform-squad,2023-12-04,false,false,true,false
|
kubernetesSnapshots,experimental,@grafana/grafana-app-platform-squad,2023-12-04,false,false,true,false
|
||||||
cloudWatchBatchQueries,preview,@grafana/aws-datasources,2023-10-20,false,false,false,false
|
cloudWatchBatchQueries,preview,@grafana/aws-datasources,2023-10-20,false,false,false,false
|
||||||
recoveryThreshold,experimental,@grafana/alerting-squad,2023-10-10,false,false,true,false
|
recoveryThreshold,GA,@grafana/alerting-squad,2023-10-10,false,false,true,false
|
||||||
lokiStructuredMetadata,experimental,@grafana/observability-logs,2023-11-16,false,false,false,false
|
lokiStructuredMetadata,experimental,@grafana/observability-logs,2023-11-16,false,false,false,false
|
||||||
teamHttpHeaders,experimental,@grafana/identity-access-team,2023-10-17,false,false,false,false
|
teamHttpHeaders,experimental,@grafana/identity-access-team,2023-10-17,false,false,false,false
|
||||||
awsDatasourcesNewFormStyling,experimental,@grafana/aws-datasources,2023-10-12,false,false,false,true
|
awsDatasourcesNewFormStyling,experimental,@grafana/aws-datasources,2023-10-12,false,false,false,true
|
||||||
|
|
Reference in New Issue
Block a user