querierv1connect

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 10, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
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"
)

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.

View Source
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)
	// SelectMergeSpans 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(context.Context, *connect.Request[v1.DiffRequest]) (*connect.Response[v1.DiffResponse], 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)
	// SelectMergeSpans 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(context.Context, *connect.Request[v1.DiffRequest]) (*connect.Response[v1.DiffResponse], error)
}

QuerierServiceHandler is an implementation of the querier.v1.QuerierService service.

type UnimplementedQuerierServiceHandler

type UnimplementedQuerierServiceHandler struct{}

UnimplementedQuerierServiceHandler returns CodeUnimplemented from all methods.

func (UnimplementedQuerierServiceHandler) Diff

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL