Documentation ¶
Index ¶
Constants ¶
View Source
const ( // TracerTypeNone indicates a No-op tracer TracerTypeNone = TracerType(iota) // TracerTypeStdout indicates the stdout tracing TracerTypeStdout // TracerTypeJaeger indicates Jaeger tracing TracerTypeJaeger // TracerTypeZipkin indicates Zipkin tracing TracerTypeZipkin )
Variables ¶
View Source
var Names = map[string]TracerType{ "none": TracerTypeNone, "stdout": TracerTypeStdout, "jaeger": TracerTypeJaeger, "zipkin": TracerTypeZipkin, }
Names is a map of cache types keyed by name
View Source
var Values = make(map[TracerType]string)
Values is a map of cache types keyed by internal id
Functions ¶
This section is empty.
Types ¶
type TracerType ¶
type TracerType int
TracerType enumerates the methodologies for maintaining time series cache data
func (TracerType) String ¶
func (t TracerType) String() string
Click to show internal directories.
Click to hide internal directories.