-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathjaeger-collector-badger.yaml
More file actions
104 lines (104 loc) · 3.96 KB
/
jaeger-collector-badger.yaml
File metadata and controls
104 lines (104 loc) · 3.96 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: jaeger-collector
synopsis: |
Jaeger collector receives and processes traces from Jaeger agents and clients
description: |
Jaeger collector receives traces from Jaeger agents and runs them through a processing pipeline.
options:
- name: admin-http-port
default_value: "14269"
usage: |
The http port for the admin server, including health check, /metrics, etc.
- name: badger.consistency
default_value: "false"
usage: |
If all writes should be synced immediately. This will greatly reduce write performance.
- name: badger.directory-key
default_value: /go/bin/data/keys
usage: |
Path to store the keys (indexes), this directory should reside in SSD disk. Set ephemeral to false if you want to define this setting.
- name: badger.directory-value
default_value: /go/bin/data/values
usage: |
Path to store the values (spans). Set ephemeral to false if you want to define this setting.
- name: badger.ephemeral
default_value: "true"
usage: Mark this storage ephemeral, data is stored in tmpfs.
- name: badger.maintenance-interval
default_value: 5m0s
usage: |
How often the maintenance thread for values is ran. Format is time.Duration (https://golang.org/pkg/time/#Duration)
- name: badger.span-store-ttl
default_value: 72h0m0s
usage: |
How long to store the data. Format is time.Duration (https://golang.org/pkg/time/#Duration)
- name: collector.grpc-port
default_value: "14250"
usage: The gRPC port for the collector service
- name: collector.grpc.tls
default_value: "false"
usage: Enable TLS
- name: collector.grpc.tls.cert
usage: Path to TLS certificate file
- name: collector.grpc.tls.key
usage: Path to TLS key file
- name: collector.http-port
default_value: "14268"
usage: The HTTP port for the collector service
- name: collector.num-workers
default_value: "50"
usage: The number of workers pulling items from the queue
- name: collector.port
default_value: "14267"
usage: The TChannel port for the collector service
- name: collector.queue-size
default_value: "2000"
usage: The queue size of the collector
- name: collector.zipkin.allowed-headers
default_value: content-type
usage: |
Allowed headers for the Zipkin collector service, default content-type
- name: collector.zipkin.allowed-origins
default_value: '*'
usage: |
Allowed origins for the Zipkin collector service, default accepts all
- name: collector.zipkin.http-port
default_value: "0"
usage: The HTTP port for the Zipkin collector service e.g. 9411
- name: config-file
usage: |
Configuration file in JSON, TOML, YAML, HCL, or Java properties formats (default none). See spf13/viper for precedence.
- name: downsampling.hashsalt
usage: Salt used when hashing trace id for downsampling.
- name: downsampling.ratio
default_value: "1"
usage: |
Ratio of spans passed to storage after downsampling (between 0 and 1), e.g ratio = 0.3 means we are keeping 30% of spans and dropping 70% of spans; ratio = 1.0 disables downsampling.
- name: health-check-http-port
default_value: "0"
usage: (deprecated) see --admin-http-port
- name: help
shorthand: h
default_value: "false"
usage: help for jaeger-collector
- name: log-level
default_value: info
usage: |
Minimal allowed log Level. For more levels see https://github.com/uber-go/zap
- name: metrics-backend
default_value: prometheus
usage: |
Defines which metrics backend to use for metrics reporting: expvar, prometheus, none
- name: metrics-http-route
default_value: /metrics
usage: |
Defines the route of HTTP endpoint for metrics backends that support scraping
- name: sampling.strategies-file
usage: |
The path for the sampling strategies file in JSON format. See sampling documentation to see format of the file
- name: span-storage.type
usage: |
(deprecated) please use SPAN_STORAGE_TYPE environment variable. Run this binary with "env" command for help.
see_also:
- docs - Generates documentation
- env - Help about environment variables.
- version - Print the version.