v1

package
v0.0.0-...-2f63041 Latest Latest
Warning

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

Go to latest
Published: Aug 22, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Unit_name = map[int32]string{
		0:  "UNIT_UNSPECIFIED",
		1:  "UNIT_BYTES",
		2:  "UNIT_MESSAGES",
		3:  "UNIT_MESSAGES_PER_SECOND",
		4:  "UNIT_BYTES_PER_SECOND",
		5:  "UNIT_SECONDS",
		6:  "UNIT_MILLISECONDS",
		7:  "UNIT_X_PER_SECOND",
		8:  "UNIT_PERCENT",
		9:  "UNIT_MICROSECONDS",
		10: "UNIT_MESSAGES_PER_MINUTE",
		11: "UNIT_X_PER_MINUTE",
		12: "UNIT_MEGABYTES",
	}
	Unit_value = map[string]int32{
		"UNIT_UNSPECIFIED":         0,
		"UNIT_BYTES":               1,
		"UNIT_MESSAGES":            2,
		"UNIT_MESSAGES_PER_SECOND": 3,
		"UNIT_BYTES_PER_SECOND":    4,
		"UNIT_SECONDS":             5,
		"UNIT_MILLISECONDS":        6,
		"UNIT_X_PER_SECOND":        7,
		"UNIT_PERCENT":             8,
		"UNIT_MICROSECONDS":        9,
		"UNIT_MESSAGES_PER_MINUTE": 10,
		"UNIT_X_PER_MINUTE":        11,
		"UNIT_MEGABYTES":           12,
	}
)

Enum value maps for Unit.

View Source
var File_com_coralogixapis_apm_widgets_v1_coordinate_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_donut_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_float_result_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_gauge_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_line_chart_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_map_chart_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_map_point_value_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_multi_stat_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_row_wrapper_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_stat_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_topk_multi_value_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_topk_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_units_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_widgets_v1_widget_group_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Coordinate

type Coordinate struct {
	Lat  *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=lat,proto3" json:"lat,omitempty"`
	Long *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=long,proto3" json:"long,omitempty"`
	// contains filtered or unexported fields
}

func (*Coordinate) Descriptor deprecated

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

Deprecated: Use Coordinate.ProtoReflect.Descriptor instead.

func (*Coordinate) GetLat

func (x *Coordinate) GetLat() *wrapperspb.StringValue

func (*Coordinate) GetLong

func (x *Coordinate) GetLong() *wrapperspb.StringValue

func (*Coordinate) ProtoMessage

func (*Coordinate) ProtoMessage()

func (*Coordinate) ProtoReflect

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

func (*Coordinate) Reset

func (x *Coordinate) Reset()

func (*Coordinate) String

func (x *Coordinate) String() string

type Donut

type Donut struct {
	Group       *WidgetGroup            `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	DisplayName *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Results     []*FloatResult          `protobuf:"bytes,3,rep,name=results,proto3" json:"results,omitempty"`
	Total       *FloatResult            `protobuf:"bytes,4,opt,name=total,proto3" json:"total,omitempty"`
	// contains filtered or unexported fields
}

This message is for a Donut chart widget It has the following properties: display_name - The User Facing Name query - The promql/metricsql query ran results - A map of floating point resutls total - The total of the result group

func (*Donut) Descriptor deprecated

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

Deprecated: Use Donut.ProtoReflect.Descriptor instead.

func (*Donut) GetDisplayName

func (x *Donut) GetDisplayName() *wrapperspb.StringValue

func (*Donut) GetGroup

func (x *Donut) GetGroup() *WidgetGroup

func (*Donut) GetResults

func (x *Donut) GetResults() []*FloatResult

func (*Donut) GetTotal

func (x *Donut) GetTotal() *FloatResult

func (*Donut) ProtoMessage

func (*Donut) ProtoMessage()

func (*Donut) ProtoReflect

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

func (*Donut) Reset

func (x *Donut) Reset()

func (*Donut) String

func (x *Donut) String() string

type FloatResult

type FloatResult struct {
	Value       *wrapperspb.FloatValue             `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	Name        *wrapperspb.StringValue            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // This is the key name
	DisplayName *wrapperspb.StringValue            `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Unit        *wrapperspb.StringValue            `protobuf:"bytes,4,opt,name=unit,proto3" json:"unit,omitempty"` // The unit of measurement
	Query       *wrapperspb.StringValue            `protobuf:"bytes,5,opt,name=query,proto3" json:"query,omitempty"`
	Metric      map[string]*wrapperspb.StringValue `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

A wrapper for a floating point result

func (*FloatResult) Descriptor deprecated

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

Deprecated: Use FloatResult.ProtoReflect.Descriptor instead.

func (*FloatResult) GetDisplayName

func (x *FloatResult) GetDisplayName() *wrapperspb.StringValue

func (*FloatResult) GetMetric

func (x *FloatResult) GetMetric() map[string]*wrapperspb.StringValue

func (*FloatResult) GetName

func (x *FloatResult) GetName() *wrapperspb.StringValue

func (*FloatResult) GetQuery

func (x *FloatResult) GetQuery() *wrapperspb.StringValue

func (*FloatResult) GetUnit

func (x *FloatResult) GetUnit() *wrapperspb.StringValue

func (*FloatResult) GetValue

func (x *FloatResult) GetValue() *wrapperspb.FloatValue

func (*FloatResult) ProtoMessage

func (*FloatResult) ProtoMessage()

func (*FloatResult) ProtoReflect

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

func (*FloatResult) Reset

func (x *FloatResult) Reset()

func (*FloatResult) String

func (x *FloatResult) String() string

type Gauge

type Gauge struct {
	DisplayName *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Query       *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
	Results     []*FloatResult          `protobuf:"bytes,3,rep,name=results,proto3" json:"results,omitempty"`
	Total       *FloatResult            `protobuf:"bytes,4,opt,name=total,proto3" json:"total,omitempty"`
	Header      *FloatResult            `protobuf:"bytes,5,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*Gauge) Descriptor deprecated

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

Deprecated: Use Gauge.ProtoReflect.Descriptor instead.

func (*Gauge) GetDisplayName

func (x *Gauge) GetDisplayName() *wrapperspb.StringValue

func (*Gauge) GetHeader

func (x *Gauge) GetHeader() *FloatResult

func (*Gauge) GetQuery

func (x *Gauge) GetQuery() *wrapperspb.StringValue

func (*Gauge) GetResults

func (x *Gauge) GetResults() []*FloatResult

func (*Gauge) GetTotal

func (x *Gauge) GetTotal() *FloatResult

func (*Gauge) ProtoMessage

func (*Gauge) ProtoMessage()

func (*Gauge) ProtoReflect

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

func (*Gauge) Reset

func (x *Gauge) Reset()

func (*Gauge) String

func (x *Gauge) String() string

type LineChart

type LineChart struct {
	DisplayName *wrapperspb.StringValue            `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Name        *wrapperspb.StringValue            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Query       *wrapperspb.StringValue            `protobuf:"bytes,3,opt,name=query,proto3" json:"query,omitempty"`
	Points      []*structpb.ListValue              `protobuf:"bytes,4,rep,name=points,proto3" json:"points,omitempty"`
	ToolTip     *wrapperspb.StringValue            `protobuf:"bytes,5,opt,name=tool_tip,json=toolTip,proto3" json:"tool_tip,omitempty"`
	Unit        Unit                               `protobuf:"varint,6,opt,name=unit,proto3,enum=com.coralogixapis.apm.widgets.v1.Unit" json:"unit,omitempty"`
	Metric      map[string]*wrapperspb.StringValue `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*LineChart) Descriptor deprecated

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

Deprecated: Use LineChart.ProtoReflect.Descriptor instead.

func (*LineChart) GetDisplayName

func (x *LineChart) GetDisplayName() *wrapperspb.StringValue

func (*LineChart) GetMetric

func (x *LineChart) GetMetric() map[string]*wrapperspb.StringValue

func (*LineChart) GetName

func (x *LineChart) GetName() *wrapperspb.StringValue

func (*LineChart) GetPoints

func (x *LineChart) GetPoints() []*structpb.ListValue

func (*LineChart) GetQuery

func (x *LineChart) GetQuery() *wrapperspb.StringValue

func (*LineChart) GetToolTip

func (x *LineChart) GetToolTip() *wrapperspb.StringValue

func (*LineChart) GetUnit

func (x *LineChart) GetUnit() Unit

func (*LineChart) ProtoMessage

func (*LineChart) ProtoMessage()

func (*LineChart) ProtoReflect

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

func (*LineChart) Reset

func (x *LineChart) Reset()

func (*LineChart) String

func (x *LineChart) String() string

type MapChart

type MapChart struct {
	DisplayName *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Name        *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Query       *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=query,proto3" json:"query,omitempty"`
	// Deprecated: Marked as deprecated in com/coralogixapis/apm/widgets/v1/map_chart.proto.
	Results   []*FloatResult   `protobuf:"bytes,4,rep,name=results,proto3" json:"results,omitempty"`
	MapPoints []*MapPointValue `protobuf:"bytes,5,rep,name=map_points,json=mapPoints,proto3" json:"map_points,omitempty"`
	// contains filtered or unexported fields
}

func (*MapChart) Descriptor deprecated

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

Deprecated: Use MapChart.ProtoReflect.Descriptor instead.

func (*MapChart) GetDisplayName

func (x *MapChart) GetDisplayName() *wrapperspb.StringValue

func (*MapChart) GetMapPoints

func (x *MapChart) GetMapPoints() []*MapPointValue

func (*MapChart) GetName

func (x *MapChart) GetName() *wrapperspb.StringValue

func (*MapChart) GetQuery

func (x *MapChart) GetQuery() *wrapperspb.StringValue

func (*MapChart) GetResults deprecated

func (x *MapChart) GetResults() []*FloatResult

Deprecated: Marked as deprecated in com/coralogixapis/apm/widgets/v1/map_chart.proto.

func (*MapChart) ProtoMessage

func (*MapChart) ProtoMessage()

func (*MapChart) ProtoReflect

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

func (*MapChart) Reset

func (x *MapChart) Reset()

func (*MapChart) String

func (x *MapChart) String() string

type MapPointValue

type MapPointValue struct {
	Value       *wrapperspb.FloatValue  `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	Coordinate  *Coordinate             `protobuf:"bytes,2,opt,name=coordinate,proto3" json:"coordinate,omitempty"`
	Name        *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` // This is the key name
	DisplayName *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Unit        *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=unit,proto3" json:"unit,omitempty"` // The unit of measurement
	// contains filtered or unexported fields
}

A wrapper for a map point result

func (*MapPointValue) Descriptor deprecated

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

Deprecated: Use MapPointValue.ProtoReflect.Descriptor instead.

func (*MapPointValue) GetCoordinate

func (x *MapPointValue) GetCoordinate() *Coordinate

func (*MapPointValue) GetDisplayName

func (x *MapPointValue) GetDisplayName() *wrapperspb.StringValue

func (*MapPointValue) GetName

func (x *MapPointValue) GetName() *wrapperspb.StringValue

func (*MapPointValue) GetUnit

func (x *MapPointValue) GetUnit() *wrapperspb.StringValue

func (*MapPointValue) GetValue

func (x *MapPointValue) GetValue() *wrapperspb.FloatValue

func (*MapPointValue) ProtoMessage

func (*MapPointValue) ProtoMessage()

func (*MapPointValue) ProtoReflect

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

func (*MapPointValue) Reset

func (x *MapPointValue) Reset()

func (*MapPointValue) String

func (x *MapPointValue) String() string

type MultiStat

type MultiStat struct {
	DisplayName *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Name        *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	ToolTip     *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=tool_tip,json=toolTip,proto3" json:"tool_tip,omitempty"`
	Stats       []*Stat                 `protobuf:"bytes,4,rep,name=stats,proto3" json:"stats,omitempty"`
	// contains filtered or unexported fields
}

func (*MultiStat) Descriptor deprecated

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

Deprecated: Use MultiStat.ProtoReflect.Descriptor instead.

func (*MultiStat) GetDisplayName

func (x *MultiStat) GetDisplayName() *wrapperspb.StringValue

func (*MultiStat) GetName

func (x *MultiStat) GetName() *wrapperspb.StringValue

func (*MultiStat) GetStats

func (x *MultiStat) GetStats() []*Stat

func (*MultiStat) GetToolTip

func (x *MultiStat) GetToolTip() *wrapperspb.StringValue

func (*MultiStat) ProtoMessage

func (*MultiStat) ProtoMessage()

func (*MultiStat) ProtoReflect

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

func (*MultiStat) Reset

func (x *MultiStat) Reset()

func (*MultiStat) String

func (x *MultiStat) String() string

type RowWrapper

type RowWrapper struct {
	Results map[string]*FloatResult `` /* 155-byte string literal not displayed */
	Name    *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*RowWrapper) Descriptor deprecated

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

Deprecated: Use RowWrapper.ProtoReflect.Descriptor instead.

func (*RowWrapper) GetName

func (x *RowWrapper) GetName() *wrapperspb.StringValue

func (*RowWrapper) GetResults

func (x *RowWrapper) GetResults() map[string]*FloatResult

func (*RowWrapper) ProtoMessage

func (*RowWrapper) ProtoMessage()

func (*RowWrapper) ProtoReflect

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

func (*RowWrapper) Reset

func (x *RowWrapper) Reset()

func (*RowWrapper) String

func (x *RowWrapper) String() string

type Stat

type Stat struct {
	DisplayName *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Name        *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Query       *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=query,proto3" json:"query,omitempty"`
	Value       *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	ToolTip     *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=tool_tip,json=toolTip,proto3" json:"tool_tip,omitempty"`
	Color       *wrapperspb.StringValue `protobuf:"bytes,6,opt,name=color,proto3" json:"color,omitempty"`
	Unit        Unit                    `protobuf:"varint,7,opt,name=unit,proto3,enum=com.coralogixapis.apm.widgets.v1.Unit" json:"unit,omitempty"`
	// contains filtered or unexported fields
}

func (*Stat) Descriptor deprecated

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

Deprecated: Use Stat.ProtoReflect.Descriptor instead.

func (*Stat) GetColor

func (x *Stat) GetColor() *wrapperspb.StringValue

func (*Stat) GetDisplayName

func (x *Stat) GetDisplayName() *wrapperspb.StringValue

func (*Stat) GetName

func (x *Stat) GetName() *wrapperspb.StringValue

func (*Stat) GetQuery

func (x *Stat) GetQuery() *wrapperspb.StringValue

func (*Stat) GetToolTip

func (x *Stat) GetToolTip() *wrapperspb.StringValue

func (*Stat) GetUnit

func (x *Stat) GetUnit() Unit

func (*Stat) GetValue

func (x *Stat) GetValue() *wrapperspb.StringValue

func (*Stat) ProtoMessage

func (*Stat) ProtoMessage()

func (*Stat) ProtoReflect

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

func (*Stat) Reset

func (x *Stat) Reset()

func (*Stat) String

func (x *Stat) String() string

type Topk

type Topk struct {
	Group       *WidgetGroup            `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	DisplayName *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Results     []*FloatResult          `protobuf:"bytes,3,rep,name=results,proto3" json:"results,omitempty"`
	Query       *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=query,proto3" json:"query,omitempty"`
	ToolTip     *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=tool_tip,json=toolTip,proto3" json:"tool_tip,omitempty"`
	Unit        Unit                    `protobuf:"varint,6,opt,name=unit,proto3,enum=com.coralogixapis.apm.widgets.v1.Unit" json:"unit,omitempty"`
	// contains filtered or unexported fields
}

func (*Topk) Descriptor deprecated

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

Deprecated: Use Topk.ProtoReflect.Descriptor instead.

func (*Topk) GetDisplayName

func (x *Topk) GetDisplayName() *wrapperspb.StringValue

func (*Topk) GetGroup

func (x *Topk) GetGroup() *WidgetGroup

func (*Topk) GetQuery

func (x *Topk) GetQuery() *wrapperspb.StringValue

func (*Topk) GetResults

func (x *Topk) GetResults() []*FloatResult

func (*Topk) GetToolTip

func (x *Topk) GetToolTip() *wrapperspb.StringValue

func (*Topk) GetUnit

func (x *Topk) GetUnit() Unit

func (*Topk) ProtoMessage

func (*Topk) ProtoMessage()

func (*Topk) ProtoReflect

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

func (*Topk) Reset

func (x *Topk) Reset()

func (*Topk) String

func (x *Topk) String() string

type TopkMultiValue

type TopkMultiValue struct {
	Group       *WidgetGroup                       `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	Name        *wrapperspb.StringValue            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	DisplayName *wrapperspb.StringValue            `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Rows        []*RowWrapper                      `protobuf:"bytes,4,rep,name=rows,proto3" json:"rows,omitempty"`
	Query       map[string]*wrapperspb.StringValue `` /* 151-byte string literal not displayed */
	ToolTip     *wrapperspb.StringValue            `protobuf:"bytes,6,opt,name=tool_tip,json=toolTip,proto3" json:"tool_tip,omitempty"`
	// contains filtered or unexported fields
}

func (*TopkMultiValue) Descriptor deprecated

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

Deprecated: Use TopkMultiValue.ProtoReflect.Descriptor instead.

func (*TopkMultiValue) GetDisplayName

func (x *TopkMultiValue) GetDisplayName() *wrapperspb.StringValue

func (*TopkMultiValue) GetGroup

func (x *TopkMultiValue) GetGroup() *WidgetGroup

func (*TopkMultiValue) GetName

func (x *TopkMultiValue) GetName() *wrapperspb.StringValue

func (*TopkMultiValue) GetQuery

func (x *TopkMultiValue) GetQuery() map[string]*wrapperspb.StringValue

func (*TopkMultiValue) GetRows

func (x *TopkMultiValue) GetRows() []*RowWrapper

func (*TopkMultiValue) GetToolTip

func (x *TopkMultiValue) GetToolTip() *wrapperspb.StringValue

func (*TopkMultiValue) ProtoMessage

func (*TopkMultiValue) ProtoMessage()

func (*TopkMultiValue) ProtoReflect

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

func (*TopkMultiValue) Reset

func (x *TopkMultiValue) Reset()

func (*TopkMultiValue) String

func (x *TopkMultiValue) String() string

type Unit

type Unit int32
const (
	Unit_UNIT_UNSPECIFIED         Unit = 0
	Unit_UNIT_BYTES               Unit = 1
	Unit_UNIT_MESSAGES            Unit = 2
	Unit_UNIT_MESSAGES_PER_SECOND Unit = 3
	Unit_UNIT_BYTES_PER_SECOND    Unit = 4
	Unit_UNIT_SECONDS             Unit = 5
	Unit_UNIT_MILLISECONDS        Unit = 6
	Unit_UNIT_X_PER_SECOND        Unit = 7
	Unit_UNIT_PERCENT             Unit = 8
	Unit_UNIT_MICROSECONDS        Unit = 9
	Unit_UNIT_MESSAGES_PER_MINUTE Unit = 10
	Unit_UNIT_X_PER_MINUTE        Unit = 11
	Unit_UNIT_MEGABYTES           Unit = 12
)

func (Unit) Descriptor

func (Unit) Descriptor() protoreflect.EnumDescriptor

func (Unit) Enum

func (x Unit) Enum() *Unit

func (Unit) EnumDescriptor deprecated

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

Deprecated: Use Unit.Descriptor instead.

func (Unit) Number

func (x Unit) Number() protoreflect.EnumNumber

func (Unit) String

func (x Unit) String() string

func (Unit) Type

func (Unit) Type() protoreflect.EnumType

type WidgetGroup

type WidgetGroup struct {
	Name        *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	DisplayName *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// contains filtered or unexported fields
}

func (*WidgetGroup) Descriptor deprecated

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

Deprecated: Use WidgetGroup.ProtoReflect.Descriptor instead.

func (*WidgetGroup) GetDisplayName

func (x *WidgetGroup) GetDisplayName() *wrapperspb.StringValue

func (*WidgetGroup) GetName

func (x *WidgetGroup) GetName() *wrapperspb.StringValue

func (*WidgetGroup) ProtoMessage

func (*WidgetGroup) ProtoMessage()

func (*WidgetGroup) ProtoReflect

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

func (*WidgetGroup) Reset

func (x *WidgetGroup) Reset()

func (*WidgetGroup) String

func (x *WidgetGroup) String() string

Jump to

Keyboard shortcuts

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