GRPC Server: Add gRPC server service (#47849)

Co-authored-by: Todd Treece <todd.treece@grafana.com>
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
This commit is contained in:
Alexander Emelin
2022-09-26 16:25:34 -04:00
committed by GitHub
co-authored by Todd Treece Ryan McKinley
parent f11495a4c3
commit 55aae79744
10 changed files with 462 additions and 1 deletions
+5
View File
@@ -268,6 +268,11 @@ var (
State: FeatureStateAlpha,
},
{
Name: "grpcServer",
Description: "Run GRPC server",
State: FeatureStateAlpha,
RequiresDevMode: true,
}, {
Name: "traceqlEditor",
Description: "Show the TraceQL editor in the explore page",
State: FeatureStateAlpha,
+4
View File
@@ -199,6 +199,10 @@ const (
// Replaces whitelabeling with the new custom branding feature
FlagCustomBranding = "customBranding"
// FlagGrpcServer
// Run GRPC server
FlagGrpcServer = "grpcServer"
// FlagTraceqlEditor
// Show the TraceQL editor in the explore page
FlagTraceqlEditor = "traceqlEditor"