Skip to content

Commit cf6b8a3

Browse files
Merge pull request #175 from pyouroboros/develop
v1.1.1 Merge
2 parents 3ef4dfa + bd35656 commit cf6b8a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyouroboros/dataexporters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self, config):
1919

2020
def add(self, label, socket):
2121
if self.config.data_export == "prometheus" and self.enabled:
22-
self.prometheus.update(label, socket)
22+
self.prometheus.update(label, socket)
2323

2424
elif self.config.data_export == "influxdb" and self.enabled:
2525
if label == "all":

pyouroboros/dockerclient.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ def monitor_filter(self):
9292
continue
9393
elif not self.config.labels_only and self.config.monitor and container.name in self.config.monitor \
9494
and container.name not in self.config.ignore:
95-
monitored_containers.append(container)
95+
monitored_containers.append(container)
9696
elif not self.config.labels_only and container.name not in self.config.ignore:
97-
monitored_containers.append(container)
97+
monitored_containers.append(container)
9898

9999
self.data_manager.monitored_containers[self.socket] = len(monitored_containers)
100100
self.data_manager.set(self.socket)

0 commit comments

Comments
 (0)