summaryrefslogtreecommitdiff
path: root/src/op-mode/vyos-dns-forwarding-statistics.py
diff options
context:
space:
mode:
authorYuya Kusakabe <yuya.kusakabe@gmail.com>2018-05-16 21:35:22 +0900
committerYuya Kusakabe <yuya.kusakabe@gmail.com>2018-05-16 21:35:22 +0900
commitbe6f809581ccbcd6411713128a63711eaa2ce6b7 (patch)
treec62377a36c274d878224dc102562fdfbc10e17be /src/op-mode/vyos-dns-forwarding-statistics.py
parent99a3049c67005bf5e0ba45db264d56d3b57cb792 (diff)
downloadvyos-1x-be6f809581ccbcd6411713128a63711eaa2ce6b7.tar.gz
vyos-1x-be6f809581ccbcd6411713128a63711eaa2ce6b7.zip
Use '_' instead of '-' for python scripts for test
Diffstat (limited to 'src/op-mode/vyos-dns-forwarding-statistics.py')
-rwxr-xr-xsrc/op-mode/vyos-dns-forwarding-statistics.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/op-mode/vyos-dns-forwarding-statistics.py b/src/op-mode/vyos-dns-forwarding-statistics.py
deleted file mode 100755
index 3d1e30aee..000000000
--- a/src/op-mode/vyos-dns-forwarding-statistics.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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))