File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def __init__(self, config):
19
19
20
20
def add (self , label , socket ):
21
21
if self .config .data_export == "prometheus" and self .enabled :
22
- self .prometheus .update (label , socket )
22
+ self .prometheus .update (label , socket )
23
23
24
24
elif self .config .data_export == "influxdb" and self .enabled :
25
25
if label == "all" :
Original file line number Diff line number Diff line change @@ -92,9 +92,9 @@ def monitor_filter(self):
92
92
continue
93
93
elif not self .config .labels_only and self .config .monitor and container .name in self .config .monitor \
94
94
and container .name not in self .config .ignore :
95
- monitored_containers .append (container )
95
+ monitored_containers .append (container )
96
96
elif not self .config .labels_only and container .name not in self .config .ignore :
97
- monitored_containers .append (container )
97
+ monitored_containers .append (container )
98
98
99
99
self .data_manager .monitored_containers [self .socket ] = len (monitored_containers )
100
100
self .data_manager .set (self .socket )
You can’t perform that action at this time.
0 commit comments