Documentation ¶
Overview ¶
Copyright 2020 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2020 The Knative Authors ¶
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
- Constants
- func ContextWithMetricTag(ctx context.Context, metric *MetricTag) context.Context
- func Main(component string, ector EnvConfigConstructor, ctor AdapterConstructor)
- func MainMessageAdapter(component string, ector EnvConfigConstructor, ctor MessageAdapterConstructor)
- func MainMessageAdapterWithContext(ctx context.Context, component string, ector EnvConfigConstructor, ...)
- func MainWithContext(ctx context.Context, component string, ector EnvConfigConstructor, ...)
- func NewCloudEventsClient(target string, ceOverrides *duckv1.CloudEventOverrides, ...) (cloudevents.Client, error)
- type Adapter
- type AdapterConstructor
- type EnvConfig
- func (e *EnvConfig) GetCloudEventOverrides() (*duckv1.CloudEventOverrides, error)
- func (e *EnvConfig) GetLeaderElectionConfig() (*kle.ComponentConfig, error)
- func (e *EnvConfig) GetLogger() *zap.SugaredLogger
- func (e *EnvConfig) GetMetricsConfig() (*metrics.ExporterOptions, error)
- func (e *EnvConfig) GetName() string
- func (e *EnvConfig) GetNamespace() string
- func (e *EnvConfig) GetSink() string
- func (e *EnvConfig) SetComponent(component string)
- func (e *EnvConfig) SetupTracing(logger *zap.SugaredLogger) error
- type EnvConfigAccessor
- type EnvConfigConstructor
- type MessageAdapter
- type MessageAdapterConstructor
- type MetricTag
Constants ¶
const ( EnvConfigComponent = "K_COMPONENT" EnvConfigNamespace = "NAMESPACE" EnvConfigName = "NAME" EnvConfigResourceGroup = "K_RESOURCE_GROUP" EnvConfigSink = "K_SINK" EnvConfigCEOverrides = "K_CE_OVERRIDES" EnvConfigMetricsConfig = "K_METRICS_CONFIG" EnvConfigLoggingConfig = "K_LOGGING_CONFIG" EnvConfigTracingConfig = "K_TRACING_CONFIG" EnvConfigLeaderElectionConfig = "K_LEADER_ELECTION_CONFIG" )
Variables ¶
This section is empty.
Functions ¶
func ContextWithMetricTag ¶
ContextWithMetricTag returns a copy of parent context in which the value associated with metric key is the supplied metric tag.
func Main ¶
func Main(component string, ector EnvConfigConstructor, ctor AdapterConstructor)
func MainMessageAdapter ¶ added in v0.15.0
func MainMessageAdapter(component string, ector EnvConfigConstructor, ctor MessageAdapterConstructor)
func MainMessageAdapterWithContext ¶ added in v0.15.0
func MainMessageAdapterWithContext(ctx context.Context, component string, ector EnvConfigConstructor, ctor MessageAdapterConstructor)
func MainWithContext ¶
func MainWithContext(ctx context.Context, component string, ector EnvConfigConstructor, ctor AdapterConstructor)
func NewCloudEventsClient ¶
func NewCloudEventsClient(target string, ceOverrides *duckv1.CloudEventOverrides, reporter source.StatsReporter) (cloudevents.Client, error)
NewCloudEventsClient returns a client that will apply the ceOverrides to outbound events and report outbound event counts.
Types ¶
type AdapterConstructor ¶
type AdapterConstructor func(ctx context.Context, env EnvConfigAccessor, client cloudevents.Client) Adapter
type EnvConfig ¶
type EnvConfig struct { // Component is the kind of this adapter. Component string `envconfig:"K_COMPONENT"` // Environment variable containing the namespace of the adapter. Namespace string `envconfig:"NAMESPACE" required:"true"` // Environment variable containing the name of the adapter. Name string `envconfig:"NAME" default:"adapter"` // Environment variable containing the resource group of the adapter for metrics. ResourceGroup string `envconfig:"K_RESOURCE_GROUP" default:"adapter.sources.knative.dev"` // Sink is the URI messages will be sent. Sink string `envconfig:"K_SINK"` // CEOverrides are the CloudEvents overrides to be applied to the outbound event. CEOverrides string `envconfig:"K_CE_OVERRIDES"` // MetricsConfigJson is a json string of metrics.ExporterOptions. // This is used to configure the metrics exporter options, // the config is stored in a config map inside the controllers // namespace and copied here. MetricsConfigJson string `envconfig:"K_METRICS_CONFIG" required:"true"` // LoggingConfigJson is a json string of logging.Config. // This is used to configure the logging config, the config is stored in // a config map inside the controllers namespace and copied here. LoggingConfigJson string `envconfig:"K_LOGGING_CONFIG" required:"true"` // TracingConfigJson is a json string of tracing.Config. // This is used to configure the tracing config, the config is stored in // a config map inside the controllers namespace and copied here. // Default is no-op. TracingConfigJson string `envconfig:"K_TRACING_CONFIG"` // LeaderElectionConfigJson is the leader election component configuration. LeaderElectionConfigJson string `envconfig:"K_LEADER_ELECTION_CONFIG"` }
EnvConfig is the minimal set of configuration parameters source adapters should support.
func (*EnvConfig) GetCloudEventOverrides ¶
func (e *EnvConfig) GetCloudEventOverrides() (*duckv1.CloudEventOverrides, error)
func (*EnvConfig) GetLeaderElectionConfig ¶ added in v0.16.0
func (e *EnvConfig) GetLeaderElectionConfig() (*kle.ComponentConfig, error)
func (*EnvConfig) GetLogger ¶
func (e *EnvConfig) GetLogger() *zap.SugaredLogger
func (*EnvConfig) GetMetricsConfig ¶
func (e *EnvConfig) GetMetricsConfig() (*metrics.ExporterOptions, error)
func (*EnvConfig) GetNamespace ¶
func (*EnvConfig) SetComponent ¶
func (*EnvConfig) SetupTracing ¶ added in v0.15.0
func (e *EnvConfig) SetupTracing(logger *zap.SugaredLogger) error
type EnvConfigAccessor ¶
type EnvConfigAccessor interface { // Set the component name. SetComponent(string) // Get the URI where messages will be forwarded to. GetSink() string // Get the namespace of the adapter. GetNamespace() string // Get the name of the adapter. GetName() string // Get the parsed metrics.ExporterOptions. GetMetricsConfig() (*metrics.ExporterOptions, error) // Get the parsed logger. GetLogger() *zap.SugaredLogger SetupTracing(*zap.SugaredLogger) error GetCloudEventOverrides() (*duckv1.CloudEventOverrides, error) // GetLeaderElectionConfig returns leader election configuration. GetLeaderElectionConfig() (*kle.ComponentConfig, error) }
EnvConfigAccessor defines accessors for the minimal set of source adapter configuration parameters.
type EnvConfigConstructor ¶
type EnvConfigConstructor func() EnvConfigAccessor
type MessageAdapter ¶ added in v0.15.0
type MessageAdapterConstructor ¶ added in v0.15.0
type MessageAdapterConstructor func(ctx context.Context, env EnvConfigAccessor, adapter *kncloudevents.HttpMessageSender, reporter source.StatsReporter) MessageAdapter
type MetricTag ¶
func MetricTagFromContext ¶
MetricTagFromContext returns the metric tag stored in context. Returns nil if no metric tag is set in context, or if the stored value is not of correct type.