summaryrefslogtreecommitdiff
path: root/src/op_mode/dns_forwarding_statistics.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/op_mode/dns_forwarding_statistics.py')
-rwxr-xr-xsrc/op_mode/dns_forwarding_statistics.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/op_mode/dns_forwarding_statistics.py b/src/op_mode/dns_forwarding_statistics.py
deleted file mode 100755
index f626244..0000000
--- a/src/op_mode/dns_forwarding_statistics.py
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env python3
-
-import subprocess
-import jinja2
-import sys
-
-from vyos.config import Config
-
-PDNS_CMD='/usr/bin/rec_control'
-
-OUT_TMPL_SRC = """
-DNS forwarding statistics:
-
-Cache entries: {{ cache_entries -}}
-Cache size: {{ cache_size }} kbytes
-
-"""
-
-
-if __name__ == '__main__':
- # Do nothing if service is not configured
- c = Config()
- if not c.exists_effective('service dns forwarding'):
- print("DNS forwarding is not configured")
- sys.exit(0)
-
- 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))