pbconsole

package
v0.9.0 Latest Latest
Warning

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

Go to latest
Published: Sep 15, 2023 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	EventType_name = map[int32]string{
		0: "EVENT_TYPE_UNKNOWN",
		1: "EVENT_TYPE_DEPLOYMENT",
		2: "EVENT_TYPE_CALL",
		3: "EVENT_TYPE_LOG",
	}
	EventType_value = map[string]int32{
		"EVENT_TYPE_UNKNOWN":    0,
		"EVENT_TYPE_DEPLOYMENT": 1,
		"EVENT_TYPE_CALL":       2,
		"EVENT_TYPE_LOG":        3,
	}
)

Enum value maps for EventType.

View Source
var (
	DeploymentEventType_name = map[int32]string{
		0: "DEPLOYMENT_UNKNOWN",
		1: "DEPLOYMENT_CREATED",
		2: "DEPLOYMENT_UPDATED",
		3: "DEPLOYMENT_REPLACED",
	}
	DeploymentEventType_value = map[string]int32{
		"DEPLOYMENT_UNKNOWN":  0,
		"DEPLOYMENT_CREATED":  1,
		"DEPLOYMENT_UPDATED":  2,
		"DEPLOYMENT_REPLACED": 3,
	}
)

Enum value maps for DeploymentEventType.

View Source
var (
	LogLevel_name = map[int32]string{
		0:  "LOG_LEVEL_UNKNOWN",
		1:  "LOG_LEVEL_TRACE",
		5:  "LOG_LEVEL_DEBUG",
		9:  "LOG_LEVEL_INFO",
		13: "LOG_LEVEL_WARN",
		17: "LOG_LEVEL_ERROR",
	}
	LogLevel_value = map[string]int32{
		"LOG_LEVEL_UNKNOWN": 0,
		"LOG_LEVEL_TRACE":   1,
		"LOG_LEVEL_DEBUG":   5,
		"LOG_LEVEL_INFO":    9,
		"LOG_LEVEL_WARN":    13,
		"LOG_LEVEL_ERROR":   17,
	}
)

Enum value maps for LogLevel.

View Source
var (
	TimelineQuery_Order_name = map[int32]string{
		0: "ASC",
		1: "DESC",
	}
	TimelineQuery_Order_value = map[string]int32{
		"ASC":  0,
		"DESC": 1,
	}
)

Enum value maps for TimelineQuery_Order.

View Source
var File_xyz_block_ftl_v1_console_console_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Call

type Call struct {
	RequestKey         *string                `protobuf:"bytes,1,opt,name=request_key,json=requestKey,proto3,oneof" json:"request_key,omitempty"`
	DeploymentName     string                 `protobuf:"bytes,2,opt,name=deployment_name,json=deploymentName,proto3" json:"deployment_name,omitempty"`
	TimeStamp          *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
	SourceVerbRef      *schema.VerbRef        `protobuf:"bytes,4,opt,name=source_verb_ref,json=sourceVerbRef,proto3,oneof" json:"source_verb_ref,omitempty"`
	DestinationVerbRef *schema.VerbRef        `protobuf:"bytes,5,opt,name=destination_verb_ref,json=destinationVerbRef,proto3" json:"destination_verb_ref,omitempty"`
	Duration           *durationpb.Duration   `protobuf:"bytes,6,opt,name=duration,proto3" json:"duration,omitempty"`
	Request            string                 `protobuf:"bytes,7,opt,name=request,proto3" json:"request,omitempty"`
	Response           string                 `protobuf:"bytes,8,opt,name=response,proto3" json:"response,omitempty"`
	Error              *string                `protobuf:"bytes,9,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*Call) Descriptor deprecated

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

Deprecated: Use Call.ProtoReflect.Descriptor instead.

func (*Call) GetDeploymentName

func (x *Call) GetDeploymentName() string

func (*Call) GetDestinationVerbRef

func (x *Call) GetDestinationVerbRef() *schema.VerbRef

func (*Call) GetDuration

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

func (*Call) GetError

func (x *Call) GetError() string

func (*Call) GetRequest

func (x *Call) GetRequest() string

func (*Call) GetRequestKey

func (x *Call) GetRequestKey() string

func (*Call) GetResponse

func (x *Call) GetResponse() string

func (*Call) GetSourceVerbRef

func (x *Call) GetSourceVerbRef() *schema.VerbRef

func (*Call) GetTimeStamp

func (x *Call) GetTimeStamp() *timestamppb.Timestamp

func (*Call) ProtoMessage

func (*Call) ProtoMessage()

func (*Call) ProtoReflect

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

func (*Call) Reset

func (x *Call) Reset()

func (*Call) String

func (x *Call) String() string

type Data

type Data struct {
	Data   *schema.Data `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Schema string       `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
	// contains filtered or unexported fields
}

func (*Data) Descriptor deprecated

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

Deprecated: Use Data.ProtoReflect.Descriptor instead.

func (*Data) GetData

func (x *Data) GetData() *schema.Data

func (*Data) GetSchema

func (x *Data) GetSchema() string

func (*Data) ProtoMessage

func (*Data) ProtoMessage()

func (*Data) ProtoReflect

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

func (*Data) Reset

func (x *Data) Reset()

func (*Data) String

func (x *Data) String() string

type Deployment

type Deployment struct {
	Name        string              `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Language    string              `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
	ModuleName  string              `protobuf:"bytes,3,opt,name=module_name,json=moduleName,proto3" json:"module_name,omitempty"`
	MinReplicas int32               `protobuf:"varint,4,opt,name=min_replicas,json=minReplicas,proto3" json:"min_replicas,omitempty"`
	EventType   DeploymentEventType `` /* 139-byte string literal not displayed */
	Replaced    *string             `protobuf:"bytes,6,opt,name=replaced,proto3,oneof" json:"replaced,omitempty"`
	// contains filtered or unexported fields
}

func (*Deployment) Descriptor deprecated

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

Deprecated: Use Deployment.ProtoReflect.Descriptor instead.

func (*Deployment) GetEventType

func (x *Deployment) GetEventType() DeploymentEventType

func (*Deployment) GetLanguage

func (x *Deployment) GetLanguage() string

func (*Deployment) GetMinReplicas

func (x *Deployment) GetMinReplicas() int32

func (*Deployment) GetModuleName

func (x *Deployment) GetModuleName() string

func (*Deployment) GetName

func (x *Deployment) GetName() string

func (*Deployment) GetReplaced

func (x *Deployment) GetReplaced() string

func (*Deployment) ProtoMessage

func (*Deployment) ProtoMessage()

func (*Deployment) ProtoReflect

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

func (*Deployment) Reset

func (x *Deployment) Reset()

func (*Deployment) String

func (x *Deployment) String() string

type DeploymentEventType

type DeploymentEventType int32
const (
	DeploymentEventType_DEPLOYMENT_UNKNOWN  DeploymentEventType = 0
	DeploymentEventType_DEPLOYMENT_CREATED  DeploymentEventType = 1
	DeploymentEventType_DEPLOYMENT_UPDATED  DeploymentEventType = 2
	DeploymentEventType_DEPLOYMENT_REPLACED DeploymentEventType = 3
)

func (DeploymentEventType) Descriptor

func (DeploymentEventType) Enum

func (DeploymentEventType) EnumDescriptor deprecated

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

Deprecated: Use DeploymentEventType.Descriptor instead.

func (DeploymentEventType) Number

func (DeploymentEventType) String

func (x DeploymentEventType) String() string

func (DeploymentEventType) Type

type EventType added in v0.5.0

type EventType int32
const (
	EventType_EVENT_TYPE_UNKNOWN    EventType = 0
	EventType_EVENT_TYPE_DEPLOYMENT EventType = 1
	EventType_EVENT_TYPE_CALL       EventType = 2
	EventType_EVENT_TYPE_LOG        EventType = 3
)

func (EventType) Descriptor added in v0.5.0

func (EventType) Descriptor() protoreflect.EnumDescriptor

func (EventType) Enum added in v0.5.0

func (x EventType) Enum() *EventType

func (EventType) EnumDescriptor deprecated added in v0.5.0

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

Deprecated: Use EventType.Descriptor instead.

func (EventType) Number added in v0.5.0

func (x EventType) Number() protoreflect.EnumNumber

func (EventType) String added in v0.5.0

func (x EventType) String() string

func (EventType) Type added in v0.5.0

type GetCallsRequest

type GetCallsRequest struct {
	Module string `protobuf:"bytes,1,opt,name=module,proto3" json:"module,omitempty"`
	Verb   string `protobuf:"bytes,2,opt,name=verb,proto3" json:"verb,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCallsRequest) Descriptor deprecated

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

Deprecated: Use GetCallsRequest.ProtoReflect.Descriptor instead.

func (*GetCallsRequest) GetModule

func (x *GetCallsRequest) GetModule() string

func (*GetCallsRequest) GetVerb

func (x *GetCallsRequest) GetVerb() string

func (*GetCallsRequest) ProtoMessage

func (*GetCallsRequest) ProtoMessage()

func (*GetCallsRequest) ProtoReflect

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

func (*GetCallsRequest) Reset

func (x *GetCallsRequest) Reset()

func (*GetCallsRequest) String

func (x *GetCallsRequest) String() string

type GetCallsResponse

type GetCallsResponse struct {
	Calls []*Call `protobuf:"bytes,1,rep,name=calls,proto3" json:"calls,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCallsResponse) Descriptor deprecated

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

Deprecated: Use GetCallsResponse.ProtoReflect.Descriptor instead.

func (*GetCallsResponse) GetCalls

func (x *GetCallsResponse) GetCalls() []*Call

func (*GetCallsResponse) ProtoMessage

func (*GetCallsResponse) ProtoMessage()

func (*GetCallsResponse) ProtoReflect

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

func (*GetCallsResponse) Reset

func (x *GetCallsResponse) Reset()

func (*GetCallsResponse) String

func (x *GetCallsResponse) String() string

type GetModulesRequest

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

func (*GetModulesRequest) Descriptor deprecated

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

Deprecated: Use GetModulesRequest.ProtoReflect.Descriptor instead.

func (*GetModulesRequest) ProtoMessage

func (*GetModulesRequest) ProtoMessage()

func (*GetModulesRequest) ProtoReflect

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

func (*GetModulesRequest) Reset

func (x *GetModulesRequest) Reset()

func (*GetModulesRequest) String

func (x *GetModulesRequest) String() string

type GetModulesResponse

type GetModulesResponse struct {
	Modules []*Module `protobuf:"bytes,1,rep,name=modules,proto3" json:"modules,omitempty"`
	// contains filtered or unexported fields
}

func (*GetModulesResponse) Descriptor deprecated

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

Deprecated: Use GetModulesResponse.ProtoReflect.Descriptor instead.

func (*GetModulesResponse) GetModules

func (x *GetModulesResponse) GetModules() []*Module

func (*GetModulesResponse) ProtoMessage

func (*GetModulesResponse) ProtoMessage()

func (*GetModulesResponse) ProtoReflect

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

func (*GetModulesResponse) Reset

func (x *GetModulesResponse) Reset()

func (*GetModulesResponse) String

func (x *GetModulesResponse) String() string

type GetRequestCallsRequest

type GetRequestCallsRequest struct {
	RequestKey string `protobuf:"bytes,1,opt,name=request_key,json=requestKey,proto3" json:"request_key,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRequestCallsRequest) Descriptor deprecated

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

Deprecated: Use GetRequestCallsRequest.ProtoReflect.Descriptor instead.

func (*GetRequestCallsRequest) GetRequestKey

func (x *GetRequestCallsRequest) GetRequestKey() string

func (*GetRequestCallsRequest) ProtoMessage

func (*GetRequestCallsRequest) ProtoMessage()

func (*GetRequestCallsRequest) ProtoReflect

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

func (*GetRequestCallsRequest) Reset

func (x *GetRequestCallsRequest) Reset()

func (*GetRequestCallsRequest) String

func (x *GetRequestCallsRequest) String() string

type GetRequestCallsResponse

type GetRequestCallsResponse struct {
	Calls []*Call `protobuf:"bytes,1,rep,name=calls,proto3" json:"calls,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRequestCallsResponse) Descriptor deprecated

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

Deprecated: Use GetRequestCallsResponse.ProtoReflect.Descriptor instead.

func (*GetRequestCallsResponse) GetCalls

func (x *GetRequestCallsResponse) GetCalls() []*Call

func (*GetRequestCallsResponse) ProtoMessage

func (*GetRequestCallsResponse) ProtoMessage()

func (*GetRequestCallsResponse) ProtoReflect

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

func (*GetRequestCallsResponse) Reset

func (x *GetRequestCallsResponse) Reset()

func (*GetRequestCallsResponse) String

func (x *GetRequestCallsResponse) String() string

type GetTimelineResponse added in v0.5.0

type GetTimelineResponse struct {
	Events []*TimelineEvent `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	// For pagination, this cursor is where we should start our next query
	Cursor *int64 `protobuf:"varint,2,opt,name=cursor,proto3,oneof" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTimelineResponse) Descriptor deprecated added in v0.5.0

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

Deprecated: Use GetTimelineResponse.ProtoReflect.Descriptor instead.

func (*GetTimelineResponse) GetCursor added in v0.6.0

func (x *GetTimelineResponse) GetCursor() int64

func (*GetTimelineResponse) GetEvents added in v0.5.0

func (x *GetTimelineResponse) GetEvents() []*TimelineEvent

func (*GetTimelineResponse) ProtoMessage added in v0.5.0

func (*GetTimelineResponse) ProtoMessage()

func (*GetTimelineResponse) ProtoReflect added in v0.5.0

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

func (*GetTimelineResponse) Reset added in v0.5.0

func (x *GetTimelineResponse) Reset()

func (*GetTimelineResponse) String added in v0.5.0

func (x *GetTimelineResponse) String() string

type LogEntry

type LogEntry struct {
	DeploymentName string                 `protobuf:"bytes,1,opt,name=deployment_name,json=deploymentName,proto3" json:"deployment_name,omitempty"`
	RequestKey     *string                `protobuf:"bytes,2,opt,name=request_key,json=requestKey,proto3,oneof" json:"request_key,omitempty"`
	TimeStamp      *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
	LogLevel       int32                  `protobuf:"varint,4,opt,name=log_level,json=logLevel,proto3" json:"log_level,omitempty"`
	Attributes     map[string]string      `` /* 161-byte string literal not displayed */
	Message        string                 `protobuf:"bytes,6,opt,name=message,proto3" json:"message,omitempty"`
	Error          *string                `protobuf:"bytes,7,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*LogEntry) Descriptor deprecated

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

Deprecated: Use LogEntry.ProtoReflect.Descriptor instead.

func (*LogEntry) GetAttributes

func (x *LogEntry) GetAttributes() map[string]string

func (*LogEntry) GetDeploymentName

func (x *LogEntry) GetDeploymentName() string

func (*LogEntry) GetError

func (x *LogEntry) GetError() string

func (*LogEntry) GetLogLevel

func (x *LogEntry) GetLogLevel() int32

func (*LogEntry) GetMessage

func (x *LogEntry) GetMessage() string

func (*LogEntry) GetRequestKey

func (x *LogEntry) GetRequestKey() string

func (*LogEntry) GetTimeStamp

func (x *LogEntry) GetTimeStamp() *timestamppb.Timestamp

func (*LogEntry) ProtoMessage

func (*LogEntry) ProtoMessage()

func (*LogEntry) ProtoReflect

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

func (*LogEntry) Reset

func (x *LogEntry) Reset()

func (*LogEntry) String

func (x *LogEntry) String() string

type LogLevel added in v0.5.0

type LogLevel int32
const (
	LogLevel_LOG_LEVEL_UNKNOWN LogLevel = 0
	LogLevel_LOG_LEVEL_TRACE   LogLevel = 1
	LogLevel_LOG_LEVEL_DEBUG   LogLevel = 5
	LogLevel_LOG_LEVEL_INFO    LogLevel = 9
	LogLevel_LOG_LEVEL_WARN    LogLevel = 13
	LogLevel_LOG_LEVEL_ERROR   LogLevel = 17
)

func (LogLevel) Descriptor added in v0.5.0

func (LogLevel) Descriptor() protoreflect.EnumDescriptor

func (LogLevel) Enum added in v0.5.0

func (x LogLevel) Enum() *LogLevel

func (LogLevel) EnumDescriptor deprecated added in v0.5.0

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

Deprecated: Use LogLevel.Descriptor instead.

func (LogLevel) Number added in v0.5.0

func (x LogLevel) Number() protoreflect.EnumNumber

func (LogLevel) String added in v0.5.0

func (x LogLevel) String() string

func (LogLevel) Type added in v0.5.0

type Module

type Module struct {
	Name           string  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	DeploymentName string  `protobuf:"bytes,2,opt,name=deployment_name,json=deploymentName,proto3" json:"deployment_name,omitempty"`
	Language       string  `protobuf:"bytes,3,opt,name=language,proto3" json:"language,omitempty"`
	Schema         string  `protobuf:"bytes,4,opt,name=schema,proto3" json:"schema,omitempty"`
	Verbs          []*Verb `protobuf:"bytes,5,rep,name=verbs,proto3" json:"verbs,omitempty"`
	Data           []*Data `protobuf:"bytes,6,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*Module) Descriptor deprecated

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

Deprecated: Use Module.ProtoReflect.Descriptor instead.

func (*Module) GetData

func (x *Module) GetData() []*Data

func (*Module) GetDeploymentName

func (x *Module) GetDeploymentName() string

func (*Module) GetLanguage

func (x *Module) GetLanguage() string

func (*Module) GetName

func (x *Module) GetName() string

func (*Module) GetSchema

func (x *Module) GetSchema() string

func (*Module) GetVerbs

func (x *Module) GetVerbs() []*Verb

func (*Module) ProtoMessage

func (*Module) ProtoMessage()

func (*Module) ProtoReflect

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

func (*Module) Reset

func (x *Module) Reset()

func (*Module) String

func (x *Module) String() string

type StreamTimelineRequest

type StreamTimelineRequest struct {
	UpdateInterval *durationpb.Duration   `protobuf:"bytes,1,opt,name=update_interval,json=updateInterval,proto3,oneof" json:"update_interval,omitempty"`
	AfterTime      *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=after_time,json=afterTime,proto3" json:"after_time,omitempty"`
	DeploymentName string                 `protobuf:"bytes,3,opt,name=deployment_name,json=deploymentName,proto3" json:"deployment_name,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamTimelineRequest) Descriptor deprecated

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

Deprecated: Use StreamTimelineRequest.ProtoReflect.Descriptor instead.

func (*StreamTimelineRequest) GetAfterTime

func (x *StreamTimelineRequest) GetAfterTime() *timestamppb.Timestamp

func (*StreamTimelineRequest) GetDeploymentName

func (x *StreamTimelineRequest) GetDeploymentName() string

func (*StreamTimelineRequest) GetUpdateInterval

func (x *StreamTimelineRequest) GetUpdateInterval() *durationpb.Duration

func (*StreamTimelineRequest) ProtoMessage

func (*StreamTimelineRequest) ProtoMessage()

func (*StreamTimelineRequest) ProtoReflect

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

func (*StreamTimelineRequest) Reset

func (x *StreamTimelineRequest) Reset()

func (*StreamTimelineRequest) String

func (x *StreamTimelineRequest) String() string

type StreamTimelineResponse

type StreamTimelineResponse struct {
	Event *TimelineEvent `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	// If true there are more logs immediately following this one as part of the initial batch.
	// If false this is the last log in the initial batch, but others may follow later.
	More bool `protobuf:"varint,2,opt,name=more,proto3" json:"more,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamTimelineResponse) Descriptor deprecated

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

Deprecated: Use StreamTimelineResponse.ProtoReflect.Descriptor instead.

func (*StreamTimelineResponse) GetEvent added in v0.5.0

func (x *StreamTimelineResponse) GetEvent() *TimelineEvent

func (*StreamTimelineResponse) GetMore

func (x *StreamTimelineResponse) GetMore() bool

func (*StreamTimelineResponse) ProtoMessage

func (*StreamTimelineResponse) ProtoMessage()

func (*StreamTimelineResponse) ProtoReflect

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

func (*StreamTimelineResponse) Reset

func (x *StreamTimelineResponse) Reset()

func (*StreamTimelineResponse) String

func (x *StreamTimelineResponse) String() string

type TimelineEvent added in v0.5.0

type TimelineEvent struct {
	TimeStamp *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
	// Unique ID for event.
	Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	// Types that are assignable to Entry:
	//	*TimelineEvent_Call
	//	*TimelineEvent_Deployment
	//	*TimelineEvent_Log
	Entry isTimelineEvent_Entry `protobuf_oneof:"entry"`
	// contains filtered or unexported fields
}

func (*TimelineEvent) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineEvent.ProtoReflect.Descriptor instead.

func (*TimelineEvent) GetCall added in v0.5.0

func (x *TimelineEvent) GetCall() *Call

func (*TimelineEvent) GetDeployment added in v0.5.0

func (x *TimelineEvent) GetDeployment() *Deployment

func (*TimelineEvent) GetEntry added in v0.5.0

func (m *TimelineEvent) GetEntry() isTimelineEvent_Entry

func (*TimelineEvent) GetId added in v0.5.0

func (x *TimelineEvent) GetId() int64

func (*TimelineEvent) GetLog added in v0.5.0

func (x *TimelineEvent) GetLog() *LogEntry

func (*TimelineEvent) GetTimeStamp added in v0.5.0

func (x *TimelineEvent) GetTimeStamp() *timestamppb.Timestamp

func (*TimelineEvent) ProtoMessage added in v0.5.0

func (*TimelineEvent) ProtoMessage()

func (*TimelineEvent) ProtoReflect added in v0.5.0

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

func (*TimelineEvent) Reset added in v0.5.0

func (x *TimelineEvent) Reset()

func (*TimelineEvent) String added in v0.5.0

func (x *TimelineEvent) String() string

type TimelineEvent_Call added in v0.5.0

type TimelineEvent_Call struct {
	Call *Call `protobuf:"bytes,3,opt,name=call,proto3,oneof"`
}

type TimelineEvent_Deployment added in v0.5.0

type TimelineEvent_Deployment struct {
	Deployment *Deployment `protobuf:"bytes,4,opt,name=deployment,proto3,oneof"`
}

type TimelineEvent_Log added in v0.5.0

type TimelineEvent_Log struct {
	Log *LogEntry `protobuf:"bytes,5,opt,name=log,proto3,oneof"`
}

type TimelineQuery added in v0.5.0

type TimelineQuery struct {
	Filters []*TimelineQuery_Filter `protobuf:"bytes,1,rep,name=filters,proto3" json:"filters,omitempty"`
	Limit   int32                   `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Order   TimelineQuery_Order     `protobuf:"varint,3,opt,name=order,proto3,enum=xyz.block.ftl.v1.console.TimelineQuery_Order" json:"order,omitempty"`
	// contains filtered or unexported fields
}

Query for timeline events.

func (*TimelineQuery) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineQuery.ProtoReflect.Descriptor instead.

func (*TimelineQuery) GetFilters added in v0.5.0

func (x *TimelineQuery) GetFilters() []*TimelineQuery_Filter

func (*TimelineQuery) GetLimit added in v0.6.0

func (x *TimelineQuery) GetLimit() int32

func (*TimelineQuery) GetOrder added in v0.6.0

func (x *TimelineQuery) GetOrder() TimelineQuery_Order

func (*TimelineQuery) ProtoMessage added in v0.5.0

func (*TimelineQuery) ProtoMessage()

func (*TimelineQuery) ProtoReflect added in v0.5.0

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

func (*TimelineQuery) Reset added in v0.5.0

func (x *TimelineQuery) Reset()

func (*TimelineQuery) String added in v0.5.0

func (x *TimelineQuery) String() string

type TimelineQuery_DeploymentFilter added in v0.5.0

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

Filters events by deployment name.

func (*TimelineQuery_DeploymentFilter) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineQuery_DeploymentFilter.ProtoReflect.Descriptor instead.

func (*TimelineQuery_DeploymentFilter) GetDeployments added in v0.5.0

func (x *TimelineQuery_DeploymentFilter) GetDeployments() []string

func (*TimelineQuery_DeploymentFilter) ProtoMessage added in v0.5.0

func (*TimelineQuery_DeploymentFilter) ProtoMessage()

func (*TimelineQuery_DeploymentFilter) ProtoReflect added in v0.5.0

func (*TimelineQuery_DeploymentFilter) Reset added in v0.5.0

func (x *TimelineQuery_DeploymentFilter) Reset()

func (*TimelineQuery_DeploymentFilter) String added in v0.5.0

type TimelineQuery_EventTypeFilter added in v0.5.0

type TimelineQuery_EventTypeFilter struct {
	EventTypes []EventType `` /* 139-byte string literal not displayed */
	// contains filtered or unexported fields
}

Filters events by event type.

func (*TimelineQuery_EventTypeFilter) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineQuery_EventTypeFilter.ProtoReflect.Descriptor instead.

func (*TimelineQuery_EventTypeFilter) GetEventTypes added in v0.5.0

func (x *TimelineQuery_EventTypeFilter) GetEventTypes() []EventType

func (*TimelineQuery_EventTypeFilter) ProtoMessage added in v0.5.0

func (*TimelineQuery_EventTypeFilter) ProtoMessage()

func (*TimelineQuery_EventTypeFilter) ProtoReflect added in v0.5.0

func (*TimelineQuery_EventTypeFilter) Reset added in v0.5.0

func (x *TimelineQuery_EventTypeFilter) Reset()

func (*TimelineQuery_EventTypeFilter) String added in v0.5.0

type TimelineQuery_Filter added in v0.5.0

type TimelineQuery_Filter struct {

	// These map 1:1 with filters in backend/controller/internal/dal/events.go
	//
	// Types that are assignable to Filter:
	//	*TimelineQuery_Filter_Limit
	//	*TimelineQuery_Filter_LogLevel
	//	*TimelineQuery_Filter_Deployments
	//	*TimelineQuery_Filter_Requests
	//	*TimelineQuery_Filter_EventTypes
	//	*TimelineQuery_Filter_Time
	//	*TimelineQuery_Filter_Id
	Filter isTimelineQuery_Filter_Filter `protobuf_oneof:"filter"`
	// contains filtered or unexported fields
}

func (*TimelineQuery_Filter) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineQuery_Filter.ProtoReflect.Descriptor instead.

func (*TimelineQuery_Filter) GetDeployments added in v0.5.0

func (*TimelineQuery_Filter) GetEventTypes added in v0.5.0

func (*TimelineQuery_Filter) GetFilter added in v0.5.0

func (m *TimelineQuery_Filter) GetFilter() isTimelineQuery_Filter_Filter

func (*TimelineQuery_Filter) GetId added in v0.5.0

func (*TimelineQuery_Filter) GetLimit added in v0.6.0

func (*TimelineQuery_Filter) GetLogLevel added in v0.5.0

func (*TimelineQuery_Filter) GetRequests added in v0.5.0

func (*TimelineQuery_Filter) GetTime added in v0.5.0

func (*TimelineQuery_Filter) ProtoMessage added in v0.5.0

func (*TimelineQuery_Filter) ProtoMessage()

func (*TimelineQuery_Filter) ProtoReflect added in v0.5.0

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

func (*TimelineQuery_Filter) Reset added in v0.5.0

func (x *TimelineQuery_Filter) Reset()

func (*TimelineQuery_Filter) String added in v0.5.0

func (x *TimelineQuery_Filter) String() string

type TimelineQuery_Filter_Deployments added in v0.5.0

type TimelineQuery_Filter_Deployments struct {
	Deployments *TimelineQuery_DeploymentFilter `protobuf:"bytes,3,opt,name=deployments,proto3,oneof"`
}

type TimelineQuery_Filter_EventTypes added in v0.5.0

type TimelineQuery_Filter_EventTypes struct {
	EventTypes *TimelineQuery_EventTypeFilter `protobuf:"bytes,5,opt,name=event_types,json=eventTypes,proto3,oneof"`
}

type TimelineQuery_Filter_Id added in v0.5.0

type TimelineQuery_Filter_Id struct {
	Id *TimelineQuery_IDFilter `protobuf:"bytes,7,opt,name=id,proto3,oneof"`
}

type TimelineQuery_Filter_Limit added in v0.6.0

type TimelineQuery_Filter_Limit struct {
	Limit *TimelineQuery_LimitFilter `protobuf:"bytes,1,opt,name=limit,proto3,oneof"`
}

type TimelineQuery_Filter_LogLevel added in v0.5.0

type TimelineQuery_Filter_LogLevel struct {
	LogLevel *TimelineQuery_LogLevelFilter `protobuf:"bytes,2,opt,name=log_level,json=logLevel,proto3,oneof"`
}

type TimelineQuery_Filter_Requests added in v0.5.0

type TimelineQuery_Filter_Requests struct {
	Requests *TimelineQuery_RequestFilter `protobuf:"bytes,4,opt,name=requests,proto3,oneof"`
}

type TimelineQuery_Filter_Time added in v0.5.0

type TimelineQuery_Filter_Time struct {
	Time *TimelineQuery_TimeFilter `protobuf:"bytes,6,opt,name=time,proto3,oneof"`
}

type TimelineQuery_IDFilter added in v0.5.0

type TimelineQuery_IDFilter struct {
	LowerThan  *int64 `protobuf:"varint,1,opt,name=lower_than,json=lowerThan,proto3,oneof" json:"lower_than,omitempty"`
	HigherThan *int64 `protobuf:"varint,2,opt,name=higher_than,json=higherThan,proto3,oneof" json:"higher_than,omitempty"`
	// contains filtered or unexported fields
}

Filters events by ID.

Either end of the ID range can be omitted to indicate no bound.

func (*TimelineQuery_IDFilter) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineQuery_IDFilter.ProtoReflect.Descriptor instead.

func (*TimelineQuery_IDFilter) GetHigherThan added in v0.5.0

func (x *TimelineQuery_IDFilter) GetHigherThan() int64

func (*TimelineQuery_IDFilter) GetLowerThan added in v0.5.0

func (x *TimelineQuery_IDFilter) GetLowerThan() int64

func (*TimelineQuery_IDFilter) ProtoMessage added in v0.5.0

func (*TimelineQuery_IDFilter) ProtoMessage()

func (*TimelineQuery_IDFilter) ProtoReflect added in v0.5.0

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

func (*TimelineQuery_IDFilter) Reset added in v0.5.0

func (x *TimelineQuery_IDFilter) Reset()

func (*TimelineQuery_IDFilter) String added in v0.5.0

func (x *TimelineQuery_IDFilter) String() string

type TimelineQuery_LimitFilter added in v0.6.0

type TimelineQuery_LimitFilter struct {
	Limit int32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

Limit the number of events returned.

func (*TimelineQuery_LimitFilter) Descriptor deprecated added in v0.6.0

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

Deprecated: Use TimelineQuery_LimitFilter.ProtoReflect.Descriptor instead.

func (*TimelineQuery_LimitFilter) GetLimit added in v0.6.0

func (x *TimelineQuery_LimitFilter) GetLimit() int32

func (*TimelineQuery_LimitFilter) ProtoMessage added in v0.6.0

func (*TimelineQuery_LimitFilter) ProtoMessage()

func (*TimelineQuery_LimitFilter) ProtoReflect added in v0.6.0

func (*TimelineQuery_LimitFilter) Reset added in v0.6.0

func (x *TimelineQuery_LimitFilter) Reset()

func (*TimelineQuery_LimitFilter) String added in v0.6.0

func (x *TimelineQuery_LimitFilter) String() string

type TimelineQuery_LogLevelFilter added in v0.5.0

type TimelineQuery_LogLevelFilter struct {
	LogLevel LogLevel `protobuf:"varint,1,opt,name=log_level,json=logLevel,proto3,enum=xyz.block.ftl.v1.console.LogLevel" json:"log_level,omitempty"`
	// contains filtered or unexported fields
}

Filters events by log level.

func (*TimelineQuery_LogLevelFilter) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineQuery_LogLevelFilter.ProtoReflect.Descriptor instead.

func (*TimelineQuery_LogLevelFilter) GetLogLevel added in v0.5.0

func (x *TimelineQuery_LogLevelFilter) GetLogLevel() LogLevel

func (*TimelineQuery_LogLevelFilter) ProtoMessage added in v0.5.0

func (*TimelineQuery_LogLevelFilter) ProtoMessage()

func (*TimelineQuery_LogLevelFilter) ProtoReflect added in v0.5.0

func (*TimelineQuery_LogLevelFilter) Reset added in v0.5.0

func (x *TimelineQuery_LogLevelFilter) Reset()

func (*TimelineQuery_LogLevelFilter) String added in v0.5.0

type TimelineQuery_Order added in v0.6.0

type TimelineQuery_Order int32
const (
	TimelineQuery_ASC  TimelineQuery_Order = 0
	TimelineQuery_DESC TimelineQuery_Order = 1
)

func (TimelineQuery_Order) Descriptor added in v0.6.0

func (TimelineQuery_Order) Enum added in v0.6.0

func (TimelineQuery_Order) EnumDescriptor deprecated added in v0.6.0

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

Deprecated: Use TimelineQuery_Order.Descriptor instead.

func (TimelineQuery_Order) Number added in v0.6.0

func (TimelineQuery_Order) String added in v0.6.0

func (x TimelineQuery_Order) String() string

func (TimelineQuery_Order) Type added in v0.6.0

type TimelineQuery_RequestFilter added in v0.5.0

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

Filters events by request key.

func (*TimelineQuery_RequestFilter) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineQuery_RequestFilter.ProtoReflect.Descriptor instead.

func (*TimelineQuery_RequestFilter) GetRequests added in v0.5.0

func (x *TimelineQuery_RequestFilter) GetRequests() []string

func (*TimelineQuery_RequestFilter) ProtoMessage added in v0.5.0

func (*TimelineQuery_RequestFilter) ProtoMessage()

func (*TimelineQuery_RequestFilter) ProtoReflect added in v0.5.0

func (*TimelineQuery_RequestFilter) Reset added in v0.5.0

func (x *TimelineQuery_RequestFilter) Reset()

func (*TimelineQuery_RequestFilter) String added in v0.5.0

func (x *TimelineQuery_RequestFilter) String() string

type TimelineQuery_TimeFilter added in v0.5.0

type TimelineQuery_TimeFilter struct {
	OlderThan *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=older_than,json=olderThan,proto3,oneof" json:"older_than,omitempty"`
	NewerThan *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=newer_than,json=newerThan,proto3,oneof" json:"newer_than,omitempty"`
	// contains filtered or unexported fields
}

Filters events by time.

Either end of the time range can be omitted to indicate no bound.

func (*TimelineQuery_TimeFilter) Descriptor deprecated added in v0.5.0

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

Deprecated: Use TimelineQuery_TimeFilter.ProtoReflect.Descriptor instead.

func (*TimelineQuery_TimeFilter) GetNewerThan added in v0.5.0

func (x *TimelineQuery_TimeFilter) GetNewerThan() *timestamppb.Timestamp

func (*TimelineQuery_TimeFilter) GetOlderThan added in v0.5.0

func (x *TimelineQuery_TimeFilter) GetOlderThan() *timestamppb.Timestamp

func (*TimelineQuery_TimeFilter) ProtoMessage added in v0.5.0

func (*TimelineQuery_TimeFilter) ProtoMessage()

func (*TimelineQuery_TimeFilter) ProtoReflect added in v0.5.0

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

func (*TimelineQuery_TimeFilter) Reset added in v0.5.0

func (x *TimelineQuery_TimeFilter) Reset()

func (*TimelineQuery_TimeFilter) String added in v0.5.0

func (x *TimelineQuery_TimeFilter) String() string

type Verb

type Verb struct {
	Verb              *schema.Verb `protobuf:"bytes,1,opt,name=verb,proto3" json:"verb,omitempty"`
	Schema            string       `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
	JsonRequestSchema string       `protobuf:"bytes,3,opt,name=json_request_schema,json=jsonRequestSchema,proto3" json:"json_request_schema,omitempty"`
	// contains filtered or unexported fields
}

func (*Verb) Descriptor deprecated

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

Deprecated: Use Verb.ProtoReflect.Descriptor instead.

func (*Verb) GetJsonRequestSchema added in v0.1.1

func (x *Verb) GetJsonRequestSchema() string

func (*Verb) GetSchema

func (x *Verb) GetSchema() string

func (*Verb) GetVerb

func (x *Verb) GetVerb() *schema.Verb

func (*Verb) ProtoMessage

func (*Verb) ProtoMessage()

func (*Verb) ProtoReflect

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

func (*Verb) Reset

func (x *Verb) Reset()

func (*Verb) String

func (x *Verb) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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