loki: add feature-toggle check to live-mode (#49012)

This commit is contained in:
Gábor Farkas
2022-06-13 08:33:46 +02:00
committed by GitHub
parent a0e5a4eba2
commit 8fd9cb4854
6 changed files with 28 additions and 31 deletions
+5
View File
@@ -117,6 +117,11 @@ var (
Description: "support websocket streaming for loki (early prototype)",
State: FeatureStateAlpha,
},
{
Name: "lokiDataframeApi",
Description: "use experimental loki api for websocket streaming (early prototype)",
State: FeatureStateAlpha,
},
{
Name: "swaggerUi",
Description: "Serves swagger UI",
+4
View File
@@ -87,6 +87,10 @@ const (
// support websocket streaming for loki (early prototype)
FlagLokiLive = "lokiLive"
// FlagLokiDataframeApi
// use experimental loki api for websocket streaming (early prototype)
FlagLokiDataframeApi = "lokiDataframeApi"
// FlagSwaggerUi
// Serves swagger UI
FlagSwaggerUi = "swaggerUi"