Documentation
¶
Index ¶
- Constants
- func NewQuerierServiceHandler(svc QuerierServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- func RegisterQuerierServiceHandler(mux *mux.Router, svc QuerierServiceHandler, opts ...connect.HandlerOption)
- type QuerierServiceClient
- type QuerierServiceHandler
- type UnimplementedQuerierServiceHandler
- func (UnimplementedQuerierServiceHandler) AnalyzeQuery(context.Context, *connect.Request[v1.AnalyzeQueryRequest]) (*connect.Response[v1.AnalyzeQueryResponse], error)
- func (UnimplementedQuerierServiceHandler) Diff(context.Context, *connect.Request[v1.DiffRequest]) (*connect.Response[v1.DiffResponse], error)
- func (UnimplementedQuerierServiceHandler) GetProfileStats(context.Context, *connect.Request[v11.GetProfileStatsRequest]) (*connect.Response[v11.GetProfileStatsResponse], error)
- func (UnimplementedQuerierServiceHandler) LabelNames(context.Context, *connect.Request[v11.LabelNamesRequest]) (*connect.Response[v11.LabelNamesResponse], error)
- func (UnimplementedQuerierServiceHandler) LabelValues(context.Context, *connect.Request[v11.LabelValuesRequest]) (*connect.Response[v11.LabelValuesResponse], error)
- func (UnimplementedQuerierServiceHandler) ProfileTypes(context.Context, *connect.Request[v1.ProfileTypesRequest]) (*connect.Response[v1.ProfileTypesResponse], error)
- func (UnimplementedQuerierServiceHandler) SelectMergeProfile(context.Context, *connect.Request[v1.SelectMergeProfileRequest]) (*connect.Response[v12.Profile], error)
- func (UnimplementedQuerierServiceHandler) SelectMergeSpanProfile(context.Context, *connect.Request[v1.SelectMergeSpanProfileRequest]) (*connect.Response[v1.SelectMergeSpanProfileResponse], error)
- func (UnimplementedQuerierServiceHandler) SelectMergeStacktraces(context.Context, *connect.Request[v1.SelectMergeStacktracesRequest]) (*connect.Response[v1.SelectMergeStacktracesResponse], error)
- func (UnimplementedQuerierServiceHandler) SelectSeries(context.Context, *connect.Request[v1.SelectSeriesRequest]) (*connect.Response[v1.SelectSeriesResponse], error)
- func (UnimplementedQuerierServiceHandler) Series(context.Context, *connect.Request[v1.SeriesRequest]) (*connect.Response[v1.SeriesResponse], error)
Constants ¶
const ( // QuerierServiceProfileTypesProcedure is the fully-qualified name of the QuerierService's // ProfileTypes RPC. QuerierServiceProfileTypesProcedure = "/querier.v1.QuerierService/ProfileTypes" // QuerierServiceLabelValuesProcedure is the fully-qualified name of the QuerierService's // LabelValues RPC. QuerierServiceLabelValuesProcedure = "/querier.v1.QuerierService/LabelValues" // QuerierServiceLabelNamesProcedure is the fully-qualified name of the QuerierService's LabelNames // RPC. QuerierServiceLabelNamesProcedure = "/querier.v1.QuerierService/LabelNames" // QuerierServiceSeriesProcedure is the fully-qualified name of the QuerierService's Series RPC. QuerierServiceSeriesProcedure = "/querier.v1.QuerierService/Series" // QuerierServiceSelectMergeStacktracesProcedure is the fully-qualified name of the QuerierService's // SelectMergeStacktraces RPC. QuerierServiceSelectMergeStacktracesProcedure = "/querier.v1.QuerierService/SelectMergeStacktraces" // QuerierServiceSelectMergeSpanProfileProcedure is the fully-qualified name of the QuerierService's // SelectMergeSpanProfile RPC. QuerierServiceSelectMergeSpanProfileProcedure = "/querier.v1.QuerierService/SelectMergeSpanProfile" // QuerierServiceSelectMergeProfileProcedure is the fully-qualified name of the QuerierService's // SelectMergeProfile RPC. QuerierServiceSelectMergeProfileProcedure = "/querier.v1.QuerierService/SelectMergeProfile" // QuerierServiceSelectSeriesProcedure is the fully-qualified name of the QuerierService's // SelectSeries RPC. QuerierServiceSelectSeriesProcedure = "/querier.v1.QuerierService/SelectSeries" // QuerierServiceDiffProcedure is the fully-qualified name of the QuerierService's Diff RPC. QuerierServiceDiffProcedure = "/querier.v1.QuerierService/Diff" // QuerierServiceGetProfileStatsProcedure is the fully-qualified name of the QuerierService's // GetProfileStats RPC. QuerierServiceGetProfileStatsProcedure = "/querier.v1.QuerierService/GetProfileStats" // QuerierServiceAnalyzeQueryProcedure is the fully-qualified name of the QuerierService's // AnalyzeQuery RPC. QuerierServiceAnalyzeQueryProcedure = "/querier.v1.QuerierService/AnalyzeQuery" )
These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.
Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.
const (
// QuerierServiceName is the fully-qualified name of the QuerierService service.
QuerierServiceName = "querier.v1.QuerierService"
)
Variables ¶
This section is empty.
Functions ¶
func NewQuerierServiceHandler ¶
func NewQuerierServiceHandler(svc QuerierServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewQuerierServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.
By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.
func RegisterQuerierServiceHandler ¶
func RegisterQuerierServiceHandler(mux *mux.Router, svc QuerierServiceHandler, opts ...connect.HandlerOption)
RegisterQuerierServiceHandler register an HTTP handler to a mux.Router from the service implementation.
Types ¶
type QuerierServiceClient ¶
type QuerierServiceClient interface { // ProfileType returns a list of the existing profile types. ProfileTypes(context.Context, *connect.Request[v1.ProfileTypesRequest]) (*connect.Response[v1.ProfileTypesResponse], error) // LabelValues returns the existing label values for the provided label names. LabelValues(context.Context, *connect.Request[v11.LabelValuesRequest]) (*connect.Response[v11.LabelValuesResponse], error) // LabelNames returns a list of the existing label names. LabelNames(context.Context, *connect.Request[v11.LabelNamesRequest]) (*connect.Response[v11.LabelNamesResponse], error) // Series returns profiles series matching the request. A series is a unique label set. Series(context.Context, *connect.Request[v1.SeriesRequest]) (*connect.Response[v1.SeriesResponse], error) // SelectMergeStacktraces returns matching profiles aggregated in a flamegraph format. It will combine samples from within the same callstack, with each element being grouped by its function name. SelectMergeStacktraces(context.Context, *connect.Request[v1.SelectMergeStacktracesRequest]) (*connect.Response[v1.SelectMergeStacktracesResponse], error) // SelectMergeSpanProfile returns matching profiles aggregated in a flamegraph format. It will combine samples from within the same callstack, with each element being grouped by its function name. SelectMergeSpanProfile(context.Context, *connect.Request[v1.SelectMergeSpanProfileRequest]) (*connect.Response[v1.SelectMergeSpanProfileResponse], error) // SelectMergeProfile returns matching profiles aggregated in pprof format. It will contain all information stored (so including filenames and line number, if ingested). SelectMergeProfile(context.Context, *connect.Request[v1.SelectMergeProfileRequest]) (*connect.Response[v12.Profile], error) // SelectSeries returns a time series for the total sum of the requested profiles. SelectSeries(context.Context, *connect.Request[v1.SelectSeriesRequest]) (*connect.Response[v1.SelectSeriesResponse], error) // Diff returns a diff of two profiles Diff(context.Context, *connect.Request[v1.DiffRequest]) (*connect.Response[v1.DiffResponse], error) // GetProfileStats returns profile stats for the current tenant. GetProfileStats(context.Context, *connect.Request[v11.GetProfileStatsRequest]) (*connect.Response[v11.GetProfileStatsResponse], error) AnalyzeQuery(context.Context, *connect.Request[v1.AnalyzeQueryRequest]) (*connect.Response[v1.AnalyzeQueryResponse], error) }
QuerierServiceClient is a client for the querier.v1.QuerierService service.
func NewQuerierServiceClient ¶
func NewQuerierServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) QuerierServiceClient
NewQuerierServiceClient constructs a client for the querier.v1.QuerierService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.
The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).
type QuerierServiceHandler ¶
type QuerierServiceHandler interface { // ProfileType returns a list of the existing profile types. ProfileTypes(context.Context, *connect.Request[v1.ProfileTypesRequest]) (*connect.Response[v1.ProfileTypesResponse], error) // LabelValues returns the existing label values for the provided label names. LabelValues(context.Context, *connect.Request[v11.LabelValuesRequest]) (*connect.Response[v11.LabelValuesResponse], error) // LabelNames returns a list of the existing label names. LabelNames(context.Context, *connect.Request[v11.LabelNamesRequest]) (*connect.Response[v11.LabelNamesResponse], error) // Series returns profiles series matching the request. A series is a unique label set. Series(context.Context, *connect.Request[v1.SeriesRequest]) (*connect.Response[v1.SeriesResponse], error) // SelectMergeStacktraces returns matching profiles aggregated in a flamegraph format. It will combine samples from within the same callstack, with each element being grouped by its function name. SelectMergeStacktraces(context.Context, *connect.Request[v1.SelectMergeStacktracesRequest]) (*connect.Response[v1.SelectMergeStacktracesResponse], error) // SelectMergeSpanProfile returns matching profiles aggregated in a flamegraph format. It will combine samples from within the same callstack, with each element being grouped by its function name. SelectMergeSpanProfile(context.Context, *connect.Request[v1.SelectMergeSpanProfileRequest]) (*connect.Response[v1.SelectMergeSpanProfileResponse], error) // SelectMergeProfile returns matching profiles aggregated in pprof format. It will contain all information stored (so including filenames and line number, if ingested). SelectMergeProfile(context.Context, *connect.Request[v1.SelectMergeProfileRequest]) (*connect.Response[v12.Profile], error) // SelectSeries returns a time series for the total sum of the requested profiles. SelectSeries(context.Context, *connect.Request[v1.SelectSeriesRequest]) (*connect.Response[v1.SelectSeriesResponse], error) // Diff returns a diff of two profiles Diff(context.Context, *connect.Request[v1.DiffRequest]) (*connect.Response[v1.DiffResponse], error) // GetProfileStats returns profile stats for the current tenant. GetProfileStats(context.Context, *connect.Request[v11.GetProfileStatsRequest]) (*connect.Response[v11.GetProfileStatsResponse], error) AnalyzeQuery(context.Context, *connect.Request[v1.AnalyzeQueryRequest]) (*connect.Response[v1.AnalyzeQueryResponse], error) }
QuerierServiceHandler is an implementation of the querier.v1.QuerierService service.
type UnimplementedQuerierServiceHandler ¶
type UnimplementedQuerierServiceHandler struct{}
UnimplementedQuerierServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedQuerierServiceHandler) AnalyzeQuery ¶ added in v1.0.0
func (UnimplementedQuerierServiceHandler) AnalyzeQuery(context.Context, *connect.Request[v1.AnalyzeQueryRequest]) (*connect.Response[v1.AnalyzeQueryResponse], error)
func (UnimplementedQuerierServiceHandler) Diff ¶
func (UnimplementedQuerierServiceHandler) Diff(context.Context, *connect.Request[v1.DiffRequest]) (*connect.Response[v1.DiffResponse], error)
func (UnimplementedQuerierServiceHandler) GetProfileStats ¶ added in v1.0.0
func (UnimplementedQuerierServiceHandler) GetProfileStats(context.Context, *connect.Request[v11.GetProfileStatsRequest]) (*connect.Response[v11.GetProfileStatsResponse], error)
func (UnimplementedQuerierServiceHandler) LabelNames ¶
func (UnimplementedQuerierServiceHandler) LabelNames(context.Context, *connect.Request[v11.LabelNamesRequest]) (*connect.Response[v11.LabelNamesResponse], error)
func (UnimplementedQuerierServiceHandler) LabelValues ¶
func (UnimplementedQuerierServiceHandler) LabelValues(context.Context, *connect.Request[v11.LabelValuesRequest]) (*connect.Response[v11.LabelValuesResponse], error)
func (UnimplementedQuerierServiceHandler) ProfileTypes ¶
func (UnimplementedQuerierServiceHandler) ProfileTypes(context.Context, *connect.Request[v1.ProfileTypesRequest]) (*connect.Response[v1.ProfileTypesResponse], error)
func (UnimplementedQuerierServiceHandler) SelectMergeProfile ¶
func (UnimplementedQuerierServiceHandler) SelectMergeSpanProfile ¶ added in v0.2.1
func (UnimplementedQuerierServiceHandler) SelectMergeSpanProfile(context.Context, *connect.Request[v1.SelectMergeSpanProfileRequest]) (*connect.Response[v1.SelectMergeSpanProfileResponse], error)
func (UnimplementedQuerierServiceHandler) SelectMergeStacktraces ¶
func (UnimplementedQuerierServiceHandler) SelectMergeStacktraces(context.Context, *connect.Request[v1.SelectMergeStacktracesRequest]) (*connect.Response[v1.SelectMergeStacktracesResponse], error)
func (UnimplementedQuerierServiceHandler) SelectSeries ¶
func (UnimplementedQuerierServiceHandler) SelectSeries(context.Context, *connect.Request[v1.SelectSeriesRequest]) (*connect.Response[v1.SelectSeriesResponse], error)
func (UnimplementedQuerierServiceHandler) Series ¶
func (UnimplementedQuerierServiceHandler) Series(context.Context, *connect.Request[v1.SeriesRequest]) (*connect.Response[v1.SeriesResponse], error)