Skip to content

Commit

Permalink
Count is not time
Browse files Browse the repository at this point in the history
  • Loading branch information
vuksanv committed Aug 10, 2011
1 parent 94ec34a commit 0f4a4ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pystatsd/server-gmond.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def flush(self):
g.send(k + "_lower", min, "double", "time", "both", 60, self.dmax, group, self.ganglia_spoof_host)
g.send(k + "_mean", mean, "double", "time", "both", 60, self.dmax, group, self.ganglia_spoof_host)
g.send(k + "_upper", max, "double", "time", "both", 60, self.dmax, group, self.ganglia_spoof_host)
g.send(k + "_count", count, "double", "time", "both", 60, self.dmax, group, self.ganglia_spoof_host)
g.send(k + "_count", count, "double", "count", "both", 60, self.dmax, group, self.ganglia_spoof_host)
g.send(k + "_" + str(self.pct_threshold) +"pct", max_threshold, "double", "time", "both", 60, self.dmax, group, self.ganglia_spoof_host)

stats += 1
Expand Down

0 comments on commit 0f4a4ca

Please sign in to comment.