prehogv1connect

package
v0.0.0-...-5c79d48 Latest Latest
Warning

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

Go to latest
Published: Feb 15, 2024 License: AGPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// TeleportReportingServiceName is the fully-qualified name of the TeleportReportingService service.
	TeleportReportingServiceName = "prehog.v1.TeleportReportingService"
)
View Source
const (
	// TeleportReportingServiceSubmitUsageReportsProcedure is the fully-qualified name of the
	// TeleportReportingService's SubmitUsageReports RPC.
	TeleportReportingServiceSubmitUsageReportsProcedure = "/prehog.v1.TeleportReportingService/SubmitUsageReports"
)

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.

Variables

This section is empty.

Functions

func NewTeleportReportingServiceHandler

func NewTeleportReportingServiceHandler(svc TeleportReportingServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)

NewTeleportReportingServiceHandler 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.

Types

type TeleportReportingServiceClient

type TeleportReportingServiceClient interface {
	// encodes and forwards usage reports to the PostHog event database; each
	// event is annotated with some properties that depend on the identity of the
	// caller:
	//   - tp.account_id (UUID in string form, can be empty if missing from the
	//     license)
	//   - tp.license_name (should always be a UUID)
	//   - tp.license_authority (name of the authority that signed the license file
	//     used for authentication)
	//   - tp.is_cloud (boolean)
	SubmitUsageReports(context.Context, *connect_go.Request[v1.SubmitUsageReportsRequest]) (*connect_go.Response[v1.SubmitUsageReportsResponse], error)
}

TeleportReportingServiceClient is a client for the prehog.v1.TeleportReportingService service.

func NewTeleportReportingServiceClient

func NewTeleportReportingServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) TeleportReportingServiceClient

NewTeleportReportingServiceClient constructs a client for the prehog.v1.TeleportReportingService 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 TeleportReportingServiceHandler

type TeleportReportingServiceHandler interface {
	// encodes and forwards usage reports to the PostHog event database; each
	// event is annotated with some properties that depend on the identity of the
	// caller:
	//   - tp.account_id (UUID in string form, can be empty if missing from the
	//     license)
	//   - tp.license_name (should always be a UUID)
	//   - tp.license_authority (name of the authority that signed the license file
	//     used for authentication)
	//   - tp.is_cloud (boolean)
	SubmitUsageReports(context.Context, *connect_go.Request[v1.SubmitUsageReportsRequest]) (*connect_go.Response[v1.SubmitUsageReportsResponse], error)
}

TeleportReportingServiceHandler is an implementation of the prehog.v1.TeleportReportingService service.

type UnimplementedTeleportReportingServiceHandler

type UnimplementedTeleportReportingServiceHandler struct{}

UnimplementedTeleportReportingServiceHandler returns CodeUnimplemented from all methods.

Jump to

Keyboard shortcuts

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