Skip to content

Commit

Permalink
Merge pull request #43 from fkjellberg/fix-wrong-servo-percentile
Browse files Browse the repository at this point in the history
Fix the wrong percentile for latencyExecute_percentile_75 in the Servo publisher
  • Loading branch information
benjchristensen committed Dec 10, 2012
2 parents 44c7a06 + 028fc3d commit b31a833
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public Number getValue() {
monitors.add(new GaugeMetric(MonitorConfig.builder("latencyExecute_percentile_75").build()) {
@Override
public Number getValue() {
return metrics.getExecutionTimePercentile(90);
return metrics.getExecutionTimePercentile(75);
}
});
monitors.add(new GaugeMetric(MonitorConfig.builder("latencyExecute_percentile_90").build()) {
Expand Down

0 comments on commit b31a833

Please sign in to comment.