forked from PagerDuty/dnsmetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.json
98 lines (98 loc) · 2.42 KB
/
dashboard.json
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
{
"title": "DNS",
"description": "DNSmetrics timeboard for DataDog by [email protected]",
"graphs": [
{
"definition": {
"viz": "timeseries",
"requests": [
{
"q": "sum:dnsmetrics.zone.qps{*} by {zone}",
"aggregator": "avg",
"conditional_formats": [],
"type": "area"
}
]
},
"title": "Cumulative QPS"
},
{
"definition": {
"viz": "timeseries",
"requests": [
{
"q": "sum:dnsmetrics.zone.qps{provider:ns1} / sum:dnsmetrics.zone.qps{*} * 100, sum:dnsmetrics.zone.qps{provider:dyn} / sum:dnsmetrics.zone.qps{*} * 100",
"aggregator": "avg",
"conditional_formats": [],
"type": "area"
}
]
},
"title": "Providers share for YourDomain.com"
},
{
"definition": {
"viz": "timeseries",
"requests": [
{
"q": "min:dnsmetrics.zone.secondary.is_ok{*} by {zone}",
"aggregator": "avg",
"conditional_formats": [],
"type": "area"
}
]
},
"title": "Secondary Zones Status (1=ok)"
},
{
"definition": {
"viz": "timeseries",
"requests": [
{
"q": "max:dnsmetrics.zone.secondary.sec_since_last_xfr{*} by {zone}",
"aggregator": "avg",
"conditional_formats": [],
"type": "line"
}
],
"markers": [
{
"type": "error dashed",
"val": "4000",
"value": "y = 4000"
}
]
},
"title": "Time Since Last Replication of Secondary Zones, sec"
},
{
"definition": {
"viz": "toplist",
"requests": [
{
"q": "top(max:dnsmetrics.zone.record_count{*} by {zone}, 10, 'mean', 'desc')",
"style": {
"palette": "dog_classic"
},
"conditional_formats": []
}
]
},
"title": "Current record counts"
},
{
"definition": {
"viz": "timeseries",
"requests": [
{
"q": "diff(max:dnsmetrics.zone.record_count{*} by {zone})",
"aggregator": "avg",
"conditional_formats": [],
"type": "line"
}
]
},
"title": "Changes in record counts by zone"
}
]
}