Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // QueryPort is the port that the query service listens in on QueryPort = flag.Int("query.port", 16686, "The port for the query service") // QueryPrefix is the prefix of the query service api QueryPrefix = flag.String("query.prefix", "api", "The prefix for the url of the query service") // QueryStaticAssets is the path for the static assets for the UI (https://github.com/uber/jaeger-ui) QueryStaticAssets = flag.String("query.static-files", "jaeger-ui-build/build/", "The path for the static assets for the UI") )
Functions ¶
This section is empty.
Types ¶
type StorageBuilder ¶
type StorageBuilder interface { NewSpanReader() (spanstore.Reader, error) NewDependencyReader() (dependencystore.Reader, error) }
StorageBuilder is the interface that provides the necessary store readers
func NewStorageBuilder ¶
func NewStorageBuilder(opts ...basicB.Option) (StorageBuilder, error)
NewStorageBuilder creates a StorageBuilder based off the flags that have been set
Click to show internal directories.
Click to hide internal directories.