adapter

package
v0.99.0 Latest Latest
Warning

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

Go to latest
Published: Jan 21, 2020 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Overview

Copyright 2019 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

This section is empty.

Variables

This section is empty.

Functions

func Main

func Main(component string, ector EnvConfigConstructor, ctor AdapterConstructor)

Types

type Adapter

type Adapter interface {
	Start(stopCh <-chan struct{}) error
}

type AdapterConstructor

type AdapterConstructor func(ctx context.Context, env EnvConfigAccessor, client cloudevents.Client, reporter source.StatsReporter) Adapter

type EnvConfig

type EnvConfig struct {
	// SinkURI is the URI messages will be forwarded to.
	SinkURI string `envconfig:"SINK_URI" required:"true"`

	// Environment variable containing the namespace of the adapter.
	Namespace string `envconfig:"NAMESPACE" required:"true"`

	// 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"`
}

EnvConfig is the minimal set of configuration parameters source adapters should support.

func (*EnvConfig) GetLoggingConfigJson

func (e *EnvConfig) GetLoggingConfigJson() string

func (*EnvConfig) GetMetricsConfigJson

func (e *EnvConfig) GetMetricsConfigJson() string

func (*EnvConfig) GetNamespace

func (e *EnvConfig) GetNamespace() string

func (*EnvConfig) GetSinkURI

func (e *EnvConfig) GetSinkURI() string

type EnvConfigAccessor

type EnvConfigAccessor interface {
	// Get the URI where messages will be forwarded to.
	GetSinkURI() string

	// Get the namespace of the adapter.
	GetNamespace() string

	// Get the json string of metrics.ExporterOptions.
	GetMetricsConfigJson() string

	// Get the json string of logging.Config.
	GetLoggingConfigJson() string
}

EnvConfigAccessor defines accessors for the minimal set of source adapter configuration parameters.

type EnvConfigConstructor

type EnvConfigConstructor func() EnvConfigAccessor

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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