-
Notifications
You must be signed in to change notification settings - Fork 351
/
Copy pathdnslatency.py
154 lines (129 loc) · 4.58 KB
/
dnslatency.py
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# Script: dnslatency.py
# Author: Matty <matty91@gmail.com>
# Date: 10-05-2016
# Purpose:
# DNS latency checking module written for Ganglia.
# Usage:
# The dnslatency script takes one or more DNS strings similar
# to the following as arguments:
#
# google-public-dns-a.google.com google.com A
#
# THe first argument is the DNS server to query, the second
# argument is the record to request and the third argument
# is the resource record type to request. The polling interval
# is controlled by the .pyconf collect_every option.
# License:
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
import sys
import socket
import dns.resolver
from datetime import datetime
from timeit import default_timer as timer
DEBUG = 0
def lookup_failure(status_code, domain, name_server, dns_answer):
"""
Routine to call if a DNS lookup fails.
"""
if DEBUG:
print "%s: Unable to resolve %s from %s at %s" % (status_code,
domain,
name_server,
str(datetime.now()))
if dns_answer:
dns_answer.response.to_text()
def resolve_name(name):
"""
Convert a name to an IP address
"""
try:
ip_addr = socket.gethostbyname(name)
except socket.herror:
print "Unable to resolve " + name + " to an IP address"
sys.exit(1)
return ip_addr
def time_name_resolution(name_server, domain, rr_type):
"""
Calculate the time it takes to resolve a domain name
"""
dns_answer = None
resolver = dns.resolver.Resolver()
resolver.nameservers = name_server
start_time = timer()
try:
dns_answer = resolver.query(domain, rr_type)
except dns.resolver.NXDOMAIN:
lookup_failure("NXDOMAIN", domain, name_server, dns_answer)
return 60
except dns.resolver.NoAnswer:
lookup_failure("NOANSWER", domain, name_server, dns_answer)
return 60
except dns.exception.Timeout:
lookup_failure("TIMEOUT", domain, name_server, dns_answer)
return 60
end_time = timer()
return end_time - start_time
def query_handler(name):
"""
Callback invoked by ganglia to ocollect metrics
"""
name_servers = []
_, dns_server_name, domain, rrec = name.split('_')
name_servers.append(resolve_name(dns_server_name))
resolution_time = time_name_resolution(name_servers, domain, rrec)
if DEBUG:
print "DNSINFO: Query handler variables:"
print " DNSINFO: DNS Server name " + dns_server_name
print " DNSINFO: DNS List ", name_servers
print " DNSINFO: DOmain: " + domain
print " DNSINFO: Record type: " + rrec
print " DNSINFO: Resolution time: ", resolution_time
return resolution_time
def metric_init(params):
"""
Initializes the Ganglia descriptor table
"""
descriptors = []
for _, values in params.items():
dns_server_name, domain, rrec = values.split()
desc = {
'name': 'dnslatency_' + dns_server_name + '_' + domain + '_' + rrec,
'call_back': query_handler,
'time_max': 60,
'value_type': 'double',
'units': 'Query Time',
'slope': 'both',
'format': '%.4f',
'description': 'DNS resolution time',
'groups': 'dns_latency'
}
descriptors.append(desc)
return descriptors
def metric_cleanup():
"""
Function used to perform cleanup when ganglia exit()'s
"""
pass
def main():
"""
Code to test the script w/o involving ganglia
"""
params = {
'googlednsa_dns_resolution': 'google-public-dns-a.google.com prefetch.net A',
'googlednsb_dns_resolution': 'google-public-dns-b.google.com google.prefetch.net A',
}
descriptors = metric_init(params)
for desc in descriptors:
latency = desc['call_back'](desc['name'])
_, dns_server, domain, _ = desc['name'].split("_")
print "It took %f to resolve %s on %s" % (latency, domain, dns_server)
if __name__ == "__main__":
main()