master
yaml 106 lines 2.56 KB
Raw
1 version: v1
2 context_namespace: ping
3 groups:
4 - family: latency
5 metrics:
6 - min_rtt
7 - max_rtt
8 - avg_rtt
9 - std_dev_rtt
10 - rtt_variance
11 - mean_jitter
12 - ewma_jitter
13 - sma_jitter
14 charts:
15 - id: host_rtt
16 title: Ping round-trip time
17 context: host_rtt
18 units: milliseconds
19 type: area
20 instances:
21 by_labels: [host]
22 dimensions:
23 - selector: min_rtt
24 name: min
25 options:
26 divisor: 1000
27 - selector: max_rtt
28 name: max
29 options:
30 divisor: 1000
31 - selector: avg_rtt
32 name: avg
33 options:
34 divisor: 1000
35 - id: host_std_dev_rtt
36 title: Ping round-trip time standard deviation
37 context: host_std_dev_rtt
38 units: milliseconds
39 instances:
40 by_labels: [host]
41 dimensions:
42 - selector: std_dev_rtt
43 name: std_dev
44 options:
45 divisor: 1000
46 - id: host_jitter
47 title: Ping latency jitter
48 context: host_jitter
49 units: milliseconds
50 instances:
51 by_labels: [host]
52 dimensions:
53 - selector: mean_jitter
54 name: mean
55 options:
56 divisor: 1000
57 - selector: ewma_jitter
58 name: ewma
59 options:
60 divisor: 1000
61 - selector: sma_jitter
62 name: sma
63 options:
64 divisor: 1000
65 - id: host_rtt_variance
66 title: Ping round-trip time variance
67 context: host_rtt_variance
68 units: ms²
69 instances:
70 by_labels: [host]
71 dimensions:
72 - selector: rtt_variance
73 name: variance
74 options:
75 divisor: 1000000
76 - family: packet loss
77 metrics:
78 - packet_loss
79 charts:
80 - id: host_packet_loss
81 title: Ping packet loss
82 context: host_packet_loss
83 units: percentage
84 instances:
85 by_labels: [host]
86 dimensions:
87 - selector: packet_loss
88 name: loss
89 options:
90 divisor: 1000
91 - family: packets
92 metrics:
93 - packets_recv
94 - packets_sent
95 charts:
96 - id: host_packets
97 title: Ping packets transferred
98 context: host_packets
99 units: packets
100 instances:
101 by_labels: [host]
102 dimensions:
103 - selector: packets_recv
104 name: received
105 - selector: packets_sent
106 name: sent