Prometheus: Streaming JSON parser performance improvements (#48792)

This commit is contained in:
Todd Treece
2022-05-24 16:17:11 -04:00
committed by GitHub
parent 438898de86
commit 94b9c524a8
61 changed files with 4279 additions and 155 deletions
+5
View File
@@ -249,5 +249,10 @@ var (
State: FeatureStateAlpha,
RequiresRestart: true,
},
{
Name: "prometheusWideSeries",
Description: "Enable wide series responses in the Prometheus datasource",
State: FeatureStateAlpha,
},
}
)
+4
View File
@@ -182,4 +182,8 @@ const (
// FlagValidateDashboardsOnSave
// Validate dashboard JSON POSTed to api/dashboards/db
FlagValidateDashboardsOnSave = "validateDashboardsOnSave"
// FlagPrometheusWideSeries
// Enable wide series responses in the Prometheus datasource
FlagPrometheusWideSeries = "prometheusWideSeries"
)