diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-05-16 16:01:38 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-05-16 16:02:33 +0200 |
commit | d4c10902026b76a6372cf738fc98860b29b39759 (patch) | |
tree | c8d3958d564f876b74e80f68727bbe5f02a57aed /src/op_mode/dns_forwarding_statistics.py | |
parent | be6f809581ccbcd6411713128a63711eaa2ce6b7 (diff) | |
download | vyos-1x-d4c10902026b76a6372cf738fc98860b29b39759.tar.gz vyos-1x-d4c10902026b76a6372cf738fc98860b29b39759.zip |
T644: remove prefixing from all scripts and update environment variables with VyOS paths.
Diffstat (limited to 'src/op_mode/dns_forwarding_statistics.py')
-rwxr-xr-x | src/op_mode/dns_forwarding_statistics.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/op_mode/dns_forwarding_statistics.py b/src/op_mode/dns_forwarding_statistics.py new file mode 100755 index 000000000..3d1e30aee --- /dev/null +++ b/src/op_mode/dns_forwarding_statistics.py @@ -0,0 +1,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)) |