1
0
mirror of https://github.com/librenms/librenms-agent.git synced 2024-05-09 09:54:52 +00:00

15 lines
362 B
Plaintext
Raw Normal View History

#!/usr/bin/env python3
import json
import subprocess
from subprocess import PIPE, Popen
2016-07-22 15:33:16 -05:00
input = Popen(["rec_control", "get-all"], stdout=PIPE).communicate()[0]
2016-07-22 15:33:16 -05:00
data = []
for line in input.splitlines():
item = line.split()
data.append({"name": item[0].decode(), "value": int(item[1].decode())})
2016-07-22 15:33:16 -05:00
print("<<<powerdns-recursor>>>")
2016-07-22 15:33:16 -05:00
print(json.dumps(data))