Documentation ¶
Index ¶
- Constants
- func NewConnectReportingServiceHandler(svc ConnectReportingServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
- func NewTbotReportingServiceHandler(svc TbotReportingServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
- func NewTeleportReportingServiceHandler(svc TeleportReportingServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
- type ConnectReportingServiceClient
- type ConnectReportingServiceHandler
- type TbotReportingServiceClient
- type TbotReportingServiceHandler
- type TeleportReportingServiceClient
- type TeleportReportingServiceHandler
- type UnimplementedConnectReportingServiceHandler
- type UnimplementedTbotReportingServiceHandler
- type UnimplementedTeleportReportingServiceHandler
- func (UnimplementedTeleportReportingServiceHandler) HelloTeleport(context.Context, *connect_go.Request[v1alpha.HelloTeleportRequest]) (*connect_go.Response[v1alpha.HelloTeleportResponse], error)
- func (UnimplementedTeleportReportingServiceHandler) SubmitEvent(context.Context, *connect_go.Request[v1alpha.SubmitEventRequest]) (*connect_go.Response[v1alpha.SubmitEventResponse], error)
- func (UnimplementedTeleportReportingServiceHandler) SubmitEvents(context.Context, *connect_go.Request[v1alpha.SubmitEventsRequest]) (*connect_go.Response[v1alpha.SubmitEventsResponse], error)
Constants ¶
const ( // TeleportReportingServiceSubmitEventProcedure is the fully-qualified name of the // TeleportReportingService's SubmitEvent RPC. TeleportReportingServiceSubmitEventProcedure = "/prehog.v1alpha.TeleportReportingService/SubmitEvent" // TeleportReportingServiceSubmitEventsProcedure is the fully-qualified name of the // TeleportReportingService's SubmitEvents RPC. TeleportReportingServiceSubmitEventsProcedure = "/prehog.v1alpha.TeleportReportingService/SubmitEvents" // TeleportReportingServiceHelloTeleportProcedure is the fully-qualified name of the // TeleportReportingService's HelloTeleport RPC. TeleportReportingServiceHelloTeleportProcedure = "/prehog.v1alpha.TeleportReportingService/HelloTeleport" )
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 (
// ConnectReportingServiceName is the fully-qualified name of the ConnectReportingService service.
ConnectReportingServiceName = "prehog.v1alpha.ConnectReportingService"
)
const ( // ConnectReportingServiceSubmitConnectEventProcedure is the fully-qualified name of the // ConnectReportingService's SubmitConnectEvent RPC. ConnectReportingServiceSubmitConnectEventProcedure = "/prehog.v1alpha.ConnectReportingService/SubmitConnectEvent" )
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 (
// TbotReportingServiceName is the fully-qualified name of the TbotReportingService service.
TbotReportingServiceName = "prehog.v1alpha.TbotReportingService"
)
const ( // TbotReportingServiceSubmitTbotEventProcedure is the fully-qualified name of the // TbotReportingService's SubmitTbotEvent RPC. TbotReportingServiceSubmitTbotEventProcedure = "/prehog.v1alpha.TbotReportingService/SubmitTbotEvent" )
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 (
// TeleportReportingServiceName is the fully-qualified name of the TeleportReportingService service.
TeleportReportingServiceName = "prehog.v1alpha.TeleportReportingService"
)
Variables ¶
This section is empty.
Functions ¶
func NewConnectReportingServiceHandler ¶
func NewConnectReportingServiceHandler(svc ConnectReportingServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
NewConnectReportingServiceHandler 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 NewTbotReportingServiceHandler ¶
func NewTbotReportingServiceHandler(svc TbotReportingServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
NewTbotReportingServiceHandler 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 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 ConnectReportingServiceClient ¶
type ConnectReportingServiceClient interface {
SubmitConnectEvent(context.Context, *connect_go.Request[v1alpha.SubmitConnectEventRequest]) (*connect_go.Response[v1alpha.SubmitConnectEventResponse], error)
}
ConnectReportingServiceClient is a client for the prehog.v1alpha.ConnectReportingService service.
func NewConnectReportingServiceClient ¶
func NewConnectReportingServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) ConnectReportingServiceClient
NewConnectReportingServiceClient constructs a client for the prehog.v1alpha.ConnectReportingService 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 ConnectReportingServiceHandler ¶
type ConnectReportingServiceHandler interface {
SubmitConnectEvent(context.Context, *connect_go.Request[v1alpha.SubmitConnectEventRequest]) (*connect_go.Response[v1alpha.SubmitConnectEventResponse], error)
}
ConnectReportingServiceHandler is an implementation of the prehog.v1alpha.ConnectReportingService service.
type TbotReportingServiceClient ¶
type TbotReportingServiceClient interface {
SubmitTbotEvent(context.Context, *connect_go.Request[v1alpha.SubmitTbotEventRequest]) (*connect_go.Response[v1alpha.SubmitTbotEventResponse], error)
}
TbotReportingServiceClient is a client for the prehog.v1alpha.TbotReportingService service.
func NewTbotReportingServiceClient ¶
func NewTbotReportingServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) TbotReportingServiceClient
NewTbotReportingServiceClient constructs a client for the prehog.v1alpha.TbotReportingService 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 TbotReportingServiceHandler ¶
type TbotReportingServiceHandler interface {
SubmitTbotEvent(context.Context, *connect_go.Request[v1alpha.SubmitTbotEventRequest]) (*connect_go.Response[v1alpha.SubmitTbotEventResponse], error)
}
TbotReportingServiceHandler is an implementation of the prehog.v1alpha.TbotReportingService service.
type TeleportReportingServiceClient ¶
type TeleportReportingServiceClient interface { // equivalent to SubmitEvents with a single event, should be unused by now // // Deprecated: do not use. SubmitEvent(context.Context, *connect_go.Request[v1alpha.SubmitEventRequest]) (*connect_go.Response[v1alpha.SubmitEventResponse], error) // encodes and forwards usage events 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) SubmitEvents(context.Context, *connect_go.Request[v1alpha.SubmitEventsRequest]) (*connect_go.Response[v1alpha.SubmitEventsResponse], error) HelloTeleport(context.Context, *connect_go.Request[v1alpha.HelloTeleportRequest]) (*connect_go.Response[v1alpha.HelloTeleportResponse], error) }
TeleportReportingServiceClient is a client for the prehog.v1alpha.TeleportReportingService service.
func NewTeleportReportingServiceClient ¶
func NewTeleportReportingServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) TeleportReportingServiceClient
NewTeleportReportingServiceClient constructs a client for the prehog.v1alpha.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 { // equivalent to SubmitEvents with a single event, should be unused by now // // Deprecated: do not use. SubmitEvent(context.Context, *connect_go.Request[v1alpha.SubmitEventRequest]) (*connect_go.Response[v1alpha.SubmitEventResponse], error) // encodes and forwards usage events 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) SubmitEvents(context.Context, *connect_go.Request[v1alpha.SubmitEventsRequest]) (*connect_go.Response[v1alpha.SubmitEventsResponse], error) HelloTeleport(context.Context, *connect_go.Request[v1alpha.HelloTeleportRequest]) (*connect_go.Response[v1alpha.HelloTeleportResponse], error) }
TeleportReportingServiceHandler is an implementation of the prehog.v1alpha.TeleportReportingService service.
type UnimplementedConnectReportingServiceHandler ¶
type UnimplementedConnectReportingServiceHandler struct{}
UnimplementedConnectReportingServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedConnectReportingServiceHandler) SubmitConnectEvent ¶
func (UnimplementedConnectReportingServiceHandler) SubmitConnectEvent(context.Context, *connect_go.Request[v1alpha.SubmitConnectEventRequest]) (*connect_go.Response[v1alpha.SubmitConnectEventResponse], error)
type UnimplementedTbotReportingServiceHandler ¶
type UnimplementedTbotReportingServiceHandler struct{}
UnimplementedTbotReportingServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedTbotReportingServiceHandler) SubmitTbotEvent ¶
func (UnimplementedTbotReportingServiceHandler) SubmitTbotEvent(context.Context, *connect_go.Request[v1alpha.SubmitTbotEventRequest]) (*connect_go.Response[v1alpha.SubmitTbotEventResponse], error)
type UnimplementedTeleportReportingServiceHandler ¶
type UnimplementedTeleportReportingServiceHandler struct{}
UnimplementedTeleportReportingServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedTeleportReportingServiceHandler) HelloTeleport ¶
func (UnimplementedTeleportReportingServiceHandler) HelloTeleport(context.Context, *connect_go.Request[v1alpha.HelloTeleportRequest]) (*connect_go.Response[v1alpha.HelloTeleportResponse], error)
func (UnimplementedTeleportReportingServiceHandler) SubmitEvent ¶
func (UnimplementedTeleportReportingServiceHandler) SubmitEvent(context.Context, *connect_go.Request[v1alpha.SubmitEventRequest]) (*connect_go.Response[v1alpha.SubmitEventResponse], error)
func (UnimplementedTeleportReportingServiceHandler) SubmitEvents ¶
func (UnimplementedTeleportReportingServiceHandler) SubmitEvents(context.Context, *connect_go.Request[v1alpha.SubmitEventsRequest]) (*connect_go.Response[v1alpha.SubmitEventsResponse], error)