Skip to content

Commit

Permalink
Merge pull request #52 from signalfx/patched
Browse files Browse the repository at this point in the history
fix memory leak and upgrade signalfx-python ver
  • Loading branch information
Drew Griffin authored Mar 25, 2017
2 parents 593209b + 319327e commit eac3e0c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
0.0.29 / 2016-11-02
0.0.30 / 2017-03-25
===================

* Fix memory leak related to cpu utilization metrics collection
* Upgrade to latest signalfx-python v1.0.16

0.0.29 / 2016-11-02

* Added python dependency six

0.0.28 / 2016-10-18
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
psutil>=3.2.2
signalfx>=1.0.7
signalfx>=1.0.16
simplejson>=3.8.1
six>=1.10.0
4 changes: 3 additions & 1 deletion src/signalfx_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
TIMEOUT = 3
POST_URLS = []
DEFAULT_POST_URL = "https://ingest.signalfx.com/v1/collectd"
VERSION = "0.0.29"
VERSION = "0.0.30"
MAX_LENGTH = 0
COLLECTD_VERSION = ""
LINUX_VERSION = ""
Expand Down Expand Up @@ -414,6 +414,8 @@ def read(self):
else:
debug("too old %s %s" % (t, self.metrics[t].keys()))
del (self.metrics[t])
else:
self.metrics = {}


class CpuUtilization(Utilization):
Expand Down

0 comments on commit eac3e0c

Please sign in to comment.