File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
- 0.0.29 / 2016-11-02
1
+ 0.0.30 / 2017-03-25
2
2
===================
3
3
4
+ * Fix memory leak related to cpu utilization metrics collection
5
+ * Upgrade to latest signalfx-python v1.0.16
6
+
7
+ 0.0.29 / 2016-11-02
8
+
4
9
* Added python dependency six
5
10
6
11
0.0.28 / 2016-10-18
Original file line number Diff line number Diff line change 1
1
psutil >= 3.2.2
2
- signalfx >= 1.0.7
2
+ signalfx >= 1.0.16
3
3
simplejson >= 3.8.1
4
4
six >= 1.10.0
Original file line number Diff line number Diff line change 64
64
TIMEOUT = 3
65
65
POST_URLS = []
66
66
DEFAULT_POST_URL = "https://ingest.signalfx.com/v1/collectd"
67
- VERSION = "0.0.29 "
67
+ VERSION = "0.0.30 "
68
68
MAX_LENGTH = 0
69
69
COLLECTD_VERSION = ""
70
70
LINUX_VERSION = ""
@@ -414,6 +414,8 @@ def read(self):
414
414
else :
415
415
debug ("too old %s %s" % (t , self .metrics [t ].keys ()))
416
416
del (self .metrics [t ])
417
+ else :
418
+ self .metrics = {}
417
419
418
420
419
421
class CpuUtilization (Utilization ):
You can’t perform that action at this time.
0 commit comments