Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ID = component.NewID(componentType)
ID is the identifier of this extension.
Functions ¶
func NewFactory ¶
Types ¶
type Config ¶
type Config struct { queryApp.QueryOptions `mapstructure:",squash"` // Storage holds configuration related to the various data stores that are to be queried. Storage Storage `mapstructure:"storage"` }
Config represents the configuration for jaeger-query,
type Storage ¶ added in v1.62.0
type Storage struct { // TracesPrimary contains the name of the primary trace storage that is being queried. TracesPrimary string `mapstructure:"traces" valid:"required"` // TracesArchive contains the name of the archive trace storage that is being queried. TracesArchive string `mapstructure:"traces_archive" valid:"optional"` // Metrics contains the name of the metric storage that is being queried. Metrics string `mapstructure:"metrics" valid:"optional"` }
Click to show internal directories.
Click to hide internal directories.