summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2019-07-15 10:38:16 +0300
committerGitHub <noreply@github.com>2019-07-15 10:38:16 +0300
commit7478c205e284c6b76b01eccda064da3f70d39fbf (patch)
treec79beb75686b19484d5d0f6a93c1d11aa2ffe1fd
parent192a868b03289a583ac1cd3f648ef185c6ac9209 (diff)
python sensors collector: sensor chips filtering fix (#6463)
-rw-r--r--collectors/python.d.plugin/sensors/sensors.chart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectors/python.d.plugin/sensors/sensors.chart.py b/collectors/python.d.plugin/sensors/sensors.chart.py
index 02e88e6a4e..6b54ea601e 100644
--- a/collectors/python.d.plugin/sensors/sensors.chart.py
+++ b/collectors/python.d.plugin/sensors/sensors.chart.py
@@ -92,7 +92,7 @@ class Service(SimpleService):
SimpleService.__init__(self, configuration=configuration, name=name)
self.order = list()
self.definitions = dict()
- self.chips = list()
+ self.chips = configuration.get('chips')
def get_data(self):
data = dict()