Simplify threshold calculation

This commit is contained in:
Dan Rowe 2012-10-18 21:06:05 -04:00
Родитель dd21c20903
Коммит 922e9e58c5
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -95,8 +95,7 @@ var flush_stats = function graphite_flush(ts, metrics) {
for (key2 in pctThreshold) {
var pct = pctThreshold[key2];
if (count > 1) {
var thresholdIndex = Math.round(((100 - pct) / 100) * count);
var numInThreshold = count - thresholdIndex;
var numInThreshold = Math.round(pct / 100 * count);
maxAtThreshold = values[numInThreshold - 1];
sum = cumulativeValues[numInThreshold - 1];