errorgroups

package
v0.0.0-...-e07e0bf Latest Latest
Warning

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

Go to latest
Published: Dec 24, 2025 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ErrorGroupsService_GetGroups_FullMethodName   = "/errorgroups.v1.ErrorGroupsService/GetGroups"
	ErrorGroupsService_GetHist_FullMethodName     = "/errorgroups.v1.ErrorGroupsService/GetHist"
	ErrorGroupsService_GetDetails_FullMethodName  = "/errorgroups.v1.ErrorGroupsService/GetDetails"
	ErrorGroupsService_GetReleases_FullMethodName = "/errorgroups.v1.ErrorGroupsService/GetReleases"
	ErrorGroupsService_GetServices_FullMethodName = "/errorgroups.v1.ErrorGroupsService/GetServices"
)

Variables

View Source
var (
	Order_name = map[int32]string{
		0: "ORDER_FREQUENT",
		1: "ORDER_LATEST",
		2: "ORDER_OLDEST",
	}
	Order_value = map[string]int32{
		"ORDER_FREQUENT": 0,
		"ORDER_LATEST":   1,
		"ORDER_OLDEST":   2,
	}
)

Enum value maps for Order.

View Source
var ErrorGroupsService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "errorgroups.v1.ErrorGroupsService",
	HandlerType: (*ErrorGroupsServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetGroups",
			Handler:    _ErrorGroupsService_GetGroups_Handler,
		},
		{
			MethodName: "GetHist",
			Handler:    _ErrorGroupsService_GetHist_Handler,
		},
		{
			MethodName: "GetDetails",
			Handler:    _ErrorGroupsService_GetDetails_Handler,
		},
		{
			MethodName: "GetReleases",
			Handler:    _ErrorGroupsService_GetReleases_Handler,
		},
		{
			MethodName: "GetServices",
			Handler:    _ErrorGroupsService_GetServices_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "errorgroups/v1/errorgroups.proto",
}

ErrorGroupsService_ServiceDesc is the grpc.ServiceDesc for ErrorGroupsService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_errorgroups_v1_errorgroups_proto protoreflect.FileDescriptor

Functions

func RegisterErrorGroupsServiceServer

func RegisterErrorGroupsServiceServer(s grpc.ServiceRegistrar, srv ErrorGroupsServiceServer)

Types

type Bucket

type Bucket struct {
	Time  *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=time,proto3" json:"time,omitempty"`
	Count uint64                 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*Bucket) Descriptor deprecated

func (*Bucket) Descriptor() ([]byte, []int)

Deprecated: Use Bucket.ProtoReflect.Descriptor instead.

func (*Bucket) GetCount

func (x *Bucket) GetCount() uint64

func (*Bucket) GetTime

func (x *Bucket) GetTime() *timestamppb.Timestamp

func (*Bucket) ProtoMessage

func (*Bucket) ProtoMessage()

func (*Bucket) ProtoReflect

func (x *Bucket) ProtoReflect() protoreflect.Message

func (*Bucket) Reset

func (x *Bucket) Reset()

func (*Bucket) String

func (x *Bucket) String() string

type ErrorGroupsServiceClient

type ErrorGroupsServiceClient interface {
	GetGroups(ctx context.Context, in *GetGroupsRequest, opts ...grpc.CallOption) (*GetGroupsResponse, error)
	GetHist(ctx context.Context, in *GetHistRequest, opts ...grpc.CallOption) (*GetHistResponse, error)
	GetDetails(ctx context.Context, in *GetDetailsRequest, opts ...grpc.CallOption) (*GetDetailsResponse, error)
	GetReleases(ctx context.Context, in *GetReleasesRequest, opts ...grpc.CallOption) (*GetReleasesResponse, error)
	GetServices(ctx context.Context, in *GetServicesRequest, opts ...grpc.CallOption) (*GetServicesResponse, error)
}

ErrorGroupsServiceClient is the client API for ErrorGroupsService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type ErrorGroupsServiceServer

ErrorGroupsServiceServer is the server API for ErrorGroupsService service. All implementations should embed UnimplementedErrorGroupsServiceServer for forward compatibility

type GetDetailsRequest

type GetDetailsRequest struct {
	Service   string  `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	GroupHash uint64  `protobuf:"varint,2,opt,name=group_hash,json=groupHash,proto3" json:"group_hash,omitempty"`
	Env       *string `protobuf:"bytes,3,opt,name=env,proto3,oneof" json:"env,omitempty"`
	Release   *string `protobuf:"bytes,4,opt,name=release,proto3,oneof" json:"release,omitempty"`
	Source    *string `protobuf:"bytes,5,opt,name=source,proto3,oneof" json:"source,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDetailsRequest) Descriptor deprecated

func (*GetDetailsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetDetailsRequest.ProtoReflect.Descriptor instead.

func (*GetDetailsRequest) GetEnv

func (x *GetDetailsRequest) GetEnv() string

func (*GetDetailsRequest) GetGroupHash

func (x *GetDetailsRequest) GetGroupHash() uint64

func (*GetDetailsRequest) GetRelease

func (x *GetDetailsRequest) GetRelease() string

func (*GetDetailsRequest) GetService

func (x *GetDetailsRequest) GetService() string

func (*GetDetailsRequest) GetSource

func (x *GetDetailsRequest) GetSource() string

func (*GetDetailsRequest) ProtoMessage

func (*GetDetailsRequest) ProtoMessage()

func (*GetDetailsRequest) ProtoReflect

func (x *GetDetailsRequest) ProtoReflect() protoreflect.Message

func (*GetDetailsRequest) Reset

func (x *GetDetailsRequest) Reset()

func (*GetDetailsRequest) String

func (x *GetDetailsRequest) String() string

type GetDetailsResponse

type GetDetailsResponse struct {
	GroupHash     uint64                            `protobuf:"varint,1,opt,name=group_hash,json=groupHash,proto3" json:"group_hash,omitempty"`
	Message       string                            `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	SeenTotal     uint64                            `protobuf:"varint,3,opt,name=seen_total,json=seenTotal,proto3" json:"seen_total,omitempty"`
	FirstSeenAt   *timestamppb.Timestamp            `protobuf:"bytes,4,opt,name=first_seen_at,json=firstSeenAt,proto3" json:"first_seen_at,omitempty"`
	LastSeenAt    *timestamppb.Timestamp            `protobuf:"bytes,5,opt,name=last_seen_at,json=lastSeenAt,proto3" json:"last_seen_at,omitempty"`
	Distributions *GetDetailsResponse_Distributions `protobuf:"bytes,6,opt,name=distributions,proto3" json:"distributions,omitempty"`
	LogTags       map[string]string                 `` /* 170-byte string literal not displayed */
	Source        string                            `protobuf:"bytes,8,opt,name=source,proto3" json:"source,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDetailsResponse) Descriptor deprecated

func (*GetDetailsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetDetailsResponse.ProtoReflect.Descriptor instead.

func (*GetDetailsResponse) GetDistributions

func (*GetDetailsResponse) GetFirstSeenAt

func (x *GetDetailsResponse) GetFirstSeenAt() *timestamppb.Timestamp

func (*GetDetailsResponse) GetGroupHash

func (x *GetDetailsResponse) GetGroupHash() uint64

func (*GetDetailsResponse) GetLastSeenAt

func (x *GetDetailsResponse) GetLastSeenAt() *timestamppb.Timestamp

func (*GetDetailsResponse) GetLogTags

func (x *GetDetailsResponse) GetLogTags() map[string]string

func (*GetDetailsResponse) GetMessage

func (x *GetDetailsResponse) GetMessage() string

func (*GetDetailsResponse) GetSeenTotal

func (x *GetDetailsResponse) GetSeenTotal() uint64

func (*GetDetailsResponse) GetSource

func (x *GetDetailsResponse) GetSource() string

func (*GetDetailsResponse) ProtoMessage

func (*GetDetailsResponse) ProtoMessage()

func (*GetDetailsResponse) ProtoReflect

func (x *GetDetailsResponse) ProtoReflect() protoreflect.Message

func (*GetDetailsResponse) Reset

func (x *GetDetailsResponse) Reset()

func (*GetDetailsResponse) String

func (x *GetDetailsResponse) String() string

type GetDetailsResponse_Distribution

type GetDetailsResponse_Distribution struct {
	Value   string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	Percent uint64 `protobuf:"varint,2,opt,name=percent,proto3" json:"percent,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDetailsResponse_Distribution) Descriptor deprecated

func (*GetDetailsResponse_Distribution) Descriptor() ([]byte, []int)

Deprecated: Use GetDetailsResponse_Distribution.ProtoReflect.Descriptor instead.

func (*GetDetailsResponse_Distribution) GetPercent

func (x *GetDetailsResponse_Distribution) GetPercent() uint64

func (*GetDetailsResponse_Distribution) GetValue

func (*GetDetailsResponse_Distribution) ProtoMessage

func (*GetDetailsResponse_Distribution) ProtoMessage()

func (*GetDetailsResponse_Distribution) ProtoReflect

func (*GetDetailsResponse_Distribution) Reset

func (*GetDetailsResponse_Distribution) String

type GetDetailsResponse_Distributions

type GetDetailsResponse_Distributions struct {
	ByEnv     []*GetDetailsResponse_Distribution `protobuf:"bytes,1,rep,name=by_env,json=byEnv,proto3" json:"by_env,omitempty"`
	ByRelease []*GetDetailsResponse_Distribution `protobuf:"bytes,2,rep,name=by_release,json=byRelease,proto3" json:"by_release,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDetailsResponse_Distributions) Descriptor deprecated

func (*GetDetailsResponse_Distributions) Descriptor() ([]byte, []int)

Deprecated: Use GetDetailsResponse_Distributions.ProtoReflect.Descriptor instead.

func (*GetDetailsResponse_Distributions) GetByEnv

func (*GetDetailsResponse_Distributions) GetByRelease

func (*GetDetailsResponse_Distributions) ProtoMessage

func (*GetDetailsResponse_Distributions) ProtoMessage()

func (*GetDetailsResponse_Distributions) ProtoReflect

func (*GetDetailsResponse_Distributions) Reset

func (*GetDetailsResponse_Distributions) String

type GetGroupsRequest

type GetGroupsRequest struct {
	Service   string               `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	Env       *string              `protobuf:"bytes,2,opt,name=env,proto3,oneof" json:"env,omitempty"`
	Release   *string              `protobuf:"bytes,3,opt,name=release,proto3,oneof" json:"release,omitempty"`
	Duration  *durationpb.Duration `protobuf:"bytes,4,opt,name=duration,proto3" json:"duration,omitempty"`
	Limit     uint32               `protobuf:"varint,5,opt,name=limit,proto3" json:"limit,omitempty"`
	Offset    uint32               `protobuf:"varint,6,opt,name=offset,proto3" json:"offset,omitempty"`
	Order     Order                `protobuf:"varint,7,opt,name=order,proto3,enum=errorgroups.v1.Order" json:"order,omitempty"`
	WithTotal bool                 `protobuf:"varint,8,opt,name=with_total,json=withTotal,proto3" json:"with_total,omitempty"`
	Source    *string              `protobuf:"bytes,9,opt,name=source,proto3,oneof" json:"source,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGroupsRequest) Descriptor deprecated

func (*GetGroupsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetGroupsRequest.ProtoReflect.Descriptor instead.

func (*GetGroupsRequest) GetDuration

func (x *GetGroupsRequest) GetDuration() *durationpb.Duration

func (*GetGroupsRequest) GetEnv

func (x *GetGroupsRequest) GetEnv() string

func (*GetGroupsRequest) GetLimit

func (x *GetGroupsRequest) GetLimit() uint32

func (*GetGroupsRequest) GetOffset

func (x *GetGroupsRequest) GetOffset() uint32

func (*GetGroupsRequest) GetOrder

func (x *GetGroupsRequest) GetOrder() Order

func (*GetGroupsRequest) GetRelease

func (x *GetGroupsRequest) GetRelease() string

func (*GetGroupsRequest) GetService

func (x *GetGroupsRequest) GetService() string

func (*GetGroupsRequest) GetSource

func (x *GetGroupsRequest) GetSource() string

func (*GetGroupsRequest) GetWithTotal

func (x *GetGroupsRequest) GetWithTotal() bool

func (*GetGroupsRequest) ProtoMessage

func (*GetGroupsRequest) ProtoMessage()

func (*GetGroupsRequest) ProtoReflect

func (x *GetGroupsRequest) ProtoReflect() protoreflect.Message

func (*GetGroupsRequest) Reset

func (x *GetGroupsRequest) Reset()

func (*GetGroupsRequest) String

func (x *GetGroupsRequest) String() string

type GetGroupsResponse

type GetGroupsResponse struct {
	Total  uint64   `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	Groups []*Group `protobuf:"bytes,2,rep,name=groups,proto3" json:"groups,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGroupsResponse) Descriptor deprecated

func (*GetGroupsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetGroupsResponse.ProtoReflect.Descriptor instead.

func (*GetGroupsResponse) GetGroups

func (x *GetGroupsResponse) GetGroups() []*Group

func (*GetGroupsResponse) GetTotal

func (x *GetGroupsResponse) GetTotal() uint64

func (*GetGroupsResponse) ProtoMessage

func (*GetGroupsResponse) ProtoMessage()

func (*GetGroupsResponse) ProtoReflect

func (x *GetGroupsResponse) ProtoReflect() protoreflect.Message

func (*GetGroupsResponse) Reset

func (x *GetGroupsResponse) Reset()

func (*GetGroupsResponse) String

func (x *GetGroupsResponse) String() string

type GetHistRequest

type GetHistRequest struct {
	Service   string               `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	GroupHash *uint64              `protobuf:"varint,2,opt,name=group_hash,json=groupHash,proto3,oneof" json:"group_hash,omitempty"`
	Env       *string              `protobuf:"bytes,3,opt,name=env,proto3,oneof" json:"env,omitempty"`
	Release   *string              `protobuf:"bytes,4,opt,name=release,proto3,oneof" json:"release,omitempty"`
	Duration  *durationpb.Duration `protobuf:"bytes,5,opt,name=duration,proto3,oneof" json:"duration,omitempty"`
	Source    *string              `protobuf:"bytes,6,opt,name=source,proto3,oneof" json:"source,omitempty"`
	// contains filtered or unexported fields
}

func (*GetHistRequest) Descriptor deprecated

func (*GetHistRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetHistRequest.ProtoReflect.Descriptor instead.

func (*GetHistRequest) GetDuration

func (x *GetHistRequest) GetDuration() *durationpb.Duration

func (*GetHistRequest) GetEnv

func (x *GetHistRequest) GetEnv() string

func (*GetHistRequest) GetGroupHash

func (x *GetHistRequest) GetGroupHash() uint64

func (*GetHistRequest) GetRelease

func (x *GetHistRequest) GetRelease() string

func (*GetHistRequest) GetService

func (x *GetHistRequest) GetService() string

func (*GetHistRequest) GetSource

func (x *GetHistRequest) GetSource() string

func (*GetHistRequest) ProtoMessage

func (*GetHistRequest) ProtoMessage()

func (*GetHistRequest) ProtoReflect

func (x *GetHistRequest) ProtoReflect() protoreflect.Message

func (*GetHistRequest) Reset

func (x *GetHistRequest) Reset()

func (*GetHistRequest) String

func (x *GetHistRequest) String() string

type GetHistResponse

type GetHistResponse struct {
	Buckets []*Bucket `protobuf:"bytes,1,rep,name=buckets,proto3" json:"buckets,omitempty"`
	// contains filtered or unexported fields
}

func (*GetHistResponse) Descriptor deprecated

func (*GetHistResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetHistResponse.ProtoReflect.Descriptor instead.

func (*GetHistResponse) GetBuckets

func (x *GetHistResponse) GetBuckets() []*Bucket

func (*GetHistResponse) ProtoMessage

func (*GetHistResponse) ProtoMessage()

func (*GetHistResponse) ProtoReflect

func (x *GetHistResponse) ProtoReflect() protoreflect.Message

func (*GetHistResponse) Reset

func (x *GetHistResponse) Reset()

func (*GetHistResponse) String

func (x *GetHistResponse) String() string

type GetReleasesRequest

type GetReleasesRequest struct {
	Service string  `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	Env     *string `protobuf:"bytes,3,opt,name=env,proto3,oneof" json:"env,omitempty"`
	// contains filtered or unexported fields
}

func (*GetReleasesRequest) Descriptor deprecated

func (*GetReleasesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetReleasesRequest.ProtoReflect.Descriptor instead.

func (*GetReleasesRequest) GetEnv

func (x *GetReleasesRequest) GetEnv() string

func (*GetReleasesRequest) GetService

func (x *GetReleasesRequest) GetService() string

func (*GetReleasesRequest) ProtoMessage

func (*GetReleasesRequest) ProtoMessage()

func (*GetReleasesRequest) ProtoReflect

func (x *GetReleasesRequest) ProtoReflect() protoreflect.Message

func (*GetReleasesRequest) Reset

func (x *GetReleasesRequest) Reset()

func (*GetReleasesRequest) String

func (x *GetReleasesRequest) String() string

type GetReleasesResponse

type GetReleasesResponse struct {
	Releases []string `protobuf:"bytes,1,rep,name=releases,proto3" json:"releases,omitempty"`
	// contains filtered or unexported fields
}

func (*GetReleasesResponse) Descriptor deprecated

func (*GetReleasesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetReleasesResponse.ProtoReflect.Descriptor instead.

func (*GetReleasesResponse) GetReleases

func (x *GetReleasesResponse) GetReleases() []string

func (*GetReleasesResponse) ProtoMessage

func (*GetReleasesResponse) ProtoMessage()

func (*GetReleasesResponse) ProtoReflect

func (x *GetReleasesResponse) ProtoReflect() protoreflect.Message

func (*GetReleasesResponse) Reset

func (x *GetReleasesResponse) Reset()

func (*GetReleasesResponse) String

func (x *GetReleasesResponse) String() string

type GetServicesRequest

type GetServicesRequest struct {
	Query  string  `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	Env    *string `protobuf:"bytes,2,opt,name=env,proto3,oneof" json:"env,omitempty"`
	Limit  uint32  `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
	Offset uint32  `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServicesRequest) Descriptor deprecated

func (*GetServicesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetServicesRequest.ProtoReflect.Descriptor instead.

func (*GetServicesRequest) GetEnv

func (x *GetServicesRequest) GetEnv() string

func (*GetServicesRequest) GetLimit

func (x *GetServicesRequest) GetLimit() uint32

func (*GetServicesRequest) GetOffset

func (x *GetServicesRequest) GetOffset() uint32

func (*GetServicesRequest) GetQuery

func (x *GetServicesRequest) GetQuery() string

func (*GetServicesRequest) ProtoMessage

func (*GetServicesRequest) ProtoMessage()

func (*GetServicesRequest) ProtoReflect

func (x *GetServicesRequest) ProtoReflect() protoreflect.Message

func (*GetServicesRequest) Reset

func (x *GetServicesRequest) Reset()

func (*GetServicesRequest) String

func (x *GetServicesRequest) String() string

type GetServicesResponse

type GetServicesResponse struct {
	Services []string `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServicesResponse) Descriptor deprecated

func (*GetServicesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetServicesResponse.ProtoReflect.Descriptor instead.

func (*GetServicesResponse) GetServices

func (x *GetServicesResponse) GetServices() []string

func (*GetServicesResponse) ProtoMessage

func (*GetServicesResponse) ProtoMessage()

func (*GetServicesResponse) ProtoReflect

func (x *GetServicesResponse) ProtoReflect() protoreflect.Message

func (*GetServicesResponse) Reset

func (x *GetServicesResponse) Reset()

func (*GetServicesResponse) String

func (x *GetServicesResponse) String() string

type Group

type Group struct {
	Hash        uint64                 `protobuf:"varint,1,opt,name=hash,proto3" json:"hash,omitempty"`
	Message     string                 `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	SeenTotal   uint64                 `protobuf:"varint,3,opt,name=seen_total,json=seenTotal,proto3" json:"seen_total,omitempty"`
	FirstSeenAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=first_seen_at,json=firstSeenAt,proto3" json:"first_seen_at,omitempty"`
	LastSeenAt  *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=last_seen_at,json=lastSeenAt,proto3" json:"last_seen_at,omitempty"`
	Source      string                 `protobuf:"bytes,6,opt,name=source,proto3" json:"source,omitempty"`
	// contains filtered or unexported fields
}

func (*Group) Descriptor deprecated

func (*Group) Descriptor() ([]byte, []int)

Deprecated: Use Group.ProtoReflect.Descriptor instead.

func (*Group) GetFirstSeenAt

func (x *Group) GetFirstSeenAt() *timestamppb.Timestamp

func (*Group) GetHash

func (x *Group) GetHash() uint64

func (*Group) GetLastSeenAt

func (x *Group) GetLastSeenAt() *timestamppb.Timestamp

func (*Group) GetMessage

func (x *Group) GetMessage() string

func (*Group) GetSeenTotal

func (x *Group) GetSeenTotal() uint64

func (*Group) GetSource

func (x *Group) GetSource() string

func (*Group) ProtoMessage

func (*Group) ProtoMessage()

func (*Group) ProtoReflect

func (x *Group) ProtoReflect() protoreflect.Message

func (*Group) Reset

func (x *Group) Reset()

func (*Group) String

func (x *Group) String() string

type Order

type Order int32
const (
	Order_ORDER_FREQUENT Order = 0
	Order_ORDER_LATEST   Order = 1
	Order_ORDER_OLDEST   Order = 2
)

func (Order) Descriptor

func (Order) Descriptor() protoreflect.EnumDescriptor

func (Order) Enum

func (x Order) Enum() *Order

func (Order) EnumDescriptor deprecated

func (Order) EnumDescriptor() ([]byte, []int)

Deprecated: Use Order.Descriptor instead.

func (Order) Number

func (x Order) Number() protoreflect.EnumNumber

func (Order) String

func (x Order) String() string

func (Order) Type

func (Order) Type() protoreflect.EnumType

type UnimplementedErrorGroupsServiceServer

type UnimplementedErrorGroupsServiceServer struct {
}

UnimplementedErrorGroupsServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedErrorGroupsServiceServer) GetDetails

func (UnimplementedErrorGroupsServiceServer) GetGroups

func (UnimplementedErrorGroupsServiceServer) GetHist

func (UnimplementedErrorGroupsServiceServer) GetReleases

func (UnimplementedErrorGroupsServiceServer) GetServices

type UnsafeErrorGroupsServiceServer

type UnsafeErrorGroupsServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeErrorGroupsServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ErrorGroupsServiceServer will result in compilation errors.

Jump to

Keyboard shortcuts

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