Skip to content

Commit

Permalink
Merge pull request statsd#201 from goir/patch-1
Browse files Browse the repository at this point in the history
Update lib/process_metrics.js
  • Loading branch information
mrtazz committed Dec 9, 2012
2 parents b1d3905 + e0629d4 commit 1a8bb9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/process_metrics.js
Expand Up @@ -50,7 +50,7 @@ var process_metrics = function (metrics, flushInterval, ts, flushCallback) {
}

var clean_pct = '' + pct;
clean_pct.replace('.', '_');
clean_pct = clean_pct.replace('.', '_');
current_timer_data["mean_" + clean_pct] = mean;
current_timer_data["upper_" + clean_pct] = maxAtThreshold;
current_timer_data["sum_" + clean_pct] = sum;
Expand Down

0 comments on commit 1a8bb9b

Please sign in to comment.