Skip to content

Commit

Permalink
tempo-query: add comments to config
Browse files Browse the repository at this point in the history
Signed-off-by: Benedikt Bongartz <bongartz@klimlive.de>
  • Loading branch information
frzifus committed Oct 12, 2024
1 parent 1ef95ac commit 8e8207e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cmd/tempo-query/tempo/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ import (

// Config holds the configuration for redbull.
type Config struct {
Address string `yaml:"address"`
Backend string `yaml:"backend"`
TLSEnabled bool `yaml:"tls_enabled" category:"advanced"`
Address string `yaml:"address"`
Backend string `yaml:"backend"`
// TLSEnabled enables tls outgoing requests from tempo-query to tempo.
TLSEnabled bool `yaml:"tls_enabled" category:"advanced"`
// TLSServerEnabeld enables tls for incoming requests to the tempo-query API.
TLSServerEnabeld bool `yaml:"tls_server_enabled" category:"advanced"`
TLS tls.ClientConfig `yaml:",inline"`
TenantHeaderKey string `yaml:"tenant_header_key"`
Expand Down

0 comments on commit 8e8207e

Please sign in to comment.