Documentation
¶
Overview ¶
Package featuregate provides a way to gate features in the collector based on different options, such as the feature's stability level and user-defined minimum allowed stability level. This package is used by Flow Mode only.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AllowedValues ¶
func AllowedValues() []string
Types ¶
type Stability ¶
type Stability int
Stability is used to designate the stability level of a feature or a minimum stability level the collector is allowed to operate with.
const ( // StabilityUndefined is the default value for Stability, which indicates an error and should never be used. StabilityUndefined Stability = iota // StabilityExperimental is used to designate experimental features. StabilityExperimental // StabilityBeta is used to designate beta features. StabilityBeta // StabilityStable is used to designate stable features. StabilityStable )
Click to show internal directories.
Click to hide internal directories.