openwebrx-clone/owrx/controllers/metrics.py
2020-02-23 17:22:13 +01:00

10 lines
273 B
Python

from . import Controller
from owrx.metrics import Metrics
import json
class MetricsController(Controller):
def handle_request(self):
data = json.dumps(Metrics.getSharedInstance().getMetrics())
self.send_response(data, content_type="application/json")