From 334e84a7437fd38f34892af8de7cb38c092ff55c Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Wed, 26 Apr 2023 08:54:41 +0200 Subject: [PATCH] add missing struct description Signed-off-by: Christian Richter --- services/nats/pkg/config/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/services/nats/pkg/config/config.go b/services/nats/pkg/config/config.go index 1d6186596..b54b1daa8 100644 --- a/services/nats/pkg/config/config.go +++ b/services/nats/pkg/config/config.go @@ -31,6 +31,7 @@ type Nats struct { EnableTLS bool `yaml:"enable_tls" env:"OCIS_EVENTS_ENABLE_TLS;NATS_EVENTS_ENABLE_TLS" desc:"Enable TLS for the connection to the events broker. The events broker is the ocis service which receives and delivers events between the services.."` } +// Tracing is the tracing config type Tracing struct { Enabled bool `yaml:"enabled" env:"OCIS_TRACING_ENABLED;NATS_TRACING_ENABLED" desc:"Activates tracing."` Type string `yaml:"type" env:"OCIS_TRACING_TYPE;NATS_TRACING_TYPE" desc:"The type of tracing. Defaults to \"\", which is the same as \"jaeger\". Allowed tracing types are \"jaeger\" and \"\" as of now."`