artifactsv1

package
v0.18.14 Latest Latest
Warning

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

Go to latest
Published: Nov 23, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	MetricKind_name = map[int32]string{
		0:  "METRIC_KIND_UNSPECIFIED",
		1:  "METRIC_KIND_FEATURE_REQUEST_COUNT",
		2:  "METRIC_KIND_FEATURE_LATENCY",
		3:  "METRIC_KIND_FEATURE_STALENESS",
		4:  "METRIC_KIND_FEATURE_VALUE",
		5:  "METRIC_KIND_FEATURE_WRITE",
		6:  "METRIC_KIND_FEATURE_NULL_RATIO",
		7:  "METRIC_KIND_RESOLVER_REQUEST_COUNT",
		8:  "METRIC_KIND_RESOLVER_LATENCY",
		9:  "METRIC_KIND_RESOLVER_SUCCESS_RATIO",
		10: "METRIC_KIND_QUERY_COUNT",
		11: "METRIC_KIND_QUERY_LATENCY",
		12: "METRIC_KIND_QUERY_SUCCESS_RATIO",
		13: "METRIC_KIND_BILLING_INFERENCE",
		14: "METRIC_KIND_BILLING_CRON",
		15: "METRIC_KIND_BILLING_MIGRATION",
		16: "METRIC_KIND_CRON_COUNT",
		17: "METRIC_KIND_CRON_LATENCY",
		18: "METRIC_KIND_STREAM_MESSAGES_PROCESSED",
		19: "METRIC_KIND_STREAM_MESSAGE_LATENCY",
		20: "METRIC_KIND_STREAM_WINDOWS_PROCESSED",
		21: "METRIC_KIND_STREAM_WINDOW_LATENCY",
	}
	MetricKind_value = map[string]int32{
		"METRIC_KIND_UNSPECIFIED":               0,
		"METRIC_KIND_FEATURE_REQUEST_COUNT":     1,
		"METRIC_KIND_FEATURE_LATENCY":           2,
		"METRIC_KIND_FEATURE_STALENESS":         3,
		"METRIC_KIND_FEATURE_VALUE":             4,
		"METRIC_KIND_FEATURE_WRITE":             5,
		"METRIC_KIND_FEATURE_NULL_RATIO":        6,
		"METRIC_KIND_RESOLVER_REQUEST_COUNT":    7,
		"METRIC_KIND_RESOLVER_LATENCY":          8,
		"METRIC_KIND_RESOLVER_SUCCESS_RATIO":    9,
		"METRIC_KIND_QUERY_COUNT":               10,
		"METRIC_KIND_QUERY_LATENCY":             11,
		"METRIC_KIND_QUERY_SUCCESS_RATIO":       12,
		"METRIC_KIND_BILLING_INFERENCE":         13,
		"METRIC_KIND_BILLING_CRON":              14,
		"METRIC_KIND_BILLING_MIGRATION":         15,
		"METRIC_KIND_CRON_COUNT":                16,
		"METRIC_KIND_CRON_LATENCY":              17,
		"METRIC_KIND_STREAM_MESSAGES_PROCESSED": 18,
		"METRIC_KIND_STREAM_MESSAGE_LATENCY":    19,
		"METRIC_KIND_STREAM_WINDOWS_PROCESSED":  20,
		"METRIC_KIND_STREAM_WINDOW_LATENCY":     21,
	}
)

Enum value maps for MetricKind.

View Source
var (
	FilterKind_name = map[int32]string{
		0:  "FILTER_KIND_UNSPECIFIED",
		1:  "FILTER_KIND_FEATURE_STATUS",
		2:  "FILTER_KIND_FEATURE_NAME",
		3:  "FILTER_KIND_FEATURE_TAG",
		4:  "FILTER_KIND_RESOLVER_STATUS",
		5:  "FILTER_KIND_RESOLVER_NAME",
		6:  "FILTER_KIND_RESOLVER_TAG",
		7:  "FILTER_KIND_CRON_STATUS",
		8:  "FILTER_KIND_MIGRATION_STATUS",
		9:  "FILTER_KIND_ONLINE_OFFLINE",
		10: "FILTER_KIND_CACHE_HIT",
		11: "FILTER_KIND_OPERATION_ID",
		12: "FILTER_KIND_QUERY_NAME",
		13: "FILTER_KIND_QUERY_STATUS",
		14: "FILTER_KIND_IS_NULL",
		15: "FILTER_KIND_USAGE_KIND",
	}
	FilterKind_value = map[string]int32{
		"FILTER_KIND_UNSPECIFIED":      0,
		"FILTER_KIND_FEATURE_STATUS":   1,
		"FILTER_KIND_FEATURE_NAME":     2,
		"FILTER_KIND_FEATURE_TAG":      3,
		"FILTER_KIND_RESOLVER_STATUS":  4,
		"FILTER_KIND_RESOLVER_NAME":    5,
		"FILTER_KIND_RESOLVER_TAG":     6,
		"FILTER_KIND_CRON_STATUS":      7,
		"FILTER_KIND_MIGRATION_STATUS": 8,
		"FILTER_KIND_ONLINE_OFFLINE":   9,
		"FILTER_KIND_CACHE_HIT":        10,
		"FILTER_KIND_OPERATION_ID":     11,
		"FILTER_KIND_QUERY_NAME":       12,
		"FILTER_KIND_QUERY_STATUS":     13,
		"FILTER_KIND_IS_NULL":          14,
		"FILTER_KIND_USAGE_KIND":       15,
	}
)

Enum value maps for FilterKind.

View Source
var (
	ComparatorKind_name = map[int32]string{
		0: "COMPARATOR_KIND_UNSPECIFIED",
		1: "COMPARATOR_KIND_EQ",
		2: "COMPARATOR_KIND_NEQ",
		3: "COMPARATOR_KIND_ONE_OF",
	}
	ComparatorKind_value = map[string]int32{
		"COMPARATOR_KIND_UNSPECIFIED": 0,
		"COMPARATOR_KIND_EQ":          1,
		"COMPARATOR_KIND_NEQ":         2,
		"COMPARATOR_KIND_ONE_OF":      3,
	}
)

Enum value maps for ComparatorKind.

View Source
var (
	WindowFunctionKind_name = map[int32]string{
		0:  "WINDOW_FUNCTION_KIND_UNSPECIFIED",
		1:  "WINDOW_FUNCTION_KIND_COUNT",
		2:  "WINDOW_FUNCTION_KIND_MEAN",
		3:  "WINDOW_FUNCTION_KIND_SUM",
		4:  "WINDOW_FUNCTION_KIND_MIN",
		5:  "WINDOW_FUNCTION_KIND_MAX",
		6:  "WINDOW_FUNCTION_KIND_PERCENTILE_99",
		7:  "WINDOW_FUNCTION_KIND_PERCENTILE_95",
		8:  "WINDOW_FUNCTION_KIND_PERCENTILE_75",
		9:  "WINDOW_FUNCTION_KIND_PERCENTILE_50",
		10: "WINDOW_FUNCTION_KIND_PERCENTILE_25",
		11: "WINDOW_FUNCTION_KIND_PERCENTILE_5",
		12: "WINDOW_FUNCTION_KIND_ALL_PERCENTILES",
	}
	WindowFunctionKind_value = map[string]int32{
		"WINDOW_FUNCTION_KIND_UNSPECIFIED":     0,
		"WINDOW_FUNCTION_KIND_COUNT":           1,
		"WINDOW_FUNCTION_KIND_MEAN":            2,
		"WINDOW_FUNCTION_KIND_SUM":             3,
		"WINDOW_FUNCTION_KIND_MIN":             4,
		"WINDOW_FUNCTION_KIND_MAX":             5,
		"WINDOW_FUNCTION_KIND_PERCENTILE_99":   6,
		"WINDOW_FUNCTION_KIND_PERCENTILE_95":   7,
		"WINDOW_FUNCTION_KIND_PERCENTILE_75":   8,
		"WINDOW_FUNCTION_KIND_PERCENTILE_50":   9,
		"WINDOW_FUNCTION_KIND_PERCENTILE_25":   10,
		"WINDOW_FUNCTION_KIND_PERCENTILE_5":    11,
		"WINDOW_FUNCTION_KIND_ALL_PERCENTILES": 12,
	}
)

Enum value maps for WindowFunctionKind.

View Source
var (
	GroupByKind_name = map[int32]string{
		0:  "GROUP_BY_KIND_UNSPECIFIED",
		1:  "GROUP_BY_KIND_FEATURE_STATUS",
		2:  "GROUP_BY_KIND_FEATURE_NAME",
		3:  "GROUP_BY_KIND_IS_NULL",
		4:  "GROUP_BY_KIND_RESOLVER_STATUS",
		5:  "GROUP_BY_KIND_RESOLVER_NAME",
		6:  "GROUP_BY_KIND_QUERY_STATUS",
		7:  "GROUP_BY_KIND_QUERY_NAME",
		8:  "GROUP_BY_KIND_ONLINE_OFFLINE",
		9:  "GROUP_BY_KIND_CACHE_HIT",
		10: "GROUP_BY_KIND_USAGE_KIND",
	}
	GroupByKind_value = map[string]int32{
		"GROUP_BY_KIND_UNSPECIFIED":     0,
		"GROUP_BY_KIND_FEATURE_STATUS":  1,
		"GROUP_BY_KIND_FEATURE_NAME":    2,
		"GROUP_BY_KIND_IS_NULL":         3,
		"GROUP_BY_KIND_RESOLVER_STATUS": 4,
		"GROUP_BY_KIND_RESOLVER_NAME":   5,
		"GROUP_BY_KIND_QUERY_STATUS":    6,
		"GROUP_BY_KIND_QUERY_NAME":      7,
		"GROUP_BY_KIND_ONLINE_OFFLINE":  8,
		"GROUP_BY_KIND_CACHE_HIT":       9,
		"GROUP_BY_KIND_USAGE_KIND":      10,
	}
)

Enum value maps for GroupByKind.

View Source
var (
	MetricFormulaKind_name = map[int32]string{
		0: "METRIC_FORMULA_KIND_UNSPECIFIED",
		1: "METRIC_FORMULA_KIND_SUM",
		2: "METRIC_FORMULA_KIND_TOTAL_RATIO",
		3: "METRIC_FORMULA_KIND_RATIO",
		4: "METRIC_FORMULA_KIND_PRODUCT",
		5: "METRIC_FORMULA_KIND_ABS",
		6: "METRIC_FORMULA_KIND_KS_STAT",
		7: "METRIC_FORMULA_KIND_KS_TEST",
		8: "METRIC_FORMULA_KIND_KS_THRESHOLD",
		9: "METRIC_FORMULA_KIND_TIME_OFFSET",
	}
	MetricFormulaKind_value = map[string]int32{
		"METRIC_FORMULA_KIND_UNSPECIFIED":  0,
		"METRIC_FORMULA_KIND_SUM":          1,
		"METRIC_FORMULA_KIND_TOTAL_RATIO":  2,
		"METRIC_FORMULA_KIND_RATIO":        3,
		"METRIC_FORMULA_KIND_PRODUCT":      4,
		"METRIC_FORMULA_KIND_ABS":          5,
		"METRIC_FORMULA_KIND_KS_STAT":      6,
		"METRIC_FORMULA_KIND_KS_TEST":      7,
		"METRIC_FORMULA_KIND_KS_THRESHOLD": 8,
		"METRIC_FORMULA_KIND_TIME_OFFSET":  9,
	}
)

Enum value maps for MetricFormulaKind.

View Source
var (
	AlertSeverityKind_name = map[int32]string{
		0: "ALERT_SEVERITY_KIND_UNSPECIFIED",
		1: "ALERT_SEVERITY_KIND_CRITICAL",
		2: "ALERT_SEVERITY_KIND_ERROR",
		3: "ALERT_SEVERITY_KIND_WARNING",
		4: "ALERT_SEVERITY_KIND_INFO",
	}
	AlertSeverityKind_value = map[string]int32{
		"ALERT_SEVERITY_KIND_UNSPECIFIED": 0,
		"ALERT_SEVERITY_KIND_CRITICAL":    1,
		"ALERT_SEVERITY_KIND_ERROR":       2,
		"ALERT_SEVERITY_KIND_WARNING":     3,
		"ALERT_SEVERITY_KIND_INFO":        4,
	}
)

Enum value maps for AlertSeverityKind.

View Source
var (
	ThresholdKind_name = map[int32]string{
		0: "THRESHOLD_KIND_UNSPECIFIED",
		1: "THRESHOLD_KIND_ABOVE",
		2: "THRESHOLD_KIND_BELOW",
		3: "THRESHOLD_KIND_GREATER_EQUAL",
		4: "THRESHOLD_KIND_LESS_EQUAL",
		5: "THRESHOLD_KIND_EQUAL",
		6: "THRESHOLD_KIND_NOT_EQUAL",
	}
	ThresholdKind_value = map[string]int32{
		"THRESHOLD_KIND_UNSPECIFIED":   0,
		"THRESHOLD_KIND_ABOVE":         1,
		"THRESHOLD_KIND_BELOW":         2,
		"THRESHOLD_KIND_GREATER_EQUAL": 3,
		"THRESHOLD_KIND_LESS_EQUAL":    4,
		"THRESHOLD_KIND_EQUAL":         5,
		"THRESHOLD_KIND_NOT_EQUAL":     6,
	}
)

Enum value maps for ThresholdKind.

View Source
var (
	ChartLinkKind_name = map[int32]string{
		0: "CHART_LINK_KIND_UNSPECIFIED",
		1: "CHART_LINK_KIND_RESOLVER",
		2: "CHART_LINK_KIND_FEATURE",
		3: "CHART_LINK_KIND_QUERY",
		4: "CHART_LINK_KIND_MANUAL",
	}
	ChartLinkKind_value = map[string]int32{
		"CHART_LINK_KIND_UNSPECIFIED": 0,
		"CHART_LINK_KIND_RESOLVER":    1,
		"CHART_LINK_KIND_FEATURE":     2,
		"CHART_LINK_KIND_QUERY":       3,
		"CHART_LINK_KIND_MANUAL":      4,
	}
)

Enum value maps for ChartLinkKind.

View Source
var (
	ValidationLogSeverity_name = map[int32]string{
		0:  "VALIDATION_LOG_SEVERITY_UNSPECIFIED",
		4:  "VALIDATION_LOG_SEVERITY_INFO",
		8:  "VALIDATION_LOG_SEVERITY_WARNING",
		12: "VALIDATION_LOG_SEVERITY_ERROR",
	}
	ValidationLogSeverity_value = map[string]int32{
		"VALIDATION_LOG_SEVERITY_UNSPECIFIED": 0,
		"VALIDATION_LOG_SEVERITY_INFO":        4,
		"VALIDATION_LOG_SEVERITY_WARNING":     8,
		"VALIDATION_LOG_SEVERITY_ERROR":       12,
	}
)

Enum value maps for ValidationLogSeverity.

View Source
var File_chalk_artifacts_v1_cdc_proto protoreflect.FileDescriptor
View Source
var File_chalk_artifacts_v1_chart_proto protoreflect.FileDescriptor
View Source
var File_chalk_artifacts_v1_cron_query_proto protoreflect.FileDescriptor
View Source
var File_chalk_artifacts_v1_deployment_proto protoreflect.FileDescriptor
View Source
var File_chalk_artifacts_v1_export_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AlertSeverityKind

type AlertSeverityKind int32
const (
	AlertSeverityKind_ALERT_SEVERITY_KIND_UNSPECIFIED AlertSeverityKind = 0
	AlertSeverityKind_ALERT_SEVERITY_KIND_CRITICAL    AlertSeverityKind = 1
	AlertSeverityKind_ALERT_SEVERITY_KIND_ERROR       AlertSeverityKind = 2
	AlertSeverityKind_ALERT_SEVERITY_KIND_WARNING     AlertSeverityKind = 3
	AlertSeverityKind_ALERT_SEVERITY_KIND_INFO        AlertSeverityKind = 4
)

func (AlertSeverityKind) Descriptor

func (AlertSeverityKind) Enum

func (AlertSeverityKind) EnumDescriptor deprecated

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

Deprecated: Use AlertSeverityKind.Descriptor instead.

func (AlertSeverityKind) Number

func (AlertSeverityKind) String

func (x AlertSeverityKind) String() string

func (AlertSeverityKind) Type

type AlertTrigger

type AlertTrigger struct {
	Name              string            `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Severity          AlertSeverityKind `protobuf:"varint,2,opt,name=severity,proto3,enum=chalk.artifacts.v1.AlertSeverityKind" json:"severity,omitempty"`
	ThresholdPosition ThresholdKind     `` /* 151-byte string literal not displayed */
	ThresholdValue    float32           `protobuf:"fixed32,4,opt,name=threshold_value,json=thresholdValue,proto3" json:"threshold_value,omitempty"`
	SeriesName        *string           `protobuf:"bytes,5,opt,name=series_name,json=seriesName,proto3,oneof" json:"series_name,omitempty"`
	ChannelName       *string           `protobuf:"bytes,6,opt,name=channel_name,json=channelName,proto3,oneof" json:"channel_name,omitempty"`
	Description       *string           `protobuf:"bytes,7,opt,name=description,proto3,oneof" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*AlertTrigger) Descriptor deprecated

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

Deprecated: Use AlertTrigger.ProtoReflect.Descriptor instead.

func (*AlertTrigger) GetChannelName

func (x *AlertTrigger) GetChannelName() string

func (*AlertTrigger) GetDescription

func (x *AlertTrigger) GetDescription() string

func (*AlertTrigger) GetName

func (x *AlertTrigger) GetName() string

func (*AlertTrigger) GetSeriesName

func (x *AlertTrigger) GetSeriesName() string

func (*AlertTrigger) GetSeverity

func (x *AlertTrigger) GetSeverity() AlertSeverityKind

func (*AlertTrigger) GetThresholdPosition

func (x *AlertTrigger) GetThresholdPosition() ThresholdKind

func (*AlertTrigger) GetThresholdValue

func (x *AlertTrigger) GetThresholdValue() float32

func (*AlertTrigger) ProtoMessage

func (*AlertTrigger) ProtoMessage()

func (*AlertTrigger) ProtoReflect

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

func (*AlertTrigger) Reset

func (x *AlertTrigger) Reset()

func (*AlertTrigger) String

func (x *AlertTrigger) String() string

type CDCSource

type CDCSource struct {
	IntegrationName string               `protobuf:"bytes,1,opt,name=integration_name,json=integrationName,proto3" json:"integration_name,omitempty"`
	Tables          []*CDCTableReference `protobuf:"bytes,2,rep,name=tables,proto3" json:"tables,omitempty"`
	// contains filtered or unexported fields
}

func (*CDCSource) Descriptor deprecated

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

Deprecated: Use CDCSource.ProtoReflect.Descriptor instead.

func (*CDCSource) GetIntegrationName

func (x *CDCSource) GetIntegrationName() string

func (*CDCSource) GetTables

func (x *CDCSource) GetTables() []*CDCTableReference

func (*CDCSource) ProtoMessage

func (*CDCSource) ProtoMessage()

func (*CDCSource) ProtoReflect

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

func (*CDCSource) Reset

func (x *CDCSource) Reset()

func (*CDCSource) String

func (x *CDCSource) String() string

type CDCTableReference

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

func (*CDCTableReference) Descriptor deprecated

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

Deprecated: Use CDCTableReference.ProtoReflect.Descriptor instead.

func (*CDCTableReference) GetName

func (x *CDCTableReference) GetName() string

func (*CDCTableReference) GetSchema

func (x *CDCTableReference) GetSchema() string

func (*CDCTableReference) ProtoMessage

func (*CDCTableReference) ProtoMessage()

func (*CDCTableReference) ProtoReflect

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

func (*CDCTableReference) Reset

func (x *CDCTableReference) Reset()

func (*CDCTableReference) String

func (x *CDCTableReference) String() string

type ChalkpyInfo

type ChalkpyInfo struct {
	Version string  `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	Python  *string `protobuf:"bytes,2,opt,name=python,proto3,oneof" json:"python,omitempty"`
	// contains filtered or unexported fields
}

func (*ChalkpyInfo) Descriptor deprecated

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

Deprecated: Use ChalkpyInfo.ProtoReflect.Descriptor instead.

func (*ChalkpyInfo) GetPython

func (x *ChalkpyInfo) GetPython() string

func (*ChalkpyInfo) GetVersion

func (x *ChalkpyInfo) GetVersion() string

func (*ChalkpyInfo) ProtoMessage

func (*ChalkpyInfo) ProtoMessage()

func (*ChalkpyInfo) ProtoReflect

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

func (*ChalkpyInfo) Reset

func (x *ChalkpyInfo) Reset()

func (*ChalkpyInfo) String

func (x *ChalkpyInfo) String() string

type Chart

type Chart struct {
	Id         string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Config     *MetricConfig `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
	EntityKind ChartLinkKind `` /* 130-byte string literal not displayed */
	EntityId   *string       `protobuf:"bytes,4,opt,name=entity_id,json=entityId,proto3,oneof" json:"entity_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Chart) Descriptor deprecated

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

Deprecated: Use Chart.ProtoReflect.Descriptor instead.

func (*Chart) GetConfig

func (x *Chart) GetConfig() *MetricConfig

func (*Chart) GetEntityId

func (x *Chart) GetEntityId() string

func (*Chart) GetEntityKind

func (x *Chart) GetEntityKind() ChartLinkKind

func (*Chart) GetId

func (x *Chart) GetId() string

func (*Chart) ProtoMessage

func (*Chart) ProtoMessage()

func (*Chart) ProtoReflect

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

func (*Chart) Reset

func (x *Chart) Reset()

func (*Chart) String

func (x *Chart) String() string

type ChartLinkKind

type ChartLinkKind int32
const (
	ChartLinkKind_CHART_LINK_KIND_UNSPECIFIED ChartLinkKind = 0
	ChartLinkKind_CHART_LINK_KIND_RESOLVER    ChartLinkKind = 1
	ChartLinkKind_CHART_LINK_KIND_FEATURE     ChartLinkKind = 2
	ChartLinkKind_CHART_LINK_KIND_QUERY       ChartLinkKind = 3
	ChartLinkKind_CHART_LINK_KIND_MANUAL      ChartLinkKind = 4
)

func (ChartLinkKind) Descriptor

func (ChartLinkKind) Enum

func (x ChartLinkKind) Enum() *ChartLinkKind

func (ChartLinkKind) EnumDescriptor deprecated

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

Deprecated: Use ChartLinkKind.Descriptor instead.

func (ChartLinkKind) Number

func (ChartLinkKind) String

func (x ChartLinkKind) String() string

func (ChartLinkKind) Type

type ComparatorKind

type ComparatorKind int32
const (
	ComparatorKind_COMPARATOR_KIND_UNSPECIFIED ComparatorKind = 0
	ComparatorKind_COMPARATOR_KIND_EQ          ComparatorKind = 1
	ComparatorKind_COMPARATOR_KIND_NEQ         ComparatorKind = 2
	ComparatorKind_COMPARATOR_KIND_ONE_OF      ComparatorKind = 3
)

func (ComparatorKind) Descriptor

func (ComparatorKind) Enum

func (x ComparatorKind) Enum() *ComparatorKind

func (ComparatorKind) EnumDescriptor deprecated

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

Deprecated: Use ComparatorKind.Descriptor instead.

func (ComparatorKind) Number

func (ComparatorKind) String

func (x ComparatorKind) String() string

func (ComparatorKind) Type

type CronQuery

type CronQuery struct {
	Name                 string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Cron                 string                 `protobuf:"bytes,2,opt,name=cron,proto3" json:"cron,omitempty"`
	FileName             string                 `protobuf:"bytes,3,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"`
	Output               []string               `protobuf:"bytes,4,rep,name=output,proto3" json:"output,omitempty"`
	MaxSamples           *int64                 `protobuf:"varint,5,opt,name=max_samples,json=maxSamples,proto3,oneof" json:"max_samples,omitempty"`
	Recompute            *RecomputeSettings     `protobuf:"bytes,6,opt,name=recompute,proto3" json:"recompute,omitempty"`
	LowerBound           *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=lower_bound,json=lowerBound,proto3" json:"lower_bound,omitempty"`
	UpperBound           *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=upper_bound,json=upperBound,proto3" json:"upper_bound,omitempty"`
	Tags                 []string               `protobuf:"bytes,9,rep,name=tags,proto3" json:"tags,omitempty"`
	RequiredResolverTags []string               `protobuf:"bytes,10,rep,name=required_resolver_tags,json=requiredResolverTags,proto3" json:"required_resolver_tags,omitempty"`
	StoreOnline          bool                   `protobuf:"varint,11,opt,name=store_online,json=storeOnline,proto3" json:"store_online,omitempty"`
	StoreOffline         bool                   `protobuf:"varint,12,opt,name=store_offline,json=storeOffline,proto3" json:"store_offline,omitempty"`
	IncrementalSources   []string               `protobuf:"bytes,13,rep,name=incremental_sources,json=incrementalSources,proto3" json:"incremental_sources,omitempty"`
	// contains filtered or unexported fields
}

func (*CronQuery) Descriptor deprecated

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

Deprecated: Use CronQuery.ProtoReflect.Descriptor instead.

func (*CronQuery) GetCron

func (x *CronQuery) GetCron() string

func (*CronQuery) GetFileName

func (x *CronQuery) GetFileName() string

func (*CronQuery) GetIncrementalSources added in v0.4.14

func (x *CronQuery) GetIncrementalSources() []string

func (*CronQuery) GetLowerBound

func (x *CronQuery) GetLowerBound() *timestamppb.Timestamp

func (*CronQuery) GetMaxSamples

func (x *CronQuery) GetMaxSamples() int64

func (*CronQuery) GetName

func (x *CronQuery) GetName() string

func (*CronQuery) GetOutput

func (x *CronQuery) GetOutput() []string

func (*CronQuery) GetRecompute

func (x *CronQuery) GetRecompute() *RecomputeSettings

func (*CronQuery) GetRequiredResolverTags

func (x *CronQuery) GetRequiredResolverTags() []string

func (*CronQuery) GetStoreOffline

func (x *CronQuery) GetStoreOffline() bool

func (*CronQuery) GetStoreOnline

func (x *CronQuery) GetStoreOnline() bool

func (*CronQuery) GetTags

func (x *CronQuery) GetTags() []string

func (*CronQuery) GetUpperBound

func (x *CronQuery) GetUpperBound() *timestamppb.Timestamp

func (*CronQuery) ProtoMessage

func (*CronQuery) ProtoMessage()

func (*CronQuery) ProtoReflect

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

func (*CronQuery) Reset

func (x *CronQuery) Reset()

func (*CronQuery) String

func (x *CronQuery) String() string

type DatasetFeatureOperand

type DatasetFeatureOperand struct {
	Dataset string `protobuf:"bytes,1,opt,name=dataset,proto3" json:"dataset,omitempty"`
	Feature string `protobuf:"bytes,2,opt,name=feature,proto3" json:"feature,omitempty"`
	// contains filtered or unexported fields
}

func (*DatasetFeatureOperand) Descriptor deprecated

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

Deprecated: Use DatasetFeatureOperand.ProtoReflect.Descriptor instead.

func (*DatasetFeatureOperand) GetDataset

func (x *DatasetFeatureOperand) GetDataset() string

func (*DatasetFeatureOperand) GetFeature

func (x *DatasetFeatureOperand) GetFeature() string

func (*DatasetFeatureOperand) ProtoMessage

func (*DatasetFeatureOperand) ProtoMessage()

func (*DatasetFeatureOperand) ProtoReflect

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

func (*DatasetFeatureOperand) Reset

func (x *DatasetFeatureOperand) Reset()

func (*DatasetFeatureOperand) String

func (x *DatasetFeatureOperand) String() string

type DeploymentArtifacts

type DeploymentArtifacts struct {
	Graph      *v1.Graph        `protobuf:"bytes,1,opt,name=graph,proto3" json:"graph,omitempty"`
	Crons      []*CronQuery     `protobuf:"bytes,2,rep,name=crons,proto3" json:"crons,omitempty"`
	Charts     []*Chart         `protobuf:"bytes,3,rep,name=charts,proto3" json:"charts,omitempty"`
	CdcSources []*CDCSource     `protobuf:"bytes,4,rep,name=cdc_sources,json=cdcSources,proto3" json:"cdc_sources,omitempty"`
	Config     *ProjectSettings `protobuf:"bytes,5,opt,name=config,proto3" json:"config,omitempty"`
	Chalkpy    *ChalkpyInfo     `protobuf:"bytes,6,opt,name=chalkpy,proto3" json:"chalkpy,omitempty"`
	// contains filtered or unexported fields
}

func (*DeploymentArtifacts) Descriptor deprecated

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

Deprecated: Use DeploymentArtifacts.ProtoReflect.Descriptor instead.

func (*DeploymentArtifacts) GetCdcSources

func (x *DeploymentArtifacts) GetCdcSources() []*CDCSource

func (*DeploymentArtifacts) GetChalkpy

func (x *DeploymentArtifacts) GetChalkpy() *ChalkpyInfo

func (*DeploymentArtifacts) GetCharts

func (x *DeploymentArtifacts) GetCharts() []*Chart

func (*DeploymentArtifacts) GetConfig

func (x *DeploymentArtifacts) GetConfig() *ProjectSettings

func (*DeploymentArtifacts) GetCrons

func (x *DeploymentArtifacts) GetCrons() []*CronQuery

func (*DeploymentArtifacts) GetGraph

func (x *DeploymentArtifacts) GetGraph() *v1.Graph

func (*DeploymentArtifacts) ProtoMessage

func (*DeploymentArtifacts) ProtoMessage()

func (*DeploymentArtifacts) ProtoReflect

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

func (*DeploymentArtifacts) Reset

func (x *DeploymentArtifacts) Reset()

func (*DeploymentArtifacts) String

func (x *DeploymentArtifacts) String() string

type EnvironmentSettings

type EnvironmentSettings struct {
	Id               string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Runtime          *string  `protobuf:"bytes,2,opt,name=runtime,proto3,oneof" json:"runtime,omitempty"`
	Requirements     *string  `protobuf:"bytes,3,opt,name=requirements,proto3,oneof" json:"requirements,omitempty"`
	Dockerfile       *string  `protobuf:"bytes,4,opt,name=dockerfile,proto3,oneof" json:"dockerfile,omitempty"`
	RequiresPackages []string `protobuf:"bytes,5,rep,name=requires_packages,json=requiresPackages,proto3" json:"requires_packages,omitempty"`
	PlatformVersion  *string  `protobuf:"bytes,6,opt,name=platform_version,json=platformVersion,proto3,oneof" json:"platform_version,omitempty"`
	// contains filtered or unexported fields
}

func (*EnvironmentSettings) Descriptor deprecated

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

Deprecated: Use EnvironmentSettings.ProtoReflect.Descriptor instead.

func (*EnvironmentSettings) GetDockerfile

func (x *EnvironmentSettings) GetDockerfile() string

func (*EnvironmentSettings) GetId

func (x *EnvironmentSettings) GetId() string

func (*EnvironmentSettings) GetPlatformVersion added in v0.17.12

func (x *EnvironmentSettings) GetPlatformVersion() string

func (*EnvironmentSettings) GetRequirements

func (x *EnvironmentSettings) GetRequirements() string

func (*EnvironmentSettings) GetRequiresPackages

func (x *EnvironmentSettings) GetRequiresPackages() []string

func (*EnvironmentSettings) GetRuntime

func (x *EnvironmentSettings) GetRuntime() string

func (*EnvironmentSettings) ProtoMessage

func (*EnvironmentSettings) ProtoMessage()

func (*EnvironmentSettings) ProtoReflect

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

func (*EnvironmentSettings) Reset

func (x *EnvironmentSettings) Reset()

func (*EnvironmentSettings) String

func (x *EnvironmentSettings) String() string

type Export

type Export struct {
	Graph      *v1.Graph        `protobuf:"bytes,1,opt,name=graph,proto3" json:"graph,omitempty"`
	Crons      []*CronQuery     `protobuf:"bytes,2,rep,name=crons,proto3" json:"crons,omitempty"`
	Charts     []*Chart         `protobuf:"bytes,3,rep,name=charts,proto3" json:"charts,omitempty"`
	CdcSources []*CDCSource     `protobuf:"bytes,4,rep,name=cdc_sources,json=cdcSources,proto3" json:"cdc_sources,omitempty"`
	Config     *ProjectSettings `protobuf:"bytes,5,opt,name=config,proto3" json:"config,omitempty"`
	Chalkpy    *ChalkpyInfo     `protobuf:"bytes,6,opt,name=chalkpy,proto3" json:"chalkpy,omitempty"`
	Failed     []*FailedImport  `protobuf:"bytes,7,rep,name=failed,proto3" json:"failed,omitempty"`
	Logs       []*ValidationLog `protobuf:"bytes,8,rep,name=logs,proto3" json:"logs,omitempty"`
	Lsp        *v11.LSP         `protobuf:"bytes,9,opt,name=lsp,proto3" json:"lsp,omitempty"`
	// contains filtered or unexported fields
}

func (*Export) Descriptor deprecated

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

Deprecated: Use Export.ProtoReflect.Descriptor instead.

func (*Export) GetCdcSources

func (x *Export) GetCdcSources() []*CDCSource

func (*Export) GetChalkpy

func (x *Export) GetChalkpy() *ChalkpyInfo

func (*Export) GetCharts

func (x *Export) GetCharts() []*Chart

func (*Export) GetConfig

func (x *Export) GetConfig() *ProjectSettings

func (*Export) GetCrons

func (x *Export) GetCrons() []*CronQuery

func (*Export) GetFailed

func (x *Export) GetFailed() []*FailedImport

func (*Export) GetGraph

func (x *Export) GetGraph() *v1.Graph

func (*Export) GetLogs

func (x *Export) GetLogs() []*ValidationLog

func (*Export) GetLsp

func (x *Export) GetLsp() *v11.LSP

func (*Export) ProtoMessage

func (*Export) ProtoMessage()

func (*Export) ProtoReflect

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

func (*Export) Reset

func (x *Export) Reset()

func (*Export) String

func (x *Export) String() string

type FailedImport

type FailedImport struct {
	FileName  string `protobuf:"bytes,1,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"`
	Module    string `protobuf:"bytes,2,opt,name=module,proto3" json:"module,omitempty"`
	Traceback string `protobuf:"bytes,3,opt,name=traceback,proto3" json:"traceback,omitempty"`
	// contains filtered or unexported fields
}

func (*FailedImport) Descriptor deprecated

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

Deprecated: Use FailedImport.ProtoReflect.Descriptor instead.

func (*FailedImport) GetFileName

func (x *FailedImport) GetFileName() string

func (*FailedImport) GetModule

func (x *FailedImport) GetModule() string

func (*FailedImport) GetTraceback

func (x *FailedImport) GetTraceback() string

func (*FailedImport) ProtoMessage

func (*FailedImport) ProtoMessage()

func (*FailedImport) ProtoReflect

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

func (*FailedImport) Reset

func (x *FailedImport) Reset()

func (*FailedImport) String

func (x *FailedImport) String() string

type FeatureSettings

type FeatureSettings struct {
	Metadata []*MetadataSettings `protobuf:"bytes,1,rep,name=metadata,proto3" json:"metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*FeatureSettings) Descriptor deprecated

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

Deprecated: Use FeatureSettings.ProtoReflect.Descriptor instead.

func (*FeatureSettings) GetMetadata

func (x *FeatureSettings) GetMetadata() []*MetadataSettings

func (*FeatureSettings) ProtoMessage

func (*FeatureSettings) ProtoMessage()

func (*FeatureSettings) ProtoReflect

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

func (*FeatureSettings) Reset

func (x *FeatureSettings) Reset()

func (*FeatureSettings) String

func (x *FeatureSettings) String() string

type FilterKind

type FilterKind int32
const (
	FilterKind_FILTER_KIND_UNSPECIFIED      FilterKind = 0
	FilterKind_FILTER_KIND_FEATURE_STATUS   FilterKind = 1
	FilterKind_FILTER_KIND_FEATURE_NAME     FilterKind = 2
	FilterKind_FILTER_KIND_FEATURE_TAG      FilterKind = 3
	FilterKind_FILTER_KIND_RESOLVER_STATUS  FilterKind = 4
	FilterKind_FILTER_KIND_RESOLVER_NAME    FilterKind = 5
	FilterKind_FILTER_KIND_RESOLVER_TAG     FilterKind = 6
	FilterKind_FILTER_KIND_CRON_STATUS      FilterKind = 7
	FilterKind_FILTER_KIND_MIGRATION_STATUS FilterKind = 8
	FilterKind_FILTER_KIND_ONLINE_OFFLINE   FilterKind = 9
	FilterKind_FILTER_KIND_CACHE_HIT        FilterKind = 10
	FilterKind_FILTER_KIND_OPERATION_ID     FilterKind = 11
	FilterKind_FILTER_KIND_QUERY_NAME       FilterKind = 12
	FilterKind_FILTER_KIND_QUERY_STATUS     FilterKind = 13
	FilterKind_FILTER_KIND_IS_NULL          FilterKind = 14
	FilterKind_FILTER_KIND_USAGE_KIND       FilterKind = 15
)

func (FilterKind) Descriptor

func (FilterKind) Descriptor() protoreflect.EnumDescriptor

func (FilterKind) Enum

func (x FilterKind) Enum() *FilterKind

func (FilterKind) EnumDescriptor deprecated

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

Deprecated: Use FilterKind.Descriptor instead.

func (FilterKind) Number

func (x FilterKind) Number() protoreflect.EnumNumber

func (FilterKind) String

func (x FilterKind) String() string

func (FilterKind) Type

type GroupByKind

type GroupByKind int32
const (
	GroupByKind_GROUP_BY_KIND_UNSPECIFIED     GroupByKind = 0
	GroupByKind_GROUP_BY_KIND_FEATURE_STATUS  GroupByKind = 1
	GroupByKind_GROUP_BY_KIND_FEATURE_NAME    GroupByKind = 2
	GroupByKind_GROUP_BY_KIND_IS_NULL         GroupByKind = 3
	GroupByKind_GROUP_BY_KIND_RESOLVER_STATUS GroupByKind = 4
	GroupByKind_GROUP_BY_KIND_RESOLVER_NAME   GroupByKind = 5
	GroupByKind_GROUP_BY_KIND_QUERY_STATUS    GroupByKind = 6
	GroupByKind_GROUP_BY_KIND_QUERY_NAME      GroupByKind = 7
	GroupByKind_GROUP_BY_KIND_ONLINE_OFFLINE  GroupByKind = 8
	GroupByKind_GROUP_BY_KIND_CACHE_HIT       GroupByKind = 9
	GroupByKind_GROUP_BY_KIND_USAGE_KIND      GroupByKind = 10
)

func (GroupByKind) Descriptor

func (GroupByKind) Enum

func (x GroupByKind) Enum() *GroupByKind

func (GroupByKind) EnumDescriptor deprecated

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

Deprecated: Use GroupByKind.Descriptor instead.

func (GroupByKind) Number

func (x GroupByKind) Number() protoreflect.EnumNumber

func (GroupByKind) String

func (x GroupByKind) String() string

func (GroupByKind) Type

type MetadataSettings

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

func (*MetadataSettings) Descriptor deprecated

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

Deprecated: Use MetadataSettings.ProtoReflect.Descriptor instead.

func (*MetadataSettings) GetMissing

func (x *MetadataSettings) GetMissing() string

func (*MetadataSettings) GetName

func (x *MetadataSettings) GetName() string

func (*MetadataSettings) ProtoMessage

func (*MetadataSettings) ProtoMessage()

func (*MetadataSettings) ProtoReflect

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

func (*MetadataSettings) Reset

func (x *MetadataSettings) Reset()

func (*MetadataSettings) String

func (x *MetadataSettings) String() string

type MetricConfig

type MetricConfig struct {
	Name         string                `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	WindowPeriod string                `protobuf:"bytes,2,opt,name=window_period,json=windowPeriod,proto3" json:"window_period,omitempty"`
	Series       []*MetricConfigSeries `protobuf:"bytes,3,rep,name=series,proto3" json:"series,omitempty"`
	Formulas     []*MetricFormula      `protobuf:"bytes,4,rep,name=formulas,proto3" json:"formulas,omitempty"`
	Trigger      *AlertTrigger         `protobuf:"bytes,5,opt,name=trigger,proto3" json:"trigger,omitempty"`
	// contains filtered or unexported fields
}

func (*MetricConfig) Descriptor deprecated

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

Deprecated: Use MetricConfig.ProtoReflect.Descriptor instead.

func (*MetricConfig) GetFormulas

func (x *MetricConfig) GetFormulas() []*MetricFormula

func (*MetricConfig) GetName

func (x *MetricConfig) GetName() string

func (*MetricConfig) GetSeries

func (x *MetricConfig) GetSeries() []*MetricConfigSeries

func (*MetricConfig) GetTrigger

func (x *MetricConfig) GetTrigger() *AlertTrigger

func (*MetricConfig) GetWindowPeriod

func (x *MetricConfig) GetWindowPeriod() string

func (*MetricConfig) ProtoMessage

func (*MetricConfig) ProtoMessage()

func (*MetricConfig) ProtoReflect

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

func (*MetricConfig) Reset

func (x *MetricConfig) Reset()

func (*MetricConfig) String

func (x *MetricConfig) String() string

type MetricConfigSeries

type MetricConfigSeries struct {
	Metric         MetricKind         `protobuf:"varint,1,opt,name=metric,proto3,enum=chalk.artifacts.v1.MetricKind" json:"metric,omitempty"`
	Filters        []*MetricFilter    `protobuf:"bytes,2,rep,name=filters,proto3" json:"filters,omitempty"`
	Name           *string            `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`
	WindowFunction WindowFunctionKind `` /* 147-byte string literal not displayed */
	GroupBy        []GroupByKind      `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MetricConfigSeries) Descriptor deprecated

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

Deprecated: Use MetricConfigSeries.ProtoReflect.Descriptor instead.

func (*MetricConfigSeries) GetFilters

func (x *MetricConfigSeries) GetFilters() []*MetricFilter

func (*MetricConfigSeries) GetGroupBy

func (x *MetricConfigSeries) GetGroupBy() []GroupByKind

func (*MetricConfigSeries) GetMetric

func (x *MetricConfigSeries) GetMetric() MetricKind

func (*MetricConfigSeries) GetName

func (x *MetricConfigSeries) GetName() string

func (*MetricConfigSeries) GetWindowFunction

func (x *MetricConfigSeries) GetWindowFunction() WindowFunctionKind

func (*MetricConfigSeries) ProtoMessage

func (*MetricConfigSeries) ProtoMessage()

func (*MetricConfigSeries) ProtoReflect

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

func (*MetricConfigSeries) Reset

func (x *MetricConfigSeries) Reset()

func (*MetricConfigSeries) String

func (x *MetricConfigSeries) String() string

type MetricFilter

type MetricFilter struct {
	Kind       FilterKind     `protobuf:"varint,1,opt,name=kind,proto3,enum=chalk.artifacts.v1.FilterKind" json:"kind,omitempty"`
	Comparator ComparatorKind `protobuf:"varint,2,opt,name=comparator,proto3,enum=chalk.artifacts.v1.ComparatorKind" json:"comparator,omitempty"`
	Value      []string       `protobuf:"bytes,3,rep,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*MetricFilter) Descriptor deprecated

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

Deprecated: Use MetricFilter.ProtoReflect.Descriptor instead.

func (*MetricFilter) GetComparator

func (x *MetricFilter) GetComparator() ComparatorKind

func (*MetricFilter) GetKind

func (x *MetricFilter) GetKind() FilterKind

func (*MetricFilter) GetValue

func (x *MetricFilter) GetValue() []string

func (*MetricFilter) ProtoMessage

func (*MetricFilter) ProtoMessage()

func (*MetricFilter) ProtoReflect

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

func (*MetricFilter) Reset

func (x *MetricFilter) Reset()

func (*MetricFilter) String

func (x *MetricFilter) String() string

type MetricFormula

type MetricFormula struct {
	Kind MetricFormulaKind `protobuf:"varint,1,opt,name=kind,proto3,enum=chalk.artifacts.v1.MetricFormulaKind" json:"kind,omitempty"`
	// The following fields are mutually exclusive
	// but we're not using `oneof` because one of
	// the fields is a repeated field, which would
	// make using `oneof` really ugly.
	// ---- UNION START ----
	SingleSeriesOperands   *int64                 `` /* 130-byte string literal not displayed */
	MultiSeriesOperands    []int64                `` /* 128-byte string literal not displayed */
	DatasetFeatureOperands *DatasetFeatureOperand `` /* 129-byte string literal not displayed */
	// ---- UNION END ----
	Name *string `protobuf:"bytes,5,opt,name=name,proto3,oneof" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*MetricFormula) Descriptor deprecated

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

Deprecated: Use MetricFormula.ProtoReflect.Descriptor instead.

func (*MetricFormula) GetDatasetFeatureOperands

func (x *MetricFormula) GetDatasetFeatureOperands() *DatasetFeatureOperand

func (*MetricFormula) GetKind

func (x *MetricFormula) GetKind() MetricFormulaKind

func (*MetricFormula) GetMultiSeriesOperands

func (x *MetricFormula) GetMultiSeriesOperands() []int64

func (*MetricFormula) GetName

func (x *MetricFormula) GetName() string

func (*MetricFormula) GetSingleSeriesOperands

func (x *MetricFormula) GetSingleSeriesOperands() int64

func (*MetricFormula) ProtoMessage

func (*MetricFormula) ProtoMessage()

func (*MetricFormula) ProtoReflect

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

func (*MetricFormula) Reset

func (x *MetricFormula) Reset()

func (*MetricFormula) String

func (x *MetricFormula) String() string

type MetricFormulaKind

type MetricFormulaKind int32
const (
	MetricFormulaKind_METRIC_FORMULA_KIND_UNSPECIFIED  MetricFormulaKind = 0
	MetricFormulaKind_METRIC_FORMULA_KIND_SUM          MetricFormulaKind = 1
	MetricFormulaKind_METRIC_FORMULA_KIND_TOTAL_RATIO  MetricFormulaKind = 2
	MetricFormulaKind_METRIC_FORMULA_KIND_RATIO        MetricFormulaKind = 3
	MetricFormulaKind_METRIC_FORMULA_KIND_PRODUCT      MetricFormulaKind = 4
	MetricFormulaKind_METRIC_FORMULA_KIND_ABS          MetricFormulaKind = 5
	MetricFormulaKind_METRIC_FORMULA_KIND_KS_STAT      MetricFormulaKind = 6
	MetricFormulaKind_METRIC_FORMULA_KIND_KS_TEST      MetricFormulaKind = 7
	MetricFormulaKind_METRIC_FORMULA_KIND_KS_THRESHOLD MetricFormulaKind = 8
	MetricFormulaKind_METRIC_FORMULA_KIND_TIME_OFFSET  MetricFormulaKind = 9
)

func (MetricFormulaKind) Descriptor

func (MetricFormulaKind) Enum

func (MetricFormulaKind) EnumDescriptor deprecated

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

Deprecated: Use MetricFormulaKind.Descriptor instead.

func (MetricFormulaKind) Number

func (MetricFormulaKind) String

func (x MetricFormulaKind) String() string

func (MetricFormulaKind) Type

type MetricKind

type MetricKind int32
const (
	MetricKind_METRIC_KIND_UNSPECIFIED               MetricKind = 0
	MetricKind_METRIC_KIND_FEATURE_REQUEST_COUNT     MetricKind = 1
	MetricKind_METRIC_KIND_FEATURE_LATENCY           MetricKind = 2
	MetricKind_METRIC_KIND_FEATURE_STALENESS         MetricKind = 3
	MetricKind_METRIC_KIND_FEATURE_VALUE             MetricKind = 4
	MetricKind_METRIC_KIND_FEATURE_WRITE             MetricKind = 5
	MetricKind_METRIC_KIND_FEATURE_NULL_RATIO        MetricKind = 6
	MetricKind_METRIC_KIND_RESOLVER_REQUEST_COUNT    MetricKind = 7
	MetricKind_METRIC_KIND_RESOLVER_LATENCY          MetricKind = 8
	MetricKind_METRIC_KIND_RESOLVER_SUCCESS_RATIO    MetricKind = 9
	MetricKind_METRIC_KIND_QUERY_COUNT               MetricKind = 10
	MetricKind_METRIC_KIND_QUERY_LATENCY             MetricKind = 11
	MetricKind_METRIC_KIND_QUERY_SUCCESS_RATIO       MetricKind = 12
	MetricKind_METRIC_KIND_BILLING_INFERENCE         MetricKind = 13
	MetricKind_METRIC_KIND_BILLING_CRON              MetricKind = 14
	MetricKind_METRIC_KIND_BILLING_MIGRATION         MetricKind = 15
	MetricKind_METRIC_KIND_CRON_COUNT                MetricKind = 16
	MetricKind_METRIC_KIND_CRON_LATENCY              MetricKind = 17
	MetricKind_METRIC_KIND_STREAM_MESSAGES_PROCESSED MetricKind = 18
	MetricKind_METRIC_KIND_STREAM_MESSAGE_LATENCY    MetricKind = 19
	MetricKind_METRIC_KIND_STREAM_WINDOWS_PROCESSED  MetricKind = 20
	MetricKind_METRIC_KIND_STREAM_WINDOW_LATENCY     MetricKind = 21
)

func (MetricKind) Descriptor

func (MetricKind) Descriptor() protoreflect.EnumDescriptor

func (MetricKind) Enum

func (x MetricKind) Enum() *MetricKind

func (MetricKind) EnumDescriptor deprecated

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

Deprecated: Use MetricKind.Descriptor instead.

func (MetricKind) Number

func (x MetricKind) Number() protoreflect.EnumNumber

func (MetricKind) String

func (x MetricKind) String() string

func (MetricKind) Type

type ProjectSettings

type ProjectSettings struct {
	Project      string                 `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	Environments []*EnvironmentSettings `protobuf:"bytes,2,rep,name=environments,proto3" json:"environments,omitempty"`
	Validation   *ValidationSettings    `protobuf:"bytes,3,opt,name=validation,proto3" json:"validation,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectSettings) Descriptor deprecated

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

Deprecated: Use ProjectSettings.ProtoReflect.Descriptor instead.

func (*ProjectSettings) GetEnvironments

func (x *ProjectSettings) GetEnvironments() []*EnvironmentSettings

func (*ProjectSettings) GetProject

func (x *ProjectSettings) GetProject() string

func (*ProjectSettings) GetValidation

func (x *ProjectSettings) GetValidation() *ValidationSettings

func (*ProjectSettings) ProtoMessage

func (*ProjectSettings) ProtoMessage()

func (*ProjectSettings) ProtoReflect

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

func (*ProjectSettings) Reset

func (x *ProjectSettings) Reset()

func (*ProjectSettings) String

func (x *ProjectSettings) String() string

type RecomputeSettings

type RecomputeSettings struct {
	FeatureFqns []string `protobuf:"bytes,1,rep,name=feature_fqns,json=featureFqns,proto3" json:"feature_fqns,omitempty"`
	AllFeatures bool     `protobuf:"varint,2,opt,name=all_features,json=allFeatures,proto3" json:"all_features,omitempty"`
	// contains filtered or unexported fields
}

func (*RecomputeSettings) Descriptor deprecated

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

Deprecated: Use RecomputeSettings.ProtoReflect.Descriptor instead.

func (*RecomputeSettings) GetAllFeatures

func (x *RecomputeSettings) GetAllFeatures() bool

func (*RecomputeSettings) GetFeatureFqns

func (x *RecomputeSettings) GetFeatureFqns() []string

func (*RecomputeSettings) ProtoMessage

func (*RecomputeSettings) ProtoMessage()

func (*RecomputeSettings) ProtoReflect

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

func (*RecomputeSettings) Reset

func (x *RecomputeSettings) Reset()

func (*RecomputeSettings) String

func (x *RecomputeSettings) String() string

type ResolverSettings

type ResolverSettings struct {
	Metadata []*MetadataSettings `protobuf:"bytes,1,rep,name=metadata,proto3" json:"metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*ResolverSettings) Descriptor deprecated

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

Deprecated: Use ResolverSettings.ProtoReflect.Descriptor instead.

func (*ResolverSettings) GetMetadata

func (x *ResolverSettings) GetMetadata() []*MetadataSettings

func (*ResolverSettings) ProtoMessage

func (*ResolverSettings) ProtoMessage()

func (*ResolverSettings) ProtoReflect

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

func (*ResolverSettings) Reset

func (x *ResolverSettings) Reset()

func (*ResolverSettings) String

func (x *ResolverSettings) String() string

type ThresholdKind

type ThresholdKind int32
const (
	ThresholdKind_THRESHOLD_KIND_UNSPECIFIED   ThresholdKind = 0
	ThresholdKind_THRESHOLD_KIND_ABOVE         ThresholdKind = 1
	ThresholdKind_THRESHOLD_KIND_BELOW         ThresholdKind = 2
	ThresholdKind_THRESHOLD_KIND_GREATER_EQUAL ThresholdKind = 3
	ThresholdKind_THRESHOLD_KIND_LESS_EQUAL    ThresholdKind = 4
	ThresholdKind_THRESHOLD_KIND_EQUAL         ThresholdKind = 5
	ThresholdKind_THRESHOLD_KIND_NOT_EQUAL     ThresholdKind = 6
)

func (ThresholdKind) Descriptor

func (ThresholdKind) Enum

func (x ThresholdKind) Enum() *ThresholdKind

func (ThresholdKind) EnumDescriptor deprecated

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

Deprecated: Use ThresholdKind.Descriptor instead.

func (ThresholdKind) Number

func (ThresholdKind) String

func (x ThresholdKind) String() string

func (ThresholdKind) Type

type ValidationLog

type ValidationLog struct {
	Header    string                `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Subheader string                `protobuf:"bytes,2,opt,name=subheader,proto3" json:"subheader,omitempty"`
	Severity  ValidationLogSeverity `protobuf:"varint,3,opt,name=severity,proto3,enum=chalk.artifacts.v1.ValidationLogSeverity" json:"severity,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidationLog) Descriptor deprecated

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

Deprecated: Use ValidationLog.ProtoReflect.Descriptor instead.

func (*ValidationLog) GetHeader

func (x *ValidationLog) GetHeader() string

func (*ValidationLog) GetSeverity

func (x *ValidationLog) GetSeverity() ValidationLogSeverity

func (*ValidationLog) GetSubheader

func (x *ValidationLog) GetSubheader() string

func (*ValidationLog) ProtoMessage

func (*ValidationLog) ProtoMessage()

func (*ValidationLog) ProtoReflect

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

func (*ValidationLog) Reset

func (x *ValidationLog) Reset()

func (*ValidationLog) String

func (x *ValidationLog) String() string

type ValidationLogSeverity

type ValidationLogSeverity int32
const (
	ValidationLogSeverity_VALIDATION_LOG_SEVERITY_UNSPECIFIED ValidationLogSeverity = 0
	// Space field numbers out in case we need to add more
	// levels and have it be numerically congruent.
	ValidationLogSeverity_VALIDATION_LOG_SEVERITY_INFO    ValidationLogSeverity = 4
	ValidationLogSeverity_VALIDATION_LOG_SEVERITY_WARNING ValidationLogSeverity = 8
	ValidationLogSeverity_VALIDATION_LOG_SEVERITY_ERROR   ValidationLogSeverity = 12
)

func (ValidationLogSeverity) Descriptor

func (ValidationLogSeverity) Enum

func (ValidationLogSeverity) EnumDescriptor deprecated

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

Deprecated: Use ValidationLogSeverity.Descriptor instead.

func (ValidationLogSeverity) Number

func (ValidationLogSeverity) String

func (x ValidationLogSeverity) String() string

func (ValidationLogSeverity) Type

type ValidationSettings

type ValidationSettings struct {
	Feature  *FeatureSettings  `protobuf:"bytes,1,opt,name=feature,proto3" json:"feature,omitempty"`
	Resolver *ResolverSettings `protobuf:"bytes,2,opt,name=resolver,proto3" json:"resolver,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidationSettings) Descriptor deprecated

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

Deprecated: Use ValidationSettings.ProtoReflect.Descriptor instead.

func (*ValidationSettings) GetFeature

func (x *ValidationSettings) GetFeature() *FeatureSettings

func (*ValidationSettings) GetResolver

func (x *ValidationSettings) GetResolver() *ResolverSettings

func (*ValidationSettings) ProtoMessage

func (*ValidationSettings) ProtoMessage()

func (*ValidationSettings) ProtoReflect

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

func (*ValidationSettings) Reset

func (x *ValidationSettings) Reset()

func (*ValidationSettings) String

func (x *ValidationSettings) String() string

type WindowFunctionKind

type WindowFunctionKind int32
const (
	WindowFunctionKind_WINDOW_FUNCTION_KIND_UNSPECIFIED     WindowFunctionKind = 0
	WindowFunctionKind_WINDOW_FUNCTION_KIND_COUNT           WindowFunctionKind = 1
	WindowFunctionKind_WINDOW_FUNCTION_KIND_MEAN            WindowFunctionKind = 2
	WindowFunctionKind_WINDOW_FUNCTION_KIND_SUM             WindowFunctionKind = 3
	WindowFunctionKind_WINDOW_FUNCTION_KIND_MIN             WindowFunctionKind = 4
	WindowFunctionKind_WINDOW_FUNCTION_KIND_MAX             WindowFunctionKind = 5
	WindowFunctionKind_WINDOW_FUNCTION_KIND_PERCENTILE_99   WindowFunctionKind = 6
	WindowFunctionKind_WINDOW_FUNCTION_KIND_PERCENTILE_95   WindowFunctionKind = 7
	WindowFunctionKind_WINDOW_FUNCTION_KIND_PERCENTILE_75   WindowFunctionKind = 8
	WindowFunctionKind_WINDOW_FUNCTION_KIND_PERCENTILE_50   WindowFunctionKind = 9
	WindowFunctionKind_WINDOW_FUNCTION_KIND_PERCENTILE_25   WindowFunctionKind = 10
	WindowFunctionKind_WINDOW_FUNCTION_KIND_PERCENTILE_5    WindowFunctionKind = 11
	WindowFunctionKind_WINDOW_FUNCTION_KIND_ALL_PERCENTILES WindowFunctionKind = 12
)

func (WindowFunctionKind) Descriptor

func (WindowFunctionKind) Enum

func (WindowFunctionKind) EnumDescriptor deprecated

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

Deprecated: Use WindowFunctionKind.Descriptor instead.

func (WindowFunctionKind) Number

func (WindowFunctionKind) String

func (x WindowFunctionKind) String() string

func (WindowFunctionKind) Type

Jump to

Keyboard shortcuts

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