]> arthur.barton.de Git - netdata.git/blobdiff - python.d/nginx.chart.py
implement `_get_raw_data`
[netdata.git] / python.d / nginx.chart.py
index 668209c5d945734920fa702783bbfc3a89a90895..c50d0b72c675990e16c054e9980ac4f0111f71bd 100644 (file)
@@ -61,7 +61,7 @@ class Service(UrlService):
         :return: dict
         """
         try:
-            raw = self._get_data().split(" ")
+            raw = self._get_raw_data().split(" ")
             return {'active': int(raw[2]),
                     'requests': int(raw[7]),
                     'reading': int(raw[11]),