-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig_example.yml
50 lines (44 loc) · 1.22 KB
/
config_example.yml
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
# The content of the this config will take precedence over command argument and
# default values
# If command argument should be used comment out the correspondent in this file
# The graph schema to use in the nodegraph provider
graph:
# --graph
name: micro
query:
# The tag to select in Tempo
# --tag
tag: service.name
# The filter regex of the value of the tag
# --filter
filter: '.*'
# Use the tag as a uniq node
# --not_use_tag_as_node
use_tag_as_node: true
# The threshold in ms to indicate a red state of the node in the Nodegraph visual plugin in Grafana
# --trace_threshold_ms
trace_threshold_ms: 40.0
search:
# The number of seconds from now where the search will start
# --search_from
from: 1200
# --search_mode, can be blocks, ingesters or all
mode: ingester
loop:
# How often will the query against Tempo be executed
# --loop_interval
interval: 60
# Connection to the Tempo
tempo:
url: https://tempo-us-central1.grafana.net/tempo/api
headers:
authorization: 'Basic XXXXXXXXXXX'
# Default is 15 sec
timeout: 15
# Connection to the nodegraph-provider
nodegraph_provider:
url: http://localhost:9393
headers:
content-type: application/json
# Default is 15 sec
timeout: 15