Documentation ¶
Index ¶
- func GetFlagSet(errorHandling pflag.ErrorHandling) *pflag.FlagSet
- func GetLogger() logr.Logger
- func LoadFromCLI(target *Config, flagSet *pflag.FlagSet) error
- func LoadFromFile(cfg *Config, configFile string) error
- type Capability
- type Config
- func (c *Config) CreateClient() opampclient.OpAMPClient
- func (c *Config) GetAgentScheme() string
- func (c *Config) GetAgentType() string
- func (c *Config) GetAgentVersion() string
- func (c *Config) GetCapabilities() protobufs.AgentCapabilities
- func (c *Config) GetComponentsAllowed() map[string]map[string]bool
- func (c *Config) GetDescription() *protobufs.AgentDescription
- func (c *Config) GetKubernetesClient() (client.Client, error)
- func (c *Config) GetNewInstanceId() uuid.UUID
- func (c *Config) RemoteConfigEnabled() bool
- type Headers
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetFlagSet ¶
func GetFlagSet(errorHandling pflag.ErrorHandling) *pflag.FlagSet
func LoadFromFile ¶
Types ¶
type Capability ¶
type Capability string
const ( Unspecified Capability = "Unspecified" ReportsStatus Capability = "ReportsStatus" AcceptsRemoteConfig Capability = "AcceptsRemoteConfig" ReportsEffectiveConfig Capability = "ReportsEffectiveConfig" AcceptsPackages Capability = "AcceptsPackages" ReportsPackageStatuses Capability = "ReportsPackageStatuses" ReportsOwnTraces Capability = "ReportsOwnTraces" ReportsOwnMetrics Capability = "ReportsOwnMetrics" ReportsOwnLogs Capability = "ReportsOwnLogs" AcceptsOpAMPConnectionSettings Capability = "AcceptsOpAMPConnectionSettings" AcceptsOtherConnectionSettings Capability = "AcceptsOtherConnectionSettings" AcceptsRestartCommand Capability = "AcceptsRestartCommand" ReportsHealth Capability = "ReportsHealth" ReportsRemoteConfig Capability = "ReportsRemoteConfig" )
type Config ¶
type Config struct { // KubeConfigFilePath is empty if InClusterConfig() should be used, otherwise it's a path to where a valid // kubernetes configuration file. KubeConfigFilePath string `yaml:"kubeConfigFilePath,omitempty"` ListenAddr string `yaml:"listenAddr,omitempty"` ClusterConfig *rest.Config `yaml:"-"` RootLogger logr.Logger `yaml:"-"` // ComponentsAllowed is a list of allowed OpenTelemetry components for each pipeline type (receiver, processor, etc.) ComponentsAllowed map[string][]string `yaml:"componentsAllowed,omitempty"` Endpoint string `yaml:"endpoint"` Headers Headers `yaml:"headers,omitempty"` Capabilities map[Capability]bool `yaml:"capabilities"` HeartbeatInterval time.Duration `yaml:"heartbeatInterval,omitempty"` Name string `yaml:"name,omitempty"` }
func (*Config) CreateClient ¶
func (c *Config) CreateClient() opampclient.OpAMPClient
func (*Config) GetAgentScheme ¶
func (*Config) GetAgentType ¶
func (*Config) GetAgentVersion ¶
func (*Config) GetCapabilities ¶
func (c *Config) GetCapabilities() protobufs.AgentCapabilities
func (*Config) GetComponentsAllowed ¶
func (*Config) GetDescription ¶
func (c *Config) GetDescription() *protobufs.AgentDescription
func (*Config) GetNewInstanceId ¶
func (*Config) RemoteConfigEnabled ¶
Click to show internal directories.
Click to hide internal directories.