config

package
v1.1.0-alpha.2 Latest Latest
Warning

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

Go to latest
Published: Mar 18, 2025 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	Commons *shared.Commons `yaml:"-"` // don't use this directly as configuration for a service

	Service Service `yaml:"-"`

	Tracing *Tracing `yaml:"tracing"`
	Log     *Log     `yaml:"log"`
	Debug   Debug    `yaml:"debug"`

	Store          Store          `yaml:"store"`
	Postprocessing Postprocessing `yaml:"postprocessing"`

	Context context.Context `yaml:"-"`
}

Config combines all available configuration parts.

type Debug

type Debug struct {
	Addr   string `` /* 179-byte string literal not displayed */
	Token  string `yaml:"token" env:"POSTPROCESSING_DEBUG_TOKEN" desc:"Token to secure the metrics endpoint." introductionVersion:"1.0.0"`
	Pprof  bool   `` /* 128-byte string literal not displayed */
	Zpages bool   `` /* 161-byte string literal not displayed */
}

Debug defines the available debug configuration.

type Events

type Events struct {
	Endpoint string `` /* 252-byte string literal not displayed */
	Cluster  string `` /* 294-byte string literal not displayed */

	TLSInsecure          bool   `` /* 210-byte string literal not displayed */
	TLSRootCACertificate string `` /* 292-byte string literal not displayed */
	EnableTLS            bool   `` /* 264-byte string literal not displayed */
	AuthUsername         string `` /* 269-byte string literal not displayed */
	AuthPassword         string `` /* 269-byte string literal not displayed */
}

Events combines the configuration options for the event bus.

type Log

type Log struct {
	Level  string `` /* 193-byte string literal not displayed */
	Pretty bool   `` /* 131-byte string literal not displayed */
	Color  bool   `` /* 131-byte string literal not displayed */
	File   string `` /* 161-byte string literal not displayed */
}

Log defines the available log configuration.

type Postprocessing

type Postprocessing struct {
	Events  Events `yaml:"events"`
	Workers int    `` /* 155-byte string literal not displayed */

	Steps           []string      `` /* 359-byte string literal not displayed */
	Delayprocessing time.Duration `` /* 532-byte string literal not displayed */

	RetryBackoffDuration time.Duration `` /* 265-byte string literal not displayed */
	MaxRetries           int           `` /* 150-byte string literal not displayed */
}

Postprocessing defines the config options for the postprocessing service.

type Service

type Service struct {
	Name string `yaml:"-"`
}

Service defines the available service configuration.

type Store

type Store struct {
	Store        string        `` /* 227-byte string literal not displayed */
	Nodes        []string      `` /* 369-byte string literal not displayed */
	Database     string        `` /* 137-byte string literal not displayed */
	Table        string        `yaml:"table" env:"POSTPROCESSING_STORE_TABLE" desc:"The database table the store should use." introductionVersion:"1.0.0"`
	TTL          time.Duration `` /* 203-byte string literal not displayed */
	AuthUsername string        `` /* 227-byte string literal not displayed */
	AuthPassword string        `` /* 227-byte string literal not displayed */
}

Store configures the store to use

type Tracing

type Tracing struct {
	Enabled   bool   `yaml:"enabled" env:"OC_TRACING_ENABLED;POSTPROCESSING_TRACING_ENABLED" desc:"Activates tracing." introductionVersion:"1.0.0"`
	Type      string `` /* 217-byte string literal not displayed */
	Endpoint  string `` /* 143-byte string literal not displayed */
	Collector string `` /* 263-byte string literal not displayed */
}

Tracing defines the available tracing configuration.

func (Tracing) Convert

func (t Tracing) Convert() tracing.Config

Convert Tracing to the tracing package's Config struct.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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