Documentation
¶
Index ¶
- Constants
- func NewQuerierServiceHandler(svc QuerierServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
- func RegisterQuerierServiceHandler(mux *mux.Router, svc QuerierServiceHandler, opts ...connect_go.HandlerOption)
- type QuerierServiceClient
- type QuerierServiceHandler
- type UnimplementedQuerierServiceHandler
- func (UnimplementedQuerierServiceHandler) Diff(context.Context, *connect_go.Request[v1.DiffRequest]) (*connect_go.Response[v1.DiffResponse], error)
- func (UnimplementedQuerierServiceHandler) LabelNames(context.Context, *connect_go.Request[v11.LabelNamesRequest]) (*connect_go.Response[v11.LabelNamesResponse], error)
- func (UnimplementedQuerierServiceHandler) LabelValues(context.Context, *connect_go.Request[v11.LabelValuesRequest]) (*connect_go.Response[v11.LabelValuesResponse], error)
- func (UnimplementedQuerierServiceHandler) ProfileTypes(context.Context, *connect_go.Request[v1.ProfileTypesRequest]) (*connect_go.Response[v1.ProfileTypesResponse], error)
- func (UnimplementedQuerierServiceHandler) SelectMergeProfile(context.Context, *connect_go.Request[v1.SelectMergeProfileRequest]) (*connect_go.Response[v12.Profile], error)
- func (UnimplementedQuerierServiceHandler) SelectMergeStacktraces(context.Context, *connect_go.Request[v1.SelectMergeStacktracesRequest]) (*connect_go.Response[v1.SelectMergeStacktracesResponse], error)
- func (UnimplementedQuerierServiceHandler) SelectSeries(context.Context, *connect_go.Request[v1.SelectSeriesRequest]) (*connect_go.Response[v1.SelectSeriesResponse], error)
- func (UnimplementedQuerierServiceHandler) Series(context.Context, *connect_go.Request[v1.SeriesRequest]) (*connect_go.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" // 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.
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_go.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_go.HandlerOption)
RegisterQuerierServiceHandler register an HTTP handler to a mux.Router from the service implementation.
Types ¶
type QuerierServiceClient ¶
type QuerierServiceClient interface { ProfileTypes(context.Context, *connect_go.Request[v1.ProfileTypesRequest]) (*connect_go.Response[v1.ProfileTypesResponse], error) LabelValues(context.Context, *connect_go.Request[v11.LabelValuesRequest]) (*connect_go.Response[v11.LabelValuesResponse], error) LabelNames(context.Context, *connect_go.Request[v11.LabelNamesRequest]) (*connect_go.Response[v11.LabelNamesResponse], error) Series(context.Context, *connect_go.Request[v1.SeriesRequest]) (*connect_go.Response[v1.SeriesResponse], error) SelectMergeStacktraces(context.Context, *connect_go.Request[v1.SelectMergeStacktracesRequest]) (*connect_go.Response[v1.SelectMergeStacktracesResponse], error) SelectMergeProfile(context.Context, *connect_go.Request[v1.SelectMergeProfileRequest]) (*connect_go.Response[v12.Profile], error) SelectSeries(context.Context, *connect_go.Request[v1.SelectSeriesRequest]) (*connect_go.Response[v1.SelectSeriesResponse], error) Diff(context.Context, *connect_go.Request[v1.DiffRequest]) (*connect_go.Response[v1.DiffResponse], error) }
QuerierServiceClient is a client for the querier.v1.QuerierService service.
func NewQuerierServiceClient ¶
func NewQuerierServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.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 { ProfileTypes(context.Context, *connect_go.Request[v1.ProfileTypesRequest]) (*connect_go.Response[v1.ProfileTypesResponse], error) LabelValues(context.Context, *connect_go.Request[v11.LabelValuesRequest]) (*connect_go.Response[v11.LabelValuesResponse], error) LabelNames(context.Context, *connect_go.Request[v11.LabelNamesRequest]) (*connect_go.Response[v11.LabelNamesResponse], error) Series(context.Context, *connect_go.Request[v1.SeriesRequest]) (*connect_go.Response[v1.SeriesResponse], error) SelectMergeStacktraces(context.Context, *connect_go.Request[v1.SelectMergeStacktracesRequest]) (*connect_go.Response[v1.SelectMergeStacktracesResponse], error) SelectMergeProfile(context.Context, *connect_go.Request[v1.SelectMergeProfileRequest]) (*connect_go.Response[v12.Profile], error) SelectSeries(context.Context, *connect_go.Request[v1.SelectSeriesRequest]) (*connect_go.Response[v1.SelectSeriesResponse], error) Diff(context.Context, *connect_go.Request[v1.DiffRequest]) (*connect_go.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 ¶
func (UnimplementedQuerierServiceHandler) Diff(context.Context, *connect_go.Request[v1.DiffRequest]) (*connect_go.Response[v1.DiffResponse], error)
func (UnimplementedQuerierServiceHandler) LabelNames ¶
func (UnimplementedQuerierServiceHandler) LabelNames(context.Context, *connect_go.Request[v11.LabelNamesRequest]) (*connect_go.Response[v11.LabelNamesResponse], error)
func (UnimplementedQuerierServiceHandler) LabelValues ¶
func (UnimplementedQuerierServiceHandler) LabelValues(context.Context, *connect_go.Request[v11.LabelValuesRequest]) (*connect_go.Response[v11.LabelValuesResponse], error)
func (UnimplementedQuerierServiceHandler) ProfileTypes ¶
func (UnimplementedQuerierServiceHandler) ProfileTypes(context.Context, *connect_go.Request[v1.ProfileTypesRequest]) (*connect_go.Response[v1.ProfileTypesResponse], error)
func (UnimplementedQuerierServiceHandler) SelectMergeProfile ¶
func (UnimplementedQuerierServiceHandler) SelectMergeProfile(context.Context, *connect_go.Request[v1.SelectMergeProfileRequest]) (*connect_go.Response[v12.Profile], error)
func (UnimplementedQuerierServiceHandler) SelectMergeStacktraces ¶
func (UnimplementedQuerierServiceHandler) SelectMergeStacktraces(context.Context, *connect_go.Request[v1.SelectMergeStacktracesRequest]) (*connect_go.Response[v1.SelectMergeStacktracesResponse], error)
func (UnimplementedQuerierServiceHandler) SelectSeries ¶
func (UnimplementedQuerierServiceHandler) SelectSeries(context.Context, *connect_go.Request[v1.SelectSeriesRequest]) (*connect_go.Response[v1.SelectSeriesResponse], error)
func (UnimplementedQuerierServiceHandler) Series ¶
func (UnimplementedQuerierServiceHandler) Series(context.Context, *connect_go.Request[v1.SeriesRequest]) (*connect_go.Response[v1.SeriesResponse], error)