forked from kentik/sla_dashboard_webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
57 lines (52 loc) · 1.88 KB
/
config.yaml
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
# ID of the test to display the data matrix for. Assigned by Kentik
test_id: 3541
# minimal time period between test results cache updates
data_update_period_seconds: 60
# time window to fetch the test results for
data_update_lookback_seconds: 3600
# timeout for fetching synthetics tests results
# numbers are specifying (connection, read) timeouts in seconds. Defaults are 30 secs for both
timeout: [10.0, 10.0]
# sets the logging level ppossible values are: [CRITICAL, ERROR, WARNING, INFO, DEBUG]
logging_level: INFO
# metric thresholds
thresholds:
latency: # thresholds in milliseconds
defaults:
warning: 200.0 # latency low threshold; if above, then display connection as warning
error: 400.0 # latency high threshold; if above, then display connection as error
overrides:
- from: 10 # agent_id. Assigned by Kentik
to: 11 # agent_id. Assigned by Kentik
warning: 10.0
error: 20.0
- from: 60
to: 70
warning: 1000.0
error: 2000.0
jitter: # thresholds in milliseconds
defaults:
warning: 0.3 # jitter low threshold; if above, then display connection as warning
error: 0.9 # jitter high threshold; if above, then display connection as error
overrides:
- from: 10 # agent_id. Assigned by Kentik
to: 11 # agent_id. Assigned by Kentik
warning: 0.01
error: 0.02
- from: 60
to: 70
warning: 0.03
error: 0.07
packet_loss: # thresholds in percents (0-100)
defaults:
warning: 5 # packet_loss low threshold; if above, then display connection as warning
error: 20 # packet_loss high threshold; if above, then display connection as error
overrides:
- from: 10 # agent_id. Assigned by Kentik
to: 11 # agent_id. Assigned by Kentik
warning: 10
error: 40
- from: 60
to: 70
warning: 3
error: 8