Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( NamespaceTagKey = tag.MustNewKey(metricskey.LabelNamespaceName) ServiceTagKey = tag.MustNewKey(metricskey.LabelServiceName) ConfigTagKey = tag.MustNewKey(metricskey.LabelConfigurationName) RevisionTagKey = tag.MustNewKey(metricskey.LabelRevisionName) PodTagKey = tag.MustNewKey("pod_name") ContainerTagKey = tag.MustNewKey("container_name") ResponseCodeKey = tag.MustNewKey("response_code") ResponseCodeClassKey = tag.MustNewKey("response_code_class") NumTriesKey = tag.MustNewKey("num_tries") CommonRevisionKeys = []tag.Key{NamespaceTagKey, ServiceTagKey, ConfigTagKey, RevisionTagKey} )
Create the tag keys that will be used to add tags to our measurements. Tag keys must conform to the restrictions described in go.opencensus.io/tag/validate.go. Currently those restrictions are: - length between 1 and 255 inclusive - characters are printable US-ASCII
Functions ¶
This section is empty.
Types ¶
type ObservabilityConfig ¶ added in v0.6.0
type ObservabilityConfig struct { // EnableVarLogCollection specifies whether the logs under /var/log/ should be available // for collection on the host node by the fluentd daemon set. EnableVarLogCollection bool // LoggingURLTemplate is a string containing the logging url template where // the variable REVISION_UID will be replaced with the created revision's UID. LoggingURLTemplate string // RequestLogTemplate is the go template to use to shape the request logs. RequestLogTemplate string // EnableProbeRequestLog enables queue-proxy to write health check probe request logs. EnableProbeRequestLog bool // RequestMetricsBackend specifies the request metrics destination, e.g. Prometheus, // Stackdriver. RequestMetricsBackend string // EnableProfiling indicates whether it is allowed to retrieve runtime profiling data from // the pods via an HTTP server in the format expected by the pprof visualization tool. EnableProfiling bool }
ObservabilityConfig contains the configuration defined in the observability ConfigMap.
func NewObservabilityConfigFromConfigMap ¶ added in v0.6.0
func NewObservabilityConfigFromConfigMap(configMap *corev1.ConfigMap) (*ObservabilityConfig, error)
NewObservabilityConfigFromConfigMap creates a ObservabilityConfig from the supplied ConfigMap
func (*ObservabilityConfig) DeepCopy ¶ added in v0.6.0
func (in *ObservabilityConfig) DeepCopy() *ObservabilityConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObservabilityConfig.
func (*ObservabilityConfig) DeepCopyInto ¶ added in v0.6.0
func (in *ObservabilityConfig) DeepCopyInto(out *ObservabilityConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.