blob: 3d1e30aee83dc9678078461312a572597f6716e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/env python3
import subprocess
import jinja2
PDNS_CMD='/usr/bin/rec_control'
OUT_TMPL_SRC = """
DNS forwarding statistics:
Cache entries: {{ cache_entries -}}
Cache size: {{ cache_size }} kbytes
"""
if __name__ == '__main__':
data = {}
data['cache_entries'] = subprocess.check_output([PDNS_CMD, 'get cache-entries']).decode()
data['cache_size'] = "{0:.2f}".format( int(subprocess.check_output([PDNS_CMD, 'get cache-bytes']).decode()) / 1024 )
tmpl = jinja2.Template(OUT_TMPL_SRC)
print(tmpl.render(data))
|