Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SamplerName ¶
type SamplerName int8
SamplerName specifies the name of a sampler which was responsible for a certain sampling decision.
const ( // Unknown specifies that the span was sampled // but, the tracer was unable to identify the sampler. // No sampling decision maker will be propagated. Unknown SamplerName = -1 // Default specifies that the span was sampled without any sampler. Default SamplerName = 0 // AgentRate specifies that the span was sampled // with a rate calculated by the trace agent. AgentRate SamplerName = 1 // RemoteRate specifies that the span was sampled // with a dynamically calculated remote rate. RemoteRate SamplerName = 2 // RuleRate specifies that the span was sampled by the RuleSampler. RuleRate SamplerName = 3 // Manual specifies that the span was sampled manually by user. Manual SamplerName = 4 // AppSec specifies that the span was sampled by AppSec. AppSec SamplerName = 5 // RemoteUserRate specifies that the span was sampled // with a user specified remote rate. RemoteUserRate SamplerName = 6 // SingleSpan specifies that the span was sampled by single // span sampling rules. SingleSpan SamplerName = 8 )
Click to show internal directories.
Click to hide internal directories.