Skip to content

Commit

Permalink
* whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Jos Boumans committed Aug 21, 2013
1 parent 030c1f9 commit fe6632a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backends/graphite.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ var flush_stats = function graphite_flush(ts, metrics) {
if (legacyNamespace === true) {
statString += namespace.join(".") + globalSuffix + valuePerSecond + ts_suffix;
if (flush_counts) {
statString += 'stats_counts.' + key + globalSuffix + value + ts_suffix;
statString += 'stats_counts.' + key + globalSuffix + value + ts_suffix;
}
} else {
statString += namespace.concat('rate').join(".") + globalSuffix + valuePerSecond + ts_suffix;
if (flush_counts) {
statString += namespace.concat('count').join(".") + globalSuffix + value + ts_suffix;
statString += namespace.concat('count').join(".") + globalSuffix + value + ts_suffix;
}
}

Expand Down

0 comments on commit fe6632a

Please sign in to comment.