debug

package
v2.10.0 Latest Latest
Warning

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

Go to latest
Published: May 15, 2024 License: Apache-2.0 Imports: 35 Imported by: 0

Documentation

Overview

Package debug is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	Debug_Profile_FullMethodName               = "/debug_v2.Debug/Profile"
	Debug_Binary_FullMethodName                = "/debug_v2.Debug/Binary"
	Debug_Dump_FullMethodName                  = "/debug_v2.Debug/Dump"
	Debug_SetLogLevel_FullMethodName           = "/debug_v2.Debug/SetLogLevel"
	Debug_GetDumpV2Template_FullMethodName     = "/debug_v2.Debug/GetDumpV2Template"
	Debug_DumpV2_FullMethodName                = "/debug_v2.Debug/DumpV2"
	Debug_Trace_FullMethodName                 = "/debug_v2.Debug/Trace"
	Debug_RunPFSLoadTest_FullMethodName        = "/debug_v2.Debug/RunPFSLoadTest"
	Debug_RunPFSLoadTestDefault_FullMethodName = "/debug_v2.Debug/RunPFSLoadTestDefault"
)

Variables

View Source
var (
	SetLogLevelRequest_LogLevel_name = map[int32]string{
		0: "UNKNOWN",
		1: "DEBUG",
		2: "INFO",
		3: "ERROR",
		4: "OFF",
	}
	SetLogLevelRequest_LogLevel_value = map[string]int32{
		"UNKNOWN": 0,
		"DEBUG":   1,
		"INFO":    2,
		"ERROR":   3,
		"OFF":     4,
	}
)

Enum value maps for SetLogLevelRequest_LogLevel.

View Source
var Debug_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "debug_v2.Debug",
	HandlerType: (*DebugServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SetLogLevel",
			Handler:    _Debug_SetLogLevel_Handler,
		},
		{
			MethodName: "GetDumpV2Template",
			Handler:    _Debug_GetDumpV2Template_Handler,
		},
		{
			MethodName: "RunPFSLoadTest",
			Handler:    _Debug_RunPFSLoadTest_Handler,
		},
		{
			MethodName: "RunPFSLoadTestDefault",
			Handler:    _Debug_RunPFSLoadTestDefault_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "Profile",
			Handler:       _Debug_Profile_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "Binary",
			Handler:       _Debug_Binary_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "Dump",
			Handler:       _Debug_Dump_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "DumpV2",
			Handler:       _Debug_DumpV2_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "Trace",
			Handler:       _Debug_Trace_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "debug/debug.proto",
}

Debug_ServiceDesc is the grpc.ServiceDesc for Debug 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_debug_debug_proto protoreflect.FileDescriptor

Functions

func RegisterDebugHandler added in v2.8.0

func RegisterDebugHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterDebugHandler registers the http handlers for service Debug to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterDebugHandlerClient added in v2.8.0

func RegisterDebugHandlerClient(ctx context.Context, mux *runtime.ServeMux, client DebugClient) error

RegisterDebugHandlerClient registers the http handlers for service Debug to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "DebugClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "DebugClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "DebugClient" to call the correct interceptors.

func RegisterDebugHandlerFromEndpoint added in v2.8.0

func RegisterDebugHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterDebugHandlerFromEndpoint is same as RegisterDebugHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterDebugHandlerServer added in v2.8.0

func RegisterDebugHandlerServer(ctx context.Context, mux *runtime.ServeMux, server DebugServer) error

RegisterDebugHandlerServer registers the http handlers for service Debug to "mux". UnaryRPC :call DebugServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterDebugHandlerFromEndpoint instead.

func RegisterDebugServer

func RegisterDebugServer(s grpc.ServiceRegistrar, srv DebugServer)

Types

type App added in v2.7.0

type App struct {
	Name     string               `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Pods     []*Pod               `protobuf:"bytes,2,rep,name=pods,proto3" json:"pods,omitempty"`
	Timeout  *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	Pipeline *Pipeline            `protobuf:"bytes,4,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// Types that are assignable to ExtraArgs:
	//
	//	*App_LokiArgs
	//	*App_ProfileArgs
	ExtraArgs isApp_ExtraArgs `protobuf_oneof:"extra_args"`
	// contains filtered or unexported fields
}

func (*App) Descriptor deprecated added in v2.7.0

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

Deprecated: Use App.ProtoReflect.Descriptor instead.

func (*App) GetExtraArgs added in v2.9.4

func (m *App) GetExtraArgs() isApp_ExtraArgs

func (*App) GetLokiArgs added in v2.9.4

func (x *App) GetLokiArgs() *LokiArgs

func (*App) GetName added in v2.7.0

func (x *App) GetName() string

func (*App) GetPipeline added in v2.7.0

func (x *App) GetPipeline() *Pipeline

func (*App) GetPods added in v2.7.0

func (x *App) GetPods() []*Pod

func (*App) GetProfileArgs added in v2.9.4

func (x *App) GetProfileArgs() *ProfileArgs

func (*App) GetTimeout added in v2.7.0

func (x *App) GetTimeout() *durationpb.Duration

func (*App) MarshalLogObject added in v2.7.0

func (x *App) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*App) ProtoMessage added in v2.7.0

func (*App) ProtoMessage()

func (*App) ProtoReflect added in v2.7.0

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

func (*App) Reset added in v2.7.0

func (x *App) Reset()

func (*App) String added in v2.7.0

func (x *App) String() string

func (*App) Validate added in v2.8.0

func (m *App) Validate() error

Validate checks the field values on App with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*App) ValidateAll added in v2.8.0

func (m *App) ValidateAll() error

ValidateAll checks the field values on App with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AppMultiError, or nil if none found.

type AppMultiError added in v2.8.0

type AppMultiError []error

AppMultiError is an error wrapping multiple validation errors returned by App.ValidateAll() if the designated constraints aren't met.

func (AppMultiError) AllErrors added in v2.8.0

func (m AppMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppMultiError) Error added in v2.8.0

func (m AppMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AppValidationError added in v2.8.0

type AppValidationError struct {
	// contains filtered or unexported fields
}

AppValidationError is the validation error returned by App.Validate if the designated constraints aren't met.

func (AppValidationError) Cause added in v2.8.0

func (e AppValidationError) Cause() error

Cause function returns cause value.

func (AppValidationError) Error added in v2.8.0

func (e AppValidationError) Error() string

Error satisfies the builtin error interface

func (AppValidationError) ErrorName added in v2.8.0

func (e AppValidationError) ErrorName() string

ErrorName returns error name.

func (AppValidationError) Field added in v2.8.0

func (e AppValidationError) Field() string

Field function returns field value.

func (AppValidationError) Key added in v2.8.0

func (e AppValidationError) Key() bool

Key function returns key value.

func (AppValidationError) Reason added in v2.8.0

func (e AppValidationError) Reason() string

Reason function returns reason value.

type App_LokiArgs added in v2.9.4

type App_LokiArgs struct {
	LokiArgs *LokiArgs `protobuf:"bytes,5,opt,name=loki_args,json=lokiArgs,proto3,oneof"`
}

type App_ProfileArgs added in v2.9.4

type App_ProfileArgs struct {
	ProfileArgs *ProfileArgs `protobuf:"bytes,6,opt,name=profile_args,json=profileArgs,proto3,oneof"`
}

type BinaryRequest

type BinaryRequest struct {
	Filter *Filter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

func (*BinaryRequest) Descriptor deprecated

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

Deprecated: Use BinaryRequest.ProtoReflect.Descriptor instead.

func (*BinaryRequest) GetFilter

func (x *BinaryRequest) GetFilter() *Filter

func (*BinaryRequest) MarshalLogObject

func (x *BinaryRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*BinaryRequest) ProtoMessage

func (*BinaryRequest) ProtoMessage()

func (*BinaryRequest) ProtoReflect added in v2.7.0

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

func (*BinaryRequest) Reset

func (x *BinaryRequest) Reset()

func (*BinaryRequest) String

func (x *BinaryRequest) String() string

func (*BinaryRequest) Validate added in v2.8.0

func (m *BinaryRequest) Validate() error

Validate checks the field values on BinaryRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*BinaryRequest) ValidateAll added in v2.8.0

func (m *BinaryRequest) ValidateAll() error

ValidateAll checks the field values on BinaryRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in BinaryRequestMultiError, or nil if none found.

type BinaryRequestMultiError added in v2.8.0

type BinaryRequestMultiError []error

BinaryRequestMultiError is an error wrapping multiple validation errors returned by BinaryRequest.ValidateAll() if the designated constraints aren't met.

func (BinaryRequestMultiError) AllErrors added in v2.8.0

func (m BinaryRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (BinaryRequestMultiError) Error added in v2.8.0

func (m BinaryRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type BinaryRequestValidationError added in v2.8.0

type BinaryRequestValidationError struct {
	// contains filtered or unexported fields
}

BinaryRequestValidationError is the validation error returned by BinaryRequest.Validate if the designated constraints aren't met.

func (BinaryRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (BinaryRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (BinaryRequestValidationError) ErrorName added in v2.8.0

func (e BinaryRequestValidationError) ErrorName() string

ErrorName returns error name.

func (BinaryRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (BinaryRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (BinaryRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DebugClient

type DebugClient interface {
	Profile(ctx context.Context, in *ProfileRequest, opts ...grpc.CallOption) (Debug_ProfileClient, error)
	Binary(ctx context.Context, in *BinaryRequest, opts ...grpc.CallOption) (Debug_BinaryClient, error)
	Dump(ctx context.Context, in *DumpRequest, opts ...grpc.CallOption) (Debug_DumpClient, error)
	SetLogLevel(ctx context.Context, in *SetLogLevelRequest, opts ...grpc.CallOption) (*SetLogLevelResponse, error)
	GetDumpV2Template(ctx context.Context, in *GetDumpV2TemplateRequest, opts ...grpc.CallOption) (*GetDumpV2TemplateResponse, error)
	DumpV2(ctx context.Context, in *DumpV2Request, opts ...grpc.CallOption) (Debug_DumpV2Client, error)
	Trace(ctx context.Context, in *TraceRequest, opts ...grpc.CallOption) (Debug_TraceClient, error)
	// RunLoadTest runs a load test.
	RunPFSLoadTest(ctx context.Context, in *RunPFSLoadTestRequest, opts ...grpc.CallOption) (*RunPFSLoadTestResponse, error)
	// RunLoadTestDefault runs the default load tests.
	RunPFSLoadTestDefault(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*RunPFSLoadTestResponse, error)
}

DebugClient is the client API for Debug service.

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

func NewDebugClient

func NewDebugClient(cc grpc.ClientConnInterface) DebugClient

type DebugServer

type DebugServer interface {
	Profile(*ProfileRequest, Debug_ProfileServer) error
	Binary(*BinaryRequest, Debug_BinaryServer) error
	Dump(*DumpRequest, Debug_DumpServer) error
	SetLogLevel(context.Context, *SetLogLevelRequest) (*SetLogLevelResponse, error)
	GetDumpV2Template(context.Context, *GetDumpV2TemplateRequest) (*GetDumpV2TemplateResponse, error)
	DumpV2(*DumpV2Request, Debug_DumpV2Server) error
	Trace(*TraceRequest, Debug_TraceServer) error
	// RunLoadTest runs a load test.
	RunPFSLoadTest(context.Context, *RunPFSLoadTestRequest) (*RunPFSLoadTestResponse, error)
	// RunLoadTestDefault runs the default load tests.
	RunPFSLoadTestDefault(context.Context, *emptypb.Empty) (*RunPFSLoadTestResponse, error)
	// contains filtered or unexported methods
}

DebugServer is the server API for Debug service. All implementations must embed UnimplementedDebugServer for forward compatibility

type Debug_BinaryClient

type Debug_BinaryClient interface {
	Recv() (*wrapperspb.BytesValue, error)
	grpc.ClientStream
}

type Debug_BinaryServer

type Debug_BinaryServer interface {
	Send(*wrapperspb.BytesValue) error
	grpc.ServerStream
}

type Debug_DumpClient

type Debug_DumpClient interface {
	Recv() (*wrapperspb.BytesValue, error)
	grpc.ClientStream
}

type Debug_DumpServer

type Debug_DumpServer interface {
	Send(*wrapperspb.BytesValue) error
	grpc.ServerStream
}

type Debug_DumpV2Client added in v2.7.0

type Debug_DumpV2Client interface {
	Recv() (*DumpChunk, error)
	grpc.ClientStream
}

type Debug_DumpV2Server added in v2.7.0

type Debug_DumpV2Server interface {
	Send(*DumpChunk) error
	grpc.ServerStream
}

type Debug_ProfileClient

type Debug_ProfileClient interface {
	Recv() (*wrapperspb.BytesValue, error)
	grpc.ClientStream
}

type Debug_ProfileServer

type Debug_ProfileServer interface {
	Send(*wrapperspb.BytesValue) error
	grpc.ServerStream
}

type Debug_TraceClient added in v2.10.0

type Debug_TraceClient interface {
	Recv() (*TraceChunk, error)
	grpc.ClientStream
}

type Debug_TraceServer added in v2.10.0

type Debug_TraceServer interface {
	Send(*TraceChunk) error
	grpc.ServerStream
}

type DumpChunk added in v2.7.0

type DumpChunk struct {

	// Types that are assignable to Chunk:
	//
	//	*DumpChunk_Content
	//	*DumpChunk_Progress
	Chunk isDumpChunk_Chunk `protobuf_oneof:"chunk"`
	// contains filtered or unexported fields
}

func (*DumpChunk) Descriptor deprecated added in v2.7.0

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

Deprecated: Use DumpChunk.ProtoReflect.Descriptor instead.

func (*DumpChunk) GetChunk added in v2.7.0

func (m *DumpChunk) GetChunk() isDumpChunk_Chunk

func (*DumpChunk) GetContent added in v2.7.0

func (x *DumpChunk) GetContent() *DumpContent

func (*DumpChunk) GetProgress added in v2.7.0

func (x *DumpChunk) GetProgress() *DumpProgress

func (*DumpChunk) MarshalLogObject added in v2.7.0

func (x *DumpChunk) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DumpChunk) ProtoMessage added in v2.7.0

func (*DumpChunk) ProtoMessage()

func (*DumpChunk) ProtoReflect added in v2.7.0

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

func (*DumpChunk) Reset added in v2.7.0

func (x *DumpChunk) Reset()

func (*DumpChunk) String added in v2.7.0

func (x *DumpChunk) String() string

func (*DumpChunk) Validate added in v2.8.0

func (m *DumpChunk) Validate() error

Validate checks the field values on DumpChunk with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DumpChunk) ValidateAll added in v2.8.0

func (m *DumpChunk) ValidateAll() error

ValidateAll checks the field values on DumpChunk with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DumpChunkMultiError, or nil if none found.

type DumpChunkMultiError added in v2.8.0

type DumpChunkMultiError []error

DumpChunkMultiError is an error wrapping multiple validation errors returned by DumpChunk.ValidateAll() if the designated constraints aren't met.

func (DumpChunkMultiError) AllErrors added in v2.8.0

func (m DumpChunkMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DumpChunkMultiError) Error added in v2.8.0

func (m DumpChunkMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DumpChunkValidationError added in v2.8.0

type DumpChunkValidationError struct {
	// contains filtered or unexported fields
}

DumpChunkValidationError is the validation error returned by DumpChunk.Validate if the designated constraints aren't met.

func (DumpChunkValidationError) Cause added in v2.8.0

func (e DumpChunkValidationError) Cause() error

Cause function returns cause value.

func (DumpChunkValidationError) Error added in v2.8.0

func (e DumpChunkValidationError) Error() string

Error satisfies the builtin error interface

func (DumpChunkValidationError) ErrorName added in v2.8.0

func (e DumpChunkValidationError) ErrorName() string

ErrorName returns error name.

func (DumpChunkValidationError) Field added in v2.8.0

func (e DumpChunkValidationError) Field() string

Field function returns field value.

func (DumpChunkValidationError) Key added in v2.8.0

Key function returns key value.

func (DumpChunkValidationError) Reason added in v2.8.0

func (e DumpChunkValidationError) Reason() string

Reason function returns reason value.

type DumpChunk_Content added in v2.7.0

type DumpChunk_Content struct {
	Content *DumpContent `protobuf:"bytes,1,opt,name=content,proto3,oneof"`
}

type DumpChunk_Progress added in v2.7.0

type DumpChunk_Progress struct {
	Progress *DumpProgress `protobuf:"bytes,2,opt,name=progress,proto3,oneof"`
}

type DumpContent added in v2.7.0

type DumpContent struct {
	Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	// contains filtered or unexported fields
}

func (*DumpContent) Descriptor deprecated added in v2.7.0

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

Deprecated: Use DumpContent.ProtoReflect.Descriptor instead.

func (*DumpContent) GetContent added in v2.7.0

func (x *DumpContent) GetContent() []byte

func (*DumpContent) MarshalLogObject added in v2.7.0

func (x *DumpContent) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DumpContent) ProtoMessage added in v2.7.0

func (*DumpContent) ProtoMessage()

func (*DumpContent) ProtoReflect added in v2.7.0

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

func (*DumpContent) Reset added in v2.7.0

func (x *DumpContent) Reset()

func (*DumpContent) String added in v2.7.0

func (x *DumpContent) String() string

func (*DumpContent) Validate added in v2.8.0

func (m *DumpContent) Validate() error

Validate checks the field values on DumpContent with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DumpContent) ValidateAll added in v2.8.0

func (m *DumpContent) ValidateAll() error

ValidateAll checks the field values on DumpContent with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DumpContentMultiError, or nil if none found.

type DumpContentMultiError added in v2.8.0

type DumpContentMultiError []error

DumpContentMultiError is an error wrapping multiple validation errors returned by DumpContent.ValidateAll() if the designated constraints aren't met.

func (DumpContentMultiError) AllErrors added in v2.8.0

func (m DumpContentMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DumpContentMultiError) Error added in v2.8.0

func (m DumpContentMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DumpContentValidationError added in v2.8.0

type DumpContentValidationError struct {
	// contains filtered or unexported fields
}

DumpContentValidationError is the validation error returned by DumpContent.Validate if the designated constraints aren't met.

func (DumpContentValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DumpContentValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DumpContentValidationError) ErrorName added in v2.8.0

func (e DumpContentValidationError) ErrorName() string

ErrorName returns error name.

func (DumpContentValidationError) Field added in v2.8.0

Field function returns field value.

func (DumpContentValidationError) Key added in v2.8.0

Key function returns key value.

func (DumpContentValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DumpProgress added in v2.7.0

type DumpProgress struct {
	Task     string `protobuf:"bytes,1,opt,name=task,proto3" json:"task,omitempty"`
	Total    int64  `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Progress int64  `protobuf:"varint,3,opt,name=progress,proto3" json:"progress,omitempty"`
	// contains filtered or unexported fields
}

func (*DumpProgress) Descriptor deprecated added in v2.7.0

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

Deprecated: Use DumpProgress.ProtoReflect.Descriptor instead.

func (*DumpProgress) GetProgress added in v2.7.0

func (x *DumpProgress) GetProgress() int64

func (*DumpProgress) GetTask added in v2.7.0

func (x *DumpProgress) GetTask() string

func (*DumpProgress) GetTotal added in v2.7.0

func (x *DumpProgress) GetTotal() int64

func (*DumpProgress) MarshalLogObject added in v2.7.0

func (x *DumpProgress) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DumpProgress) ProtoMessage added in v2.7.0

func (*DumpProgress) ProtoMessage()

func (*DumpProgress) ProtoReflect added in v2.7.0

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

func (*DumpProgress) Reset added in v2.7.0

func (x *DumpProgress) Reset()

func (*DumpProgress) String added in v2.7.0

func (x *DumpProgress) String() string

func (*DumpProgress) Validate added in v2.8.0

func (m *DumpProgress) Validate() error

Validate checks the field values on DumpProgress with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DumpProgress) ValidateAll added in v2.8.0

func (m *DumpProgress) ValidateAll() error

ValidateAll checks the field values on DumpProgress with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DumpProgressMultiError, or nil if none found.

type DumpProgressMultiError added in v2.8.0

type DumpProgressMultiError []error

DumpProgressMultiError is an error wrapping multiple validation errors returned by DumpProgress.ValidateAll() if the designated constraints aren't met.

func (DumpProgressMultiError) AllErrors added in v2.8.0

func (m DumpProgressMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DumpProgressMultiError) Error added in v2.8.0

func (m DumpProgressMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DumpProgressValidationError added in v2.8.0

type DumpProgressValidationError struct {
	// contains filtered or unexported fields
}

DumpProgressValidationError is the validation error returned by DumpProgress.Validate if the designated constraints aren't met.

func (DumpProgressValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DumpProgressValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DumpProgressValidationError) ErrorName added in v2.8.0

func (e DumpProgressValidationError) ErrorName() string

ErrorName returns error name.

func (DumpProgressValidationError) Field added in v2.8.0

Field function returns field value.

func (DumpProgressValidationError) Key added in v2.8.0

Key function returns key value.

func (DumpProgressValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DumpRequest

type DumpRequest struct {
	Filter *Filter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
	// Limit sets the limit for the number of commits / jobs that are returned for each repo / pipeline in the dump.
	Limit int64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*DumpRequest) Descriptor deprecated

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

Deprecated: Use DumpRequest.ProtoReflect.Descriptor instead.

func (*DumpRequest) GetFilter

func (x *DumpRequest) GetFilter() *Filter

func (*DumpRequest) GetLimit

func (x *DumpRequest) GetLimit() int64

func (*DumpRequest) MarshalLogObject

func (x *DumpRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DumpRequest) ProtoMessage

func (*DumpRequest) ProtoMessage()

func (*DumpRequest) ProtoReflect added in v2.7.0

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

func (*DumpRequest) Reset

func (x *DumpRequest) Reset()

func (*DumpRequest) String

func (x *DumpRequest) String() string

func (*DumpRequest) Validate added in v2.8.0

func (m *DumpRequest) Validate() error

Validate checks the field values on DumpRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DumpRequest) ValidateAll added in v2.8.0

func (m *DumpRequest) ValidateAll() error

ValidateAll checks the field values on DumpRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DumpRequestMultiError, or nil if none found.

type DumpRequestMultiError added in v2.8.0

type DumpRequestMultiError []error

DumpRequestMultiError is an error wrapping multiple validation errors returned by DumpRequest.ValidateAll() if the designated constraints aren't met.

func (DumpRequestMultiError) AllErrors added in v2.8.0

func (m DumpRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DumpRequestMultiError) Error added in v2.8.0

func (m DumpRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DumpRequestValidationError added in v2.8.0

type DumpRequestValidationError struct {
	// contains filtered or unexported fields
}

DumpRequestValidationError is the validation error returned by DumpRequest.Validate if the designated constraints aren't met.

func (DumpRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DumpRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DumpRequestValidationError) ErrorName added in v2.8.0

func (e DumpRequestValidationError) ErrorName() string

ErrorName returns error name.

func (DumpRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DumpRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DumpRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DumpV2Request added in v2.7.0

type DumpV2Request struct {

	// Which system-level information to include in the debug dump.
	System *System `protobuf:"bytes,1,opt,name=system,proto3" json:"system,omitempty"`
	// Which pipelines to fetch information about and include in the debug dump.
	Pipelines []*Pipeline `protobuf:"bytes,2,rep,name=pipelines,proto3" json:"pipelines,omitempty"`
	// If true, fetch information about non-output repos.
	InputRepos bool `protobuf:"varint,3,opt,name=input_repos,json=inputRepos,proto3" json:"input_repos,omitempty"`
	// How long to run the dump for.
	Timeout *durationpb.Duration `protobuf:"bytes,4,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// Which defaults to include in the debug dump.
	Defaults *DumpV2Request_Defaults `protobuf:"bytes,5,opt,name=defaults,proto3" json:"defaults,omitempty"`
	// A list of Starlark scripts to run.
	StarlarkScripts []*Starlark `protobuf:"bytes,6,rep,name=starlark_scripts,json=starlarkScripts,proto3" json:"starlark_scripts,omitempty"`
	// contains filtered or unexported fields
}

func (*DumpV2Request) Descriptor deprecated added in v2.7.0

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

Deprecated: Use DumpV2Request.ProtoReflect.Descriptor instead.

func (*DumpV2Request) GetDefaults added in v2.8.0

func (x *DumpV2Request) GetDefaults() *DumpV2Request_Defaults

func (*DumpV2Request) GetInputRepos added in v2.7.0

func (x *DumpV2Request) GetInputRepos() bool

func (*DumpV2Request) GetPipelines added in v2.7.0

func (x *DumpV2Request) GetPipelines() []*Pipeline

func (*DumpV2Request) GetStarlarkScripts added in v2.8.0

func (x *DumpV2Request) GetStarlarkScripts() []*Starlark

func (*DumpV2Request) GetSystem added in v2.7.0

func (x *DumpV2Request) GetSystem() *System

func (*DumpV2Request) GetTimeout added in v2.7.0

func (x *DumpV2Request) GetTimeout() *durationpb.Duration

func (*DumpV2Request) MarshalLogObject added in v2.7.0

func (x *DumpV2Request) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DumpV2Request) ProtoMessage added in v2.7.0

func (*DumpV2Request) ProtoMessage()

func (*DumpV2Request) ProtoReflect added in v2.7.0

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

func (*DumpV2Request) Reset added in v2.7.0

func (x *DumpV2Request) Reset()

func (*DumpV2Request) String added in v2.7.0

func (x *DumpV2Request) String() string

func (*DumpV2Request) Validate added in v2.8.0

func (m *DumpV2Request) Validate() error

Validate checks the field values on DumpV2Request with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DumpV2Request) ValidateAll added in v2.8.0

func (m *DumpV2Request) ValidateAll() error

ValidateAll checks the field values on DumpV2Request with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DumpV2RequestMultiError, or nil if none found.

type DumpV2RequestMultiError added in v2.8.0

type DumpV2RequestMultiError []error

DumpV2RequestMultiError is an error wrapping multiple validation errors returned by DumpV2Request.ValidateAll() if the designated constraints aren't met.

func (DumpV2RequestMultiError) AllErrors added in v2.8.0

func (m DumpV2RequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DumpV2RequestMultiError) Error added in v2.8.0

func (m DumpV2RequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DumpV2RequestValidationError added in v2.8.0

type DumpV2RequestValidationError struct {
	// contains filtered or unexported fields
}

DumpV2RequestValidationError is the validation error returned by DumpV2Request.Validate if the designated constraints aren't met.

func (DumpV2RequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DumpV2RequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DumpV2RequestValidationError) ErrorName added in v2.8.0

func (e DumpV2RequestValidationError) ErrorName() string

ErrorName returns error name.

func (DumpV2RequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DumpV2RequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DumpV2RequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DumpV2Request_Defaults added in v2.8.0

type DumpV2Request_Defaults struct {

	// If true, include the cluster defaults.
	ClusterDefaults bool `protobuf:"varint,1,opt,name=cluster_defaults,json=clusterDefaults,proto3" json:"cluster_defaults,omitempty"`
	// contains filtered or unexported fields
}

func (*DumpV2Request_Defaults) Descriptor deprecated added in v2.8.0

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

Deprecated: Use DumpV2Request_Defaults.ProtoReflect.Descriptor instead.

func (*DumpV2Request_Defaults) GetClusterDefaults added in v2.8.0

func (x *DumpV2Request_Defaults) GetClusterDefaults() bool

func (*DumpV2Request_Defaults) MarshalLogObject added in v2.8.0

func (x *DumpV2Request_Defaults) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DumpV2Request_Defaults) ProtoMessage added in v2.8.0

func (*DumpV2Request_Defaults) ProtoMessage()

func (*DumpV2Request_Defaults) ProtoReflect added in v2.8.0

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

func (*DumpV2Request_Defaults) Reset added in v2.8.0

func (x *DumpV2Request_Defaults) Reset()

func (*DumpV2Request_Defaults) String added in v2.8.0

func (x *DumpV2Request_Defaults) String() string

func (*DumpV2Request_Defaults) Validate added in v2.8.0

func (m *DumpV2Request_Defaults) Validate() error

Validate checks the field values on DumpV2Request_Defaults with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DumpV2Request_Defaults) ValidateAll added in v2.8.0

func (m *DumpV2Request_Defaults) ValidateAll() error

ValidateAll checks the field values on DumpV2Request_Defaults with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DumpV2Request_DefaultsMultiError, or nil if none found.

type DumpV2Request_DefaultsMultiError added in v2.8.0

type DumpV2Request_DefaultsMultiError []error

DumpV2Request_DefaultsMultiError is an error wrapping multiple validation errors returned by DumpV2Request_Defaults.ValidateAll() if the designated constraints aren't met.

func (DumpV2Request_DefaultsMultiError) AllErrors added in v2.8.0

func (m DumpV2Request_DefaultsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DumpV2Request_DefaultsMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DumpV2Request_DefaultsValidationError added in v2.8.0

type DumpV2Request_DefaultsValidationError struct {
	// contains filtered or unexported fields
}

DumpV2Request_DefaultsValidationError is the validation error returned by DumpV2Request_Defaults.Validate if the designated constraints aren't met.

func (DumpV2Request_DefaultsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DumpV2Request_DefaultsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DumpV2Request_DefaultsValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DumpV2Request_DefaultsValidationError) Field added in v2.8.0

Field function returns field value.

func (DumpV2Request_DefaultsValidationError) Key added in v2.8.0

Key function returns key value.

func (DumpV2Request_DefaultsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Filter

type Filter struct {

	// Types that are assignable to Filter:
	//
	//	*Filter_Pachd
	//	*Filter_Pipeline
	//	*Filter_Worker
	//	*Filter_Database
	Filter isFilter_Filter `protobuf_oneof:"filter"`
	// contains filtered or unexported fields
}

func (*Filter) Descriptor deprecated

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

Deprecated: Use Filter.ProtoReflect.Descriptor instead.

func (*Filter) GetDatabase

func (x *Filter) GetDatabase() bool

func (*Filter) GetFilter

func (m *Filter) GetFilter() isFilter_Filter

func (*Filter) GetPachd

func (x *Filter) GetPachd() bool

func (*Filter) GetPipeline

func (x *Filter) GetPipeline() *pps.Pipeline

func (*Filter) GetWorker

func (x *Filter) GetWorker() *Worker

func (*Filter) MarshalLogObject

func (x *Filter) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Filter) ProtoMessage

func (*Filter) ProtoMessage()

func (*Filter) ProtoReflect added in v2.7.0

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

func (*Filter) Reset

func (x *Filter) Reset()

func (*Filter) String

func (x *Filter) String() string

func (*Filter) Validate added in v2.8.0

func (m *Filter) Validate() error

Validate checks the field values on Filter with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Filter) ValidateAll added in v2.8.0

func (m *Filter) ValidateAll() error

ValidateAll checks the field values on Filter with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FilterMultiError, or nil if none found.

type FilterMultiError added in v2.8.0

type FilterMultiError []error

FilterMultiError is an error wrapping multiple validation errors returned by Filter.ValidateAll() if the designated constraints aren't met.

func (FilterMultiError) AllErrors added in v2.8.0

func (m FilterMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FilterMultiError) Error added in v2.8.0

func (m FilterMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FilterValidationError added in v2.8.0

type FilterValidationError struct {
	// contains filtered or unexported fields
}

FilterValidationError is the validation error returned by Filter.Validate if the designated constraints aren't met.

func (FilterValidationError) Cause added in v2.8.0

func (e FilterValidationError) Cause() error

Cause function returns cause value.

func (FilterValidationError) Error added in v2.8.0

func (e FilterValidationError) Error() string

Error satisfies the builtin error interface

func (FilterValidationError) ErrorName added in v2.8.0

func (e FilterValidationError) ErrorName() string

ErrorName returns error name.

func (FilterValidationError) Field added in v2.8.0

func (e FilterValidationError) Field() string

Field function returns field value.

func (FilterValidationError) Key added in v2.8.0

func (e FilterValidationError) Key() bool

Key function returns key value.

func (FilterValidationError) Reason added in v2.8.0

func (e FilterValidationError) Reason() string

Reason function returns reason value.

type Filter_Database

type Filter_Database struct {
	Database bool `protobuf:"varint,4,opt,name=database,proto3,oneof"`
}

type Filter_Pachd

type Filter_Pachd struct {
	Pachd bool `protobuf:"varint,1,opt,name=pachd,proto3,oneof"`
}

type Filter_Pipeline

type Filter_Pipeline struct {
	Pipeline *pps.Pipeline `protobuf:"bytes,2,opt,name=pipeline,proto3,oneof"`
}

type Filter_Worker

type Filter_Worker struct {
	Worker *Worker `protobuf:"bytes,3,opt,name=worker,proto3,oneof"`
}

type GetDumpV2TemplateRequest added in v2.7.0

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

func (*GetDumpV2TemplateRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetDumpV2TemplateRequest.ProtoReflect.Descriptor instead.

func (*GetDumpV2TemplateRequest) GetFilters added in v2.7.0

func (x *GetDumpV2TemplateRequest) GetFilters() []string

func (*GetDumpV2TemplateRequest) MarshalLogObject added in v2.7.0

func (x *GetDumpV2TemplateRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetDumpV2TemplateRequest) ProtoMessage added in v2.7.0

func (*GetDumpV2TemplateRequest) ProtoMessage()

func (*GetDumpV2TemplateRequest) ProtoReflect added in v2.7.0

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

func (*GetDumpV2TemplateRequest) Reset added in v2.7.0

func (x *GetDumpV2TemplateRequest) Reset()

func (*GetDumpV2TemplateRequest) String added in v2.7.0

func (x *GetDumpV2TemplateRequest) String() string

func (*GetDumpV2TemplateRequest) Validate added in v2.8.0

func (m *GetDumpV2TemplateRequest) Validate() error

Validate checks the field values on GetDumpV2TemplateRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDumpV2TemplateRequest) ValidateAll added in v2.8.0

func (m *GetDumpV2TemplateRequest) ValidateAll() error

ValidateAll checks the field values on GetDumpV2TemplateRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDumpV2TemplateRequestMultiError, or nil if none found.

type GetDumpV2TemplateRequestMultiError added in v2.8.0

type GetDumpV2TemplateRequestMultiError []error

GetDumpV2TemplateRequestMultiError is an error wrapping multiple validation errors returned by GetDumpV2TemplateRequest.ValidateAll() if the designated constraints aren't met.

func (GetDumpV2TemplateRequestMultiError) AllErrors added in v2.8.0

func (m GetDumpV2TemplateRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDumpV2TemplateRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetDumpV2TemplateRequestValidationError added in v2.8.0

type GetDumpV2TemplateRequestValidationError struct {
	// contains filtered or unexported fields
}

GetDumpV2TemplateRequestValidationError is the validation error returned by GetDumpV2TemplateRequest.Validate if the designated constraints aren't met.

func (GetDumpV2TemplateRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetDumpV2TemplateRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetDumpV2TemplateRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetDumpV2TemplateRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetDumpV2TemplateRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetDumpV2TemplateRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetDumpV2TemplateResponse added in v2.7.0

type GetDumpV2TemplateResponse struct {
	Request *DumpV2Request `protobuf:"bytes,1,opt,name=request,proto3" json:"request,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDumpV2TemplateResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetDumpV2TemplateResponse.ProtoReflect.Descriptor instead.

func (*GetDumpV2TemplateResponse) GetRequest added in v2.7.0

func (x *GetDumpV2TemplateResponse) GetRequest() *DumpV2Request

func (*GetDumpV2TemplateResponse) MarshalLogObject added in v2.7.0

func (x *GetDumpV2TemplateResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetDumpV2TemplateResponse) ProtoMessage added in v2.7.0

func (*GetDumpV2TemplateResponse) ProtoMessage()

func (*GetDumpV2TemplateResponse) ProtoReflect added in v2.7.0

func (*GetDumpV2TemplateResponse) Reset added in v2.7.0

func (x *GetDumpV2TemplateResponse) Reset()

func (*GetDumpV2TemplateResponse) String added in v2.7.0

func (x *GetDumpV2TemplateResponse) String() string

func (*GetDumpV2TemplateResponse) Validate added in v2.8.0

func (m *GetDumpV2TemplateResponse) Validate() error

Validate checks the field values on GetDumpV2TemplateResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDumpV2TemplateResponse) ValidateAll added in v2.8.0

func (m *GetDumpV2TemplateResponse) ValidateAll() error

ValidateAll checks the field values on GetDumpV2TemplateResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDumpV2TemplateResponseMultiError, or nil if none found.

type GetDumpV2TemplateResponseMultiError added in v2.8.0

type GetDumpV2TemplateResponseMultiError []error

GetDumpV2TemplateResponseMultiError is an error wrapping multiple validation errors returned by GetDumpV2TemplateResponse.ValidateAll() if the designated constraints aren't met.

func (GetDumpV2TemplateResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (GetDumpV2TemplateResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetDumpV2TemplateResponseValidationError added in v2.8.0

type GetDumpV2TemplateResponseValidationError struct {
	// contains filtered or unexported fields
}

GetDumpV2TemplateResponseValidationError is the validation error returned by GetDumpV2TemplateResponse.Validate if the designated constraints aren't met.

func (GetDumpV2TemplateResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetDumpV2TemplateResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetDumpV2TemplateResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetDumpV2TemplateResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (GetDumpV2TemplateResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (GetDumpV2TemplateResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type LokiArgs added in v2.9.4

type LokiArgs struct {
	MaxLogs uint64 `protobuf:"varint,1,opt,name=max_logs,json=maxLogs,proto3" json:"max_logs,omitempty"`
	// contains filtered or unexported fields
}

func (*LokiArgs) Descriptor deprecated added in v2.9.4

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

Deprecated: Use LokiArgs.ProtoReflect.Descriptor instead.

func (*LokiArgs) GetMaxLogs added in v2.9.4

func (x *LokiArgs) GetMaxLogs() uint64

func (*LokiArgs) MarshalLogObject added in v2.9.4

func (x *LokiArgs) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*LokiArgs) ProtoMessage added in v2.9.4

func (*LokiArgs) ProtoMessage()

func (*LokiArgs) ProtoReflect added in v2.9.4

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

func (*LokiArgs) Reset added in v2.9.4

func (x *LokiArgs) Reset()

func (*LokiArgs) String added in v2.9.4

func (x *LokiArgs) String() string

func (*LokiArgs) Validate added in v2.9.4

func (m *LokiArgs) Validate() error

Validate checks the field values on LokiArgs with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*LokiArgs) ValidateAll added in v2.9.4

func (m *LokiArgs) ValidateAll() error

ValidateAll checks the field values on LokiArgs with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LokiArgsMultiError, or nil if none found.

type LokiArgsMultiError added in v2.9.4

type LokiArgsMultiError []error

LokiArgsMultiError is an error wrapping multiple validation errors returned by LokiArgs.ValidateAll() if the designated constraints aren't met.

func (LokiArgsMultiError) AllErrors added in v2.9.4

func (m LokiArgsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LokiArgsMultiError) Error added in v2.9.4

func (m LokiArgsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type LokiArgsValidationError added in v2.9.4

type LokiArgsValidationError struct {
	// contains filtered or unexported fields
}

LokiArgsValidationError is the validation error returned by LokiArgs.Validate if the designated constraints aren't met.

func (LokiArgsValidationError) Cause added in v2.9.4

func (e LokiArgsValidationError) Cause() error

Cause function returns cause value.

func (LokiArgsValidationError) Error added in v2.9.4

func (e LokiArgsValidationError) Error() string

Error satisfies the builtin error interface

func (LokiArgsValidationError) ErrorName added in v2.9.4

func (e LokiArgsValidationError) ErrorName() string

ErrorName returns error name.

func (LokiArgsValidationError) Field added in v2.9.4

func (e LokiArgsValidationError) Field() string

Field function returns field value.

func (LokiArgsValidationError) Key added in v2.9.4

func (e LokiArgsValidationError) Key() bool

Key function returns key value.

func (LokiArgsValidationError) Reason added in v2.9.4

func (e LokiArgsValidationError) Reason() string

Reason function returns reason value.

type Pipeline added in v2.7.0

type Pipeline struct {
	Project string `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Pipeline) Descriptor deprecated added in v2.7.0

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

Deprecated: Use Pipeline.ProtoReflect.Descriptor instead.

func (*Pipeline) GetName added in v2.7.0

func (x *Pipeline) GetName() string

func (*Pipeline) GetProject added in v2.7.0

func (x *Pipeline) GetProject() string

func (*Pipeline) MarshalLogObject added in v2.7.0

func (x *Pipeline) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Pipeline) ProtoMessage added in v2.7.0

func (*Pipeline) ProtoMessage()

func (*Pipeline) ProtoReflect added in v2.7.0

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

func (*Pipeline) Reset added in v2.7.0

func (x *Pipeline) Reset()

func (*Pipeline) String added in v2.7.0

func (x *Pipeline) String() string

func (*Pipeline) Validate added in v2.8.0

func (m *Pipeline) Validate() error

Validate checks the field values on Pipeline with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Pipeline) ValidateAll added in v2.8.0

func (m *Pipeline) ValidateAll() error

ValidateAll checks the field values on Pipeline with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PipelineMultiError, or nil if none found.

type PipelineMultiError added in v2.8.0

type PipelineMultiError []error

PipelineMultiError is an error wrapping multiple validation errors returned by Pipeline.ValidateAll() if the designated constraints aren't met.

func (PipelineMultiError) AllErrors added in v2.8.0

func (m PipelineMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PipelineMultiError) Error added in v2.8.0

func (m PipelineMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PipelineValidationError added in v2.8.0

type PipelineValidationError struct {
	// contains filtered or unexported fields
}

PipelineValidationError is the validation error returned by Pipeline.Validate if the designated constraints aren't met.

func (PipelineValidationError) Cause added in v2.8.0

func (e PipelineValidationError) Cause() error

Cause function returns cause value.

func (PipelineValidationError) Error added in v2.8.0

func (e PipelineValidationError) Error() string

Error satisfies the builtin error interface

func (PipelineValidationError) ErrorName added in v2.8.0

func (e PipelineValidationError) ErrorName() string

ErrorName returns error name.

func (PipelineValidationError) Field added in v2.8.0

func (e PipelineValidationError) Field() string

Field function returns field value.

func (PipelineValidationError) Key added in v2.8.0

func (e PipelineValidationError) Key() bool

Key function returns key value.

func (PipelineValidationError) Reason added in v2.8.0

func (e PipelineValidationError) Reason() string

Reason function returns reason value.

type Pod added in v2.7.0

type Pod struct {
	Name       string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Ip         string   `protobuf:"bytes,2,opt,name=ip,proto3" json:"ip,omitempty"`
	Containers []string `protobuf:"bytes,3,rep,name=containers,proto3" json:"containers,omitempty"`
	// contains filtered or unexported fields
}

func (*Pod) Descriptor deprecated added in v2.7.0

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

Deprecated: Use Pod.ProtoReflect.Descriptor instead.

func (*Pod) GetContainers added in v2.7.0

func (x *Pod) GetContainers() []string

func (*Pod) GetIp added in v2.7.0

func (x *Pod) GetIp() string

func (*Pod) GetName added in v2.7.0

func (x *Pod) GetName() string

func (*Pod) MarshalLogObject added in v2.7.0

func (x *Pod) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Pod) ProtoMessage added in v2.7.0

func (*Pod) ProtoMessage()

func (*Pod) ProtoReflect added in v2.7.0

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

func (*Pod) Reset added in v2.7.0

func (x *Pod) Reset()

func (*Pod) String added in v2.7.0

func (x *Pod) String() string

func (*Pod) Validate added in v2.8.0

func (m *Pod) Validate() error

Validate checks the field values on Pod with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Pod) ValidateAll added in v2.8.0

func (m *Pod) ValidateAll() error

ValidateAll checks the field values on Pod with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PodMultiError, or nil if none found.

type PodMultiError added in v2.8.0

type PodMultiError []error

PodMultiError is an error wrapping multiple validation errors returned by Pod.ValidateAll() if the designated constraints aren't met.

func (PodMultiError) AllErrors added in v2.8.0

func (m PodMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PodMultiError) Error added in v2.8.0

func (m PodMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PodValidationError added in v2.8.0

type PodValidationError struct {
	// contains filtered or unexported fields
}

PodValidationError is the validation error returned by Pod.Validate if the designated constraints aren't met.

func (PodValidationError) Cause added in v2.8.0

func (e PodValidationError) Cause() error

Cause function returns cause value.

func (PodValidationError) Error added in v2.8.0

func (e PodValidationError) Error() string

Error satisfies the builtin error interface

func (PodValidationError) ErrorName added in v2.8.0

func (e PodValidationError) ErrorName() string

ErrorName returns error name.

func (PodValidationError) Field added in v2.8.0

func (e PodValidationError) Field() string

Field function returns field value.

func (PodValidationError) Key added in v2.8.0

func (e PodValidationError) Key() bool

Key function returns key value.

func (PodValidationError) Reason added in v2.8.0

func (e PodValidationError) Reason() string

Reason function returns reason value.

type Profile

type Profile struct {
	Name     string               `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Duration *durationpb.Duration `protobuf:"bytes,2,opt,name=duration,proto3" json:"duration,omitempty"` // only meaningful if name == "cpu"
	// contains filtered or unexported fields
}

func (*Profile) Descriptor deprecated

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

Deprecated: Use Profile.ProtoReflect.Descriptor instead.

func (*Profile) GetDuration

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

func (*Profile) GetName

func (x *Profile) GetName() string

func (*Profile) MarshalLogObject

func (x *Profile) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Profile) ProtoMessage

func (*Profile) ProtoMessage()

func (*Profile) ProtoReflect added in v2.7.0

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

func (*Profile) Reset

func (x *Profile) Reset()

func (*Profile) String

func (x *Profile) String() string

func (*Profile) Validate added in v2.8.0

func (m *Profile) Validate() error

Validate checks the field values on Profile with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Profile) ValidateAll added in v2.8.0

func (m *Profile) ValidateAll() error

ValidateAll checks the field values on Profile with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProfileMultiError, or nil if none found.

type ProfileArgs added in v2.9.4

type ProfileArgs struct {
	Profiles []*Profile `protobuf:"bytes,1,rep,name=profiles,proto3" json:"profiles,omitempty"`
	// contains filtered or unexported fields
}

func (*ProfileArgs) Descriptor deprecated added in v2.9.4

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

Deprecated: Use ProfileArgs.ProtoReflect.Descriptor instead.

func (*ProfileArgs) GetProfiles added in v2.9.4

func (x *ProfileArgs) GetProfiles() []*Profile

func (*ProfileArgs) MarshalLogObject added in v2.9.4

func (x *ProfileArgs) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ProfileArgs) ProtoMessage added in v2.9.4

func (*ProfileArgs) ProtoMessage()

func (*ProfileArgs) ProtoReflect added in v2.9.4

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

func (*ProfileArgs) Reset added in v2.9.4

func (x *ProfileArgs) Reset()

func (*ProfileArgs) String added in v2.9.4

func (x *ProfileArgs) String() string

func (*ProfileArgs) Validate added in v2.9.4

func (m *ProfileArgs) Validate() error

Validate checks the field values on ProfileArgs with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ProfileArgs) ValidateAll added in v2.9.4

func (m *ProfileArgs) ValidateAll() error

ValidateAll checks the field values on ProfileArgs with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProfileArgsMultiError, or nil if none found.

type ProfileArgsMultiError added in v2.9.4

type ProfileArgsMultiError []error

ProfileArgsMultiError is an error wrapping multiple validation errors returned by ProfileArgs.ValidateAll() if the designated constraints aren't met.

func (ProfileArgsMultiError) AllErrors added in v2.9.4

func (m ProfileArgsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProfileArgsMultiError) Error added in v2.9.4

func (m ProfileArgsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ProfileArgsValidationError added in v2.9.4

type ProfileArgsValidationError struct {
	// contains filtered or unexported fields
}

ProfileArgsValidationError is the validation error returned by ProfileArgs.Validate if the designated constraints aren't met.

func (ProfileArgsValidationError) Cause added in v2.9.4

Cause function returns cause value.

func (ProfileArgsValidationError) Error added in v2.9.4

Error satisfies the builtin error interface

func (ProfileArgsValidationError) ErrorName added in v2.9.4

func (e ProfileArgsValidationError) ErrorName() string

ErrorName returns error name.

func (ProfileArgsValidationError) Field added in v2.9.4

Field function returns field value.

func (ProfileArgsValidationError) Key added in v2.9.4

Key function returns key value.

func (ProfileArgsValidationError) Reason added in v2.9.4

Reason function returns reason value.

type ProfileMultiError added in v2.8.0

type ProfileMultiError []error

ProfileMultiError is an error wrapping multiple validation errors returned by Profile.ValidateAll() if the designated constraints aren't met.

func (ProfileMultiError) AllErrors added in v2.8.0

func (m ProfileMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProfileMultiError) Error added in v2.8.0

func (m ProfileMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ProfileRequest

type ProfileRequest struct {
	Profile *Profile `protobuf:"bytes,1,opt,name=profile,proto3" json:"profile,omitempty"`
	Filter  *Filter  `protobuf:"bytes,2,opt,name=filter,proto3" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

func (*ProfileRequest) Descriptor deprecated

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

Deprecated: Use ProfileRequest.ProtoReflect.Descriptor instead.

func (*ProfileRequest) GetFilter

func (x *ProfileRequest) GetFilter() *Filter

func (*ProfileRequest) GetProfile

func (x *ProfileRequest) GetProfile() *Profile

func (*ProfileRequest) MarshalLogObject

func (x *ProfileRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ProfileRequest) ProtoMessage

func (*ProfileRequest) ProtoMessage()

func (*ProfileRequest) ProtoReflect added in v2.7.0

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

func (*ProfileRequest) Reset

func (x *ProfileRequest) Reset()

func (*ProfileRequest) String

func (x *ProfileRequest) String() string

func (*ProfileRequest) Validate added in v2.8.0

func (m *ProfileRequest) Validate() error

Validate checks the field values on ProfileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ProfileRequest) ValidateAll added in v2.8.0

func (m *ProfileRequest) ValidateAll() error

ValidateAll checks the field values on ProfileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProfileRequestMultiError, or nil if none found.

type ProfileRequestMultiError added in v2.8.0

type ProfileRequestMultiError []error

ProfileRequestMultiError is an error wrapping multiple validation errors returned by ProfileRequest.ValidateAll() if the designated constraints aren't met.

func (ProfileRequestMultiError) AllErrors added in v2.8.0

func (m ProfileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProfileRequestMultiError) Error added in v2.8.0

func (m ProfileRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ProfileRequestValidationError added in v2.8.0

type ProfileRequestValidationError struct {
	// contains filtered or unexported fields
}

ProfileRequestValidationError is the validation error returned by ProfileRequest.Validate if the designated constraints aren't met.

func (ProfileRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ProfileRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ProfileRequestValidationError) ErrorName added in v2.8.0

func (e ProfileRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ProfileRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ProfileRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ProfileRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ProfileValidationError added in v2.8.0

type ProfileValidationError struct {
	// contains filtered or unexported fields
}

ProfileValidationError is the validation error returned by Profile.Validate if the designated constraints aren't met.

func (ProfileValidationError) Cause added in v2.8.0

func (e ProfileValidationError) Cause() error

Cause function returns cause value.

func (ProfileValidationError) Error added in v2.8.0

func (e ProfileValidationError) Error() string

Error satisfies the builtin error interface

func (ProfileValidationError) ErrorName added in v2.8.0

func (e ProfileValidationError) ErrorName() string

ErrorName returns error name.

func (ProfileValidationError) Field added in v2.8.0

func (e ProfileValidationError) Field() string

Field function returns field value.

func (ProfileValidationError) Key added in v2.8.0

func (e ProfileValidationError) Key() bool

Key function returns key value.

func (ProfileValidationError) Reason added in v2.8.0

func (e ProfileValidationError) Reason() string

Reason function returns reason value.

type RunPFSLoadTestRequest added in v2.8.0

type RunPFSLoadTestRequest struct {
	Spec    string      `protobuf:"bytes,1,opt,name=spec,proto3" json:"spec,omitempty"`
	Branch  *pfs.Branch `protobuf:"bytes,2,opt,name=branch,proto3" json:"branch,omitempty"`
	Seed    int64       `protobuf:"varint,3,opt,name=seed,proto3" json:"seed,omitempty"`
	StateId string      `protobuf:"bytes,4,opt,name=state_id,json=stateId,proto3" json:"state_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RunPFSLoadTestRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use RunPFSLoadTestRequest.ProtoReflect.Descriptor instead.

func (*RunPFSLoadTestRequest) GetBranch added in v2.8.0

func (x *RunPFSLoadTestRequest) GetBranch() *pfs.Branch

func (*RunPFSLoadTestRequest) GetSeed added in v2.8.0

func (x *RunPFSLoadTestRequest) GetSeed() int64

func (*RunPFSLoadTestRequest) GetSpec added in v2.8.0

func (x *RunPFSLoadTestRequest) GetSpec() string

func (*RunPFSLoadTestRequest) GetStateId added in v2.8.0

func (x *RunPFSLoadTestRequest) GetStateId() string

func (*RunPFSLoadTestRequest) MarshalLogObject added in v2.8.0

func (x *RunPFSLoadTestRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RunPFSLoadTestRequest) ProtoMessage added in v2.8.0

func (*RunPFSLoadTestRequest) ProtoMessage()

func (*RunPFSLoadTestRequest) ProtoReflect added in v2.8.0

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

func (*RunPFSLoadTestRequest) Reset added in v2.8.0

func (x *RunPFSLoadTestRequest) Reset()

func (*RunPFSLoadTestRequest) String added in v2.8.0

func (x *RunPFSLoadTestRequest) String() string

func (*RunPFSLoadTestRequest) Validate added in v2.8.0

func (m *RunPFSLoadTestRequest) Validate() error

Validate checks the field values on RunPFSLoadTestRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RunPFSLoadTestRequest) ValidateAll added in v2.8.0

func (m *RunPFSLoadTestRequest) ValidateAll() error

ValidateAll checks the field values on RunPFSLoadTestRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RunPFSLoadTestRequestMultiError, or nil if none found.

type RunPFSLoadTestRequestMultiError added in v2.8.0

type RunPFSLoadTestRequestMultiError []error

RunPFSLoadTestRequestMultiError is an error wrapping multiple validation errors returned by RunPFSLoadTestRequest.ValidateAll() if the designated constraints aren't met.

func (RunPFSLoadTestRequestMultiError) AllErrors added in v2.8.0

func (m RunPFSLoadTestRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RunPFSLoadTestRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RunPFSLoadTestRequestValidationError added in v2.8.0

type RunPFSLoadTestRequestValidationError struct {
	// contains filtered or unexported fields
}

RunPFSLoadTestRequestValidationError is the validation error returned by RunPFSLoadTestRequest.Validate if the designated constraints aren't met.

func (RunPFSLoadTestRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RunPFSLoadTestRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RunPFSLoadTestRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RunPFSLoadTestRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (RunPFSLoadTestRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (RunPFSLoadTestRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RunPFSLoadTestResponse added in v2.8.0

type RunPFSLoadTestResponse struct {
	Spec     string               `protobuf:"bytes,1,opt,name=spec,proto3" json:"spec,omitempty"`
	Branch   *pfs.Branch          `protobuf:"bytes,2,opt,name=branch,proto3" json:"branch,omitempty"`
	Seed     int64                `protobuf:"varint,3,opt,name=seed,proto3" json:"seed,omitempty"`
	Error    string               `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	Duration *durationpb.Duration `protobuf:"bytes,5,opt,name=duration,proto3" json:"duration,omitempty"`
	StateId  string               `protobuf:"bytes,6,opt,name=state_id,json=stateId,proto3" json:"state_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RunPFSLoadTestResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use RunPFSLoadTestResponse.ProtoReflect.Descriptor instead.

func (*RunPFSLoadTestResponse) GetBranch added in v2.8.0

func (x *RunPFSLoadTestResponse) GetBranch() *pfs.Branch

func (*RunPFSLoadTestResponse) GetDuration added in v2.8.0

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

func (*RunPFSLoadTestResponse) GetError added in v2.8.0

func (x *RunPFSLoadTestResponse) GetError() string

func (*RunPFSLoadTestResponse) GetSeed added in v2.8.0

func (x *RunPFSLoadTestResponse) GetSeed() int64

func (*RunPFSLoadTestResponse) GetSpec added in v2.8.0

func (x *RunPFSLoadTestResponse) GetSpec() string

func (*RunPFSLoadTestResponse) GetStateId added in v2.8.0

func (x *RunPFSLoadTestResponse) GetStateId() string

func (*RunPFSLoadTestResponse) MarshalLogObject added in v2.8.0

func (x *RunPFSLoadTestResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RunPFSLoadTestResponse) ProtoMessage added in v2.8.0

func (*RunPFSLoadTestResponse) ProtoMessage()

func (*RunPFSLoadTestResponse) ProtoReflect added in v2.8.0

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

func (*RunPFSLoadTestResponse) Reset added in v2.8.0

func (x *RunPFSLoadTestResponse) Reset()

func (*RunPFSLoadTestResponse) String added in v2.8.0

func (x *RunPFSLoadTestResponse) String() string

func (*RunPFSLoadTestResponse) Validate added in v2.8.0

func (m *RunPFSLoadTestResponse) Validate() error

Validate checks the field values on RunPFSLoadTestResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RunPFSLoadTestResponse) ValidateAll added in v2.8.0

func (m *RunPFSLoadTestResponse) ValidateAll() error

ValidateAll checks the field values on RunPFSLoadTestResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RunPFSLoadTestResponseMultiError, or nil if none found.

type RunPFSLoadTestResponseMultiError added in v2.8.0

type RunPFSLoadTestResponseMultiError []error

RunPFSLoadTestResponseMultiError is an error wrapping multiple validation errors returned by RunPFSLoadTestResponse.ValidateAll() if the designated constraints aren't met.

func (RunPFSLoadTestResponseMultiError) AllErrors added in v2.8.0

func (m RunPFSLoadTestResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RunPFSLoadTestResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RunPFSLoadTestResponseValidationError added in v2.8.0

type RunPFSLoadTestResponseValidationError struct {
	// contains filtered or unexported fields
}

RunPFSLoadTestResponseValidationError is the validation error returned by RunPFSLoadTestResponse.Validate if the designated constraints aren't met.

func (RunPFSLoadTestResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RunPFSLoadTestResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RunPFSLoadTestResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RunPFSLoadTestResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (RunPFSLoadTestResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (RunPFSLoadTestResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SetLogLevelRequest

type SetLogLevelRequest struct {

	// Types that are assignable to Level:
	//
	//	*SetLogLevelRequest_Pachyderm
	//	*SetLogLevelRequest_Grpc
	Level    isSetLogLevelRequest_Level `protobuf_oneof:"level"`
	Duration *durationpb.Duration       `protobuf:"bytes,3,opt,name=duration,proto3" json:"duration,omitempty"`
	Recurse  bool                       `protobuf:"varint,4,opt,name=recurse,proto3" json:"recurse,omitempty"`
	// contains filtered or unexported fields
}

func (*SetLogLevelRequest) Descriptor deprecated

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

Deprecated: Use SetLogLevelRequest.ProtoReflect.Descriptor instead.

func (*SetLogLevelRequest) GetDuration

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

func (*SetLogLevelRequest) GetGrpc

func (*SetLogLevelRequest) GetLevel

func (m *SetLogLevelRequest) GetLevel() isSetLogLevelRequest_Level

func (*SetLogLevelRequest) GetPachyderm

func (*SetLogLevelRequest) GetRecurse

func (x *SetLogLevelRequest) GetRecurse() bool

func (*SetLogLevelRequest) MarshalLogObject

func (x *SetLogLevelRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SetLogLevelRequest) ProtoMessage

func (*SetLogLevelRequest) ProtoMessage()

func (*SetLogLevelRequest) ProtoReflect added in v2.7.0

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

func (*SetLogLevelRequest) Reset

func (x *SetLogLevelRequest) Reset()

func (*SetLogLevelRequest) String

func (x *SetLogLevelRequest) String() string

func (*SetLogLevelRequest) Validate added in v2.8.0

func (m *SetLogLevelRequest) Validate() error

Validate checks the field values on SetLogLevelRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetLogLevelRequest) ValidateAll added in v2.8.0

func (m *SetLogLevelRequest) ValidateAll() error

ValidateAll checks the field values on SetLogLevelRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetLogLevelRequestMultiError, or nil if none found.

type SetLogLevelRequestMultiError added in v2.8.0

type SetLogLevelRequestMultiError []error

SetLogLevelRequestMultiError is an error wrapping multiple validation errors returned by SetLogLevelRequest.ValidateAll() if the designated constraints aren't met.

func (SetLogLevelRequestMultiError) AllErrors added in v2.8.0

func (m SetLogLevelRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetLogLevelRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SetLogLevelRequestValidationError added in v2.8.0

type SetLogLevelRequestValidationError struct {
	// contains filtered or unexported fields
}

SetLogLevelRequestValidationError is the validation error returned by SetLogLevelRequest.Validate if the designated constraints aren't met.

func (SetLogLevelRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SetLogLevelRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SetLogLevelRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SetLogLevelRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (SetLogLevelRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (SetLogLevelRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SetLogLevelRequest_Grpc

type SetLogLevelRequest_Grpc struct {
	Grpc SetLogLevelRequest_LogLevel `protobuf:"varint,2,opt,name=grpc,proto3,enum=debug_v2.SetLogLevelRequest_LogLevel,oneof"`
}

type SetLogLevelRequest_LogLevel

type SetLogLevelRequest_LogLevel int32
const (
	SetLogLevelRequest_UNKNOWN SetLogLevelRequest_LogLevel = 0
	SetLogLevelRequest_DEBUG   SetLogLevelRequest_LogLevel = 1
	SetLogLevelRequest_INFO    SetLogLevelRequest_LogLevel = 2
	SetLogLevelRequest_ERROR   SetLogLevelRequest_LogLevel = 3
	SetLogLevelRequest_OFF     SetLogLevelRequest_LogLevel = 4 // Only GRPC logs can be turned off.
)

func (SetLogLevelRequest_LogLevel) Descriptor added in v2.7.0

func (SetLogLevelRequest_LogLevel) Enum added in v2.7.0

func (SetLogLevelRequest_LogLevel) EnumDescriptor deprecated

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

Deprecated: Use SetLogLevelRequest_LogLevel.Descriptor instead.

func (SetLogLevelRequest_LogLevel) Number added in v2.7.0

func (SetLogLevelRequest_LogLevel) String

func (SetLogLevelRequest_LogLevel) Type added in v2.7.0

type SetLogLevelRequest_Pachyderm

type SetLogLevelRequest_Pachyderm struct {
	Pachyderm SetLogLevelRequest_LogLevel `protobuf:"varint,1,opt,name=pachyderm,proto3,enum=debug_v2.SetLogLevelRequest_LogLevel,oneof"`
}

type SetLogLevelResponse

type SetLogLevelResponse struct {
	AffectedPods []string `protobuf:"bytes,1,rep,name=affected_pods,json=affectedPods,proto3" json:"affected_pods,omitempty"`
	ErroredPods  []string `protobuf:"bytes,2,rep,name=errored_pods,json=erroredPods,proto3" json:"errored_pods,omitempty"`
	// contains filtered or unexported fields
}

func (*SetLogLevelResponse) Descriptor deprecated

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

Deprecated: Use SetLogLevelResponse.ProtoReflect.Descriptor instead.

func (*SetLogLevelResponse) GetAffectedPods

func (x *SetLogLevelResponse) GetAffectedPods() []string

func (*SetLogLevelResponse) GetErroredPods

func (x *SetLogLevelResponse) GetErroredPods() []string

func (*SetLogLevelResponse) MarshalLogObject

func (x *SetLogLevelResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SetLogLevelResponse) ProtoMessage

func (*SetLogLevelResponse) ProtoMessage()

func (*SetLogLevelResponse) ProtoReflect added in v2.7.0

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

func (*SetLogLevelResponse) Reset

func (x *SetLogLevelResponse) Reset()

func (*SetLogLevelResponse) String

func (x *SetLogLevelResponse) String() string

func (*SetLogLevelResponse) Validate added in v2.8.0

func (m *SetLogLevelResponse) Validate() error

Validate checks the field values on SetLogLevelResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetLogLevelResponse) ValidateAll added in v2.8.0

func (m *SetLogLevelResponse) ValidateAll() error

ValidateAll checks the field values on SetLogLevelResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetLogLevelResponseMultiError, or nil if none found.

type SetLogLevelResponseMultiError added in v2.8.0

type SetLogLevelResponseMultiError []error

SetLogLevelResponseMultiError is an error wrapping multiple validation errors returned by SetLogLevelResponse.ValidateAll() if the designated constraints aren't met.

func (SetLogLevelResponseMultiError) AllErrors added in v2.8.0

func (m SetLogLevelResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetLogLevelResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SetLogLevelResponseValidationError added in v2.8.0

type SetLogLevelResponseValidationError struct {
	// contains filtered or unexported fields
}

SetLogLevelResponseValidationError is the validation error returned by SetLogLevelResponse.Validate if the designated constraints aren't met.

func (SetLogLevelResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SetLogLevelResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SetLogLevelResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SetLogLevelResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (SetLogLevelResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (SetLogLevelResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Starlark added in v2.8.0

type Starlark struct {

	// Where to load the program from.
	//
	// Types that are assignable to Source:
	//
	//	*Starlark_Builtin
	//	*Starlark_Literal
	Source isStarlark_Source `protobuf_oneof:"source"`
	// How long to allow the script to run for.  If unset, defaults to 1 minute.
	Timeout *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

Starlark controls the running of a Starlark script.

func (*Starlark) Descriptor deprecated added in v2.8.0

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

Deprecated: Use Starlark.ProtoReflect.Descriptor instead.

func (*Starlark) GetBuiltin added in v2.8.0

func (x *Starlark) GetBuiltin() string

func (*Starlark) GetLiteral added in v2.8.0

func (x *Starlark) GetLiteral() *StarlarkLiteral

func (*Starlark) GetSource added in v2.8.0

func (m *Starlark) GetSource() isStarlark_Source

func (*Starlark) GetTimeout added in v2.8.0

func (x *Starlark) GetTimeout() *durationpb.Duration

func (*Starlark) MarshalLogObject added in v2.8.0

func (x *Starlark) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Starlark) ProtoMessage added in v2.8.0

func (*Starlark) ProtoMessage()

func (*Starlark) ProtoReflect added in v2.8.0

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

func (*Starlark) Reset added in v2.8.0

func (x *Starlark) Reset()

func (*Starlark) String added in v2.8.0

func (x *Starlark) String() string

func (*Starlark) Validate added in v2.8.0

func (m *Starlark) Validate() error

Validate checks the field values on Starlark with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Starlark) ValidateAll added in v2.8.0

func (m *Starlark) ValidateAll() error

ValidateAll checks the field values on Starlark with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StarlarkMultiError, or nil if none found.

type StarlarkLiteral added in v2.8.0

type StarlarkLiteral struct {

	// The name of the script; used for debug messages and to control where the output goes.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The text of the "debugdump" personality Starlark program.
	ProgramText string `protobuf:"bytes,2,opt,name=program_text,json=programText,proto3" json:"program_text,omitempty"`
	// contains filtered or unexported fields
}

StarlarkLiteral is a custom Starlark script.

func (*StarlarkLiteral) Descriptor deprecated added in v2.8.0

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

Deprecated: Use StarlarkLiteral.ProtoReflect.Descriptor instead.

func (*StarlarkLiteral) GetName added in v2.8.0

func (x *StarlarkLiteral) GetName() string

func (*StarlarkLiteral) GetProgramText added in v2.8.0

func (x *StarlarkLiteral) GetProgramText() string

func (*StarlarkLiteral) MarshalLogObject added in v2.8.0

func (x *StarlarkLiteral) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*StarlarkLiteral) ProtoMessage added in v2.8.0

func (*StarlarkLiteral) ProtoMessage()

func (*StarlarkLiteral) ProtoReflect added in v2.8.0

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

func (*StarlarkLiteral) Reset added in v2.8.0

func (x *StarlarkLiteral) Reset()

func (*StarlarkLiteral) String added in v2.8.0

func (x *StarlarkLiteral) String() string

func (*StarlarkLiteral) Validate added in v2.8.0

func (m *StarlarkLiteral) Validate() error

Validate checks the field values on StarlarkLiteral with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StarlarkLiteral) ValidateAll added in v2.8.0

func (m *StarlarkLiteral) ValidateAll() error

ValidateAll checks the field values on StarlarkLiteral with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StarlarkLiteralMultiError, or nil if none found.

type StarlarkLiteralMultiError added in v2.8.0

type StarlarkLiteralMultiError []error

StarlarkLiteralMultiError is an error wrapping multiple validation errors returned by StarlarkLiteral.ValidateAll() if the designated constraints aren't met.

func (StarlarkLiteralMultiError) AllErrors added in v2.8.0

func (m StarlarkLiteralMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StarlarkLiteralMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type StarlarkLiteralValidationError added in v2.8.0

type StarlarkLiteralValidationError struct {
	// contains filtered or unexported fields
}

StarlarkLiteralValidationError is the validation error returned by StarlarkLiteral.Validate if the designated constraints aren't met.

func (StarlarkLiteralValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (StarlarkLiteralValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (StarlarkLiteralValidationError) ErrorName added in v2.8.0

func (e StarlarkLiteralValidationError) ErrorName() string

ErrorName returns error name.

func (StarlarkLiteralValidationError) Field added in v2.8.0

Field function returns field value.

func (StarlarkLiteralValidationError) Key added in v2.8.0

Key function returns key value.

func (StarlarkLiteralValidationError) Reason added in v2.8.0

Reason function returns reason value.

type StarlarkMultiError added in v2.8.0

type StarlarkMultiError []error

StarlarkMultiError is an error wrapping multiple validation errors returned by Starlark.ValidateAll() if the designated constraints aren't met.

func (StarlarkMultiError) AllErrors added in v2.8.0

func (m StarlarkMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StarlarkMultiError) Error added in v2.8.0

func (m StarlarkMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type StarlarkValidationError added in v2.8.0

type StarlarkValidationError struct {
	// contains filtered or unexported fields
}

StarlarkValidationError is the validation error returned by Starlark.Validate if the designated constraints aren't met.

func (StarlarkValidationError) Cause added in v2.8.0

func (e StarlarkValidationError) Cause() error

Cause function returns cause value.

func (StarlarkValidationError) Error added in v2.8.0

func (e StarlarkValidationError) Error() string

Error satisfies the builtin error interface

func (StarlarkValidationError) ErrorName added in v2.8.0

func (e StarlarkValidationError) ErrorName() string

ErrorName returns error name.

func (StarlarkValidationError) Field added in v2.8.0

func (e StarlarkValidationError) Field() string

Field function returns field value.

func (StarlarkValidationError) Key added in v2.8.0

func (e StarlarkValidationError) Key() bool

Key function returns key value.

func (StarlarkValidationError) Reason added in v2.8.0

func (e StarlarkValidationError) Reason() string

Reason function returns reason value.

type Starlark_Builtin added in v2.8.0

type Starlark_Builtin struct {
	// One built into the pachd binary.
	Builtin string `protobuf:"bytes,1,opt,name=builtin,proto3,oneof"`
}

type Starlark_Literal added in v2.8.0

type Starlark_Literal struct {
	// Or a script supplied in this request.
	Literal *StarlarkLiteral `protobuf:"bytes,2,opt,name=literal,proto3,oneof"`
}

type System added in v2.7.0

type System struct {
	Helm      bool   `protobuf:"varint,1,opt,name=helm,proto3" json:"helm,omitempty"`
	Database  bool   `protobuf:"varint,2,opt,name=database,proto3" json:"database,omitempty"`
	Version   bool   `protobuf:"varint,3,opt,name=version,proto3" json:"version,omitempty"`
	Describes []*App `protobuf:"bytes,4,rep,name=describes,proto3" json:"describes,omitempty"`
	Logs      []*App `protobuf:"bytes,5,rep,name=logs,proto3" json:"logs,omitempty"`
	LokiLogs  []*App `protobuf:"bytes,6,rep,name=loki_logs,json=lokiLogs,proto3" json:"loki_logs,omitempty"`
	Binaries  []*App `protobuf:"bytes,7,rep,name=binaries,proto3" json:"binaries,omitempty"`
	Profiles  []*App `protobuf:"bytes,8,rep,name=profiles,proto3" json:"profiles,omitempty"`
	// contains filtered or unexported fields
}

func (*System) Descriptor deprecated added in v2.7.0

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

Deprecated: Use System.ProtoReflect.Descriptor instead.

func (*System) GetBinaries added in v2.7.0

func (x *System) GetBinaries() []*App

func (*System) GetDatabase added in v2.7.0

func (x *System) GetDatabase() bool

func (*System) GetDescribes added in v2.7.0

func (x *System) GetDescribes() []*App

func (*System) GetHelm added in v2.7.0

func (x *System) GetHelm() bool

func (*System) GetLogs added in v2.7.0

func (x *System) GetLogs() []*App

func (*System) GetLokiLogs added in v2.7.0

func (x *System) GetLokiLogs() []*App

func (*System) GetProfiles added in v2.7.0

func (x *System) GetProfiles() []*App

func (*System) GetVersion added in v2.7.0

func (x *System) GetVersion() bool

func (*System) MarshalLogObject added in v2.7.0

func (x *System) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*System) ProtoMessage added in v2.7.0

func (*System) ProtoMessage()

func (*System) ProtoReflect added in v2.7.0

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

func (*System) Reset added in v2.7.0

func (x *System) Reset()

func (*System) String added in v2.7.0

func (x *System) String() string

func (*System) Validate added in v2.8.0

func (m *System) Validate() error

Validate checks the field values on System with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*System) ValidateAll added in v2.8.0

func (m *System) ValidateAll() error

ValidateAll checks the field values on System with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SystemMultiError, or nil if none found.

type SystemMultiError added in v2.8.0

type SystemMultiError []error

SystemMultiError is an error wrapping multiple validation errors returned by System.ValidateAll() if the designated constraints aren't met.

func (SystemMultiError) AllErrors added in v2.8.0

func (m SystemMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SystemMultiError) Error added in v2.8.0

func (m SystemMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SystemValidationError added in v2.8.0

type SystemValidationError struct {
	// contains filtered or unexported fields
}

SystemValidationError is the validation error returned by System.Validate if the designated constraints aren't met.

func (SystemValidationError) Cause added in v2.8.0

func (e SystemValidationError) Cause() error

Cause function returns cause value.

func (SystemValidationError) Error added in v2.8.0

func (e SystemValidationError) Error() string

Error satisfies the builtin error interface

func (SystemValidationError) ErrorName added in v2.8.0

func (e SystemValidationError) ErrorName() string

ErrorName returns error name.

func (SystemValidationError) Field added in v2.8.0

func (e SystemValidationError) Field() string

Field function returns field value.

func (SystemValidationError) Key added in v2.8.0

func (e SystemValidationError) Key() bool

Key function returns key value.

func (SystemValidationError) Reason added in v2.8.0

func (e SystemValidationError) Reason() string

Reason function returns reason value.

type TraceChunk added in v2.10.0

type TraceChunk struct {

	// Types that are assignable to Reply:
	//
	//	*TraceChunk_Content
	Reply isTraceChunk_Reply `protobuf_oneof:"reply"`
	// contains filtered or unexported fields
}

func (*TraceChunk) Descriptor deprecated added in v2.10.0

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

Deprecated: Use TraceChunk.ProtoReflect.Descriptor instead.

func (*TraceChunk) GetContent added in v2.10.0

func (x *TraceChunk) GetContent() *wrapperspb.BytesValue

func (*TraceChunk) GetReply added in v2.10.0

func (m *TraceChunk) GetReply() isTraceChunk_Reply

func (*TraceChunk) MarshalLogObject added in v2.10.0

func (x *TraceChunk) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*TraceChunk) ProtoMessage added in v2.10.0

func (*TraceChunk) ProtoMessage()

func (*TraceChunk) ProtoReflect added in v2.10.0

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

func (*TraceChunk) Reset added in v2.10.0

func (x *TraceChunk) Reset()

func (*TraceChunk) String added in v2.10.0

func (x *TraceChunk) String() string

func (*TraceChunk) Validate added in v2.10.0

func (m *TraceChunk) Validate() error

Validate checks the field values on TraceChunk with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TraceChunk) ValidateAll added in v2.10.0

func (m *TraceChunk) ValidateAll() error

ValidateAll checks the field values on TraceChunk with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TraceChunkMultiError, or nil if none found.

type TraceChunkMultiError added in v2.10.0

type TraceChunkMultiError []error

TraceChunkMultiError is an error wrapping multiple validation errors returned by TraceChunk.ValidateAll() if the designated constraints aren't met.

func (TraceChunkMultiError) AllErrors added in v2.10.0

func (m TraceChunkMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TraceChunkMultiError) Error added in v2.10.0

func (m TraceChunkMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TraceChunkValidationError added in v2.10.0

type TraceChunkValidationError struct {
	// contains filtered or unexported fields
}

TraceChunkValidationError is the validation error returned by TraceChunk.Validate if the designated constraints aren't met.

func (TraceChunkValidationError) Cause added in v2.10.0

func (e TraceChunkValidationError) Cause() error

Cause function returns cause value.

func (TraceChunkValidationError) Error added in v2.10.0

Error satisfies the builtin error interface

func (TraceChunkValidationError) ErrorName added in v2.10.0

func (e TraceChunkValidationError) ErrorName() string

ErrorName returns error name.

func (TraceChunkValidationError) Field added in v2.10.0

Field function returns field value.

func (TraceChunkValidationError) Key added in v2.10.0

Key function returns key value.

func (TraceChunkValidationError) Reason added in v2.10.0

func (e TraceChunkValidationError) Reason() string

Reason function returns reason value.

type TraceChunk_Content added in v2.10.0

type TraceChunk_Content struct {
	Content *wrapperspb.BytesValue `protobuf:"bytes,1,opt,name=content,proto3,oneof"`
}

type TraceRequest added in v2.10.0

type TraceRequest struct {
	Duration *durationpb.Duration `protobuf:"bytes,1,opt,name=duration,proto3" json:"duration,omitempty"`
	// contains filtered or unexported fields
}

func (*TraceRequest) Descriptor deprecated added in v2.10.0

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

Deprecated: Use TraceRequest.ProtoReflect.Descriptor instead.

func (*TraceRequest) GetDuration added in v2.10.0

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

func (*TraceRequest) MarshalLogObject added in v2.10.0

func (x *TraceRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*TraceRequest) ProtoMessage added in v2.10.0

func (*TraceRequest) ProtoMessage()

func (*TraceRequest) ProtoReflect added in v2.10.0

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

func (*TraceRequest) Reset added in v2.10.0

func (x *TraceRequest) Reset()

func (*TraceRequest) String added in v2.10.0

func (x *TraceRequest) String() string

func (*TraceRequest) Validate added in v2.10.0

func (m *TraceRequest) Validate() error

Validate checks the field values on TraceRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TraceRequest) ValidateAll added in v2.10.0

func (m *TraceRequest) ValidateAll() error

ValidateAll checks the field values on TraceRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TraceRequestMultiError, or nil if none found.

type TraceRequestMultiError added in v2.10.0

type TraceRequestMultiError []error

TraceRequestMultiError is an error wrapping multiple validation errors returned by TraceRequest.ValidateAll() if the designated constraints aren't met.

func (TraceRequestMultiError) AllErrors added in v2.10.0

func (m TraceRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TraceRequestMultiError) Error added in v2.10.0

func (m TraceRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TraceRequestValidationError added in v2.10.0

type TraceRequestValidationError struct {
	// contains filtered or unexported fields
}

TraceRequestValidationError is the validation error returned by TraceRequest.Validate if the designated constraints aren't met.

func (TraceRequestValidationError) Cause added in v2.10.0

Cause function returns cause value.

func (TraceRequestValidationError) Error added in v2.10.0

Error satisfies the builtin error interface

func (TraceRequestValidationError) ErrorName added in v2.10.0

func (e TraceRequestValidationError) ErrorName() string

ErrorName returns error name.

func (TraceRequestValidationError) Field added in v2.10.0

Field function returns field value.

func (TraceRequestValidationError) Key added in v2.10.0

Key function returns key value.

func (TraceRequestValidationError) Reason added in v2.10.0

Reason function returns reason value.

type UnimplementedDebugServer

type UnimplementedDebugServer struct {
}

UnimplementedDebugServer must be embedded to have forward compatible implementations.

func (UnimplementedDebugServer) Binary

func (UnimplementedDebugServer) Dump

func (UnimplementedDebugServer) DumpV2 added in v2.7.0

func (UnimplementedDebugServer) GetDumpV2Template added in v2.7.0

func (UnimplementedDebugServer) Profile

func (UnimplementedDebugServer) RunPFSLoadTest added in v2.8.0

func (UnimplementedDebugServer) RunPFSLoadTestDefault added in v2.8.0

func (UnimplementedDebugServer) SetLogLevel

func (UnimplementedDebugServer) Trace added in v2.10.0

type UnsafeDebugServer added in v2.7.0

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

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

type Worker

type Worker struct {
	Pod        string `protobuf:"bytes,1,opt,name=pod,proto3" json:"pod,omitempty"`
	Redirected bool   `protobuf:"varint,2,opt,name=redirected,proto3" json:"redirected,omitempty"`
	// contains filtered or unexported fields
}

func (*Worker) Descriptor deprecated

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

Deprecated: Use Worker.ProtoReflect.Descriptor instead.

func (*Worker) GetPod

func (x *Worker) GetPod() string

func (*Worker) GetRedirected

func (x *Worker) GetRedirected() bool

func (*Worker) MarshalLogObject

func (x *Worker) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Worker) ProtoMessage

func (*Worker) ProtoMessage()

func (*Worker) ProtoReflect added in v2.7.0

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

func (*Worker) Reset

func (x *Worker) Reset()

func (*Worker) String

func (x *Worker) String() string

func (*Worker) Validate added in v2.8.0

func (m *Worker) Validate() error

Validate checks the field values on Worker with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Worker) ValidateAll added in v2.8.0

func (m *Worker) ValidateAll() error

ValidateAll checks the field values on Worker with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in WorkerMultiError, or nil if none found.

type WorkerMultiError added in v2.8.0

type WorkerMultiError []error

WorkerMultiError is an error wrapping multiple validation errors returned by Worker.ValidateAll() if the designated constraints aren't met.

func (WorkerMultiError) AllErrors added in v2.8.0

func (m WorkerMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WorkerMultiError) Error added in v2.8.0

func (m WorkerMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type WorkerValidationError added in v2.8.0

type WorkerValidationError struct {
	// contains filtered or unexported fields
}

WorkerValidationError is the validation error returned by Worker.Validate if the designated constraints aren't met.

func (WorkerValidationError) Cause added in v2.8.0

func (e WorkerValidationError) Cause() error

Cause function returns cause value.

func (WorkerValidationError) Error added in v2.8.0

func (e WorkerValidationError) Error() string

Error satisfies the builtin error interface

func (WorkerValidationError) ErrorName added in v2.8.0

func (e WorkerValidationError) ErrorName() string

ErrorName returns error name.

func (WorkerValidationError) Field added in v2.8.0

func (e WorkerValidationError) Field() string

Field function returns field value.

func (WorkerValidationError) Key added in v2.8.0

func (e WorkerValidationError) Key() bool

Key function returns key value.

func (WorkerValidationError) Reason added in v2.8.0

func (e WorkerValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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