Skip to content

Commit

Permalink
use max when calculating diff, instead of avg
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacov committed Dec 11, 2017
1 parent bf0e0b4 commit f64d75c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def compute_derivative(counters)
{
'start' => n['start'],
'end' => n['end'],
'avg' => n['avg'] - prv['avg']
'avg' => n['max'] - prv['max']
}
end
end
Expand Down

0 comments on commit f64d75c

Please sign in to comment.