-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
36 lines (28 loc) · 1.36 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package groupbytraceprocessor // import "github.com/open-telemetry/opentelemetry-collector-contrib/processor/groupbytraceprocessor"
import (
"time"
)
// Config is the configuration for the processor.
type Config struct {
// NumTraces is the max number of traces to keep in memory waiting for the duration.
// Default: 1_000_000.
NumTraces int `mapstructure:"num_traces"`
// NumWorkers is a number of workers processing event queue.
// Default: 1.
NumWorkers int `mapstructure:"num_workers"`
// WaitDuration tells the processor to wait for the specified duration for the trace to be complete.
// Default: 1s.
WaitDuration time.Duration `mapstructure:"wait_duration"`
// DiscardOrphans instructs the processor to discard traces without the root span.
// This typically indicates that the trace is incomplete.
// Default: false.
// Not yet implemented, and an error will be returned when this option is used.
DiscardOrphans bool `mapstructure:"discard_orphans"`
// StoreOnDisk tells the processor to keep only the trace ID in memory, serializing the trace spans to disk.
// Useful when the duration to wait for traces to complete is high.
// Default: false.
// Not yet implemented, and an error will be returned when this option is used.
StoreOnDisk bool `mapstructure:"store_on_disk"`
}