RestApiMetrics: Fix description of error count metric

Change-Id: Ie0496751750363d413b86175f00e68a0445931fd
This commit is contained in:
David Pursehouse
2017-02-02 10:07:17 +09:00
parent 86ab42542b
commit d2960751dd

View File

@@ -50,7 +50,7 @@ public class RestApiMetrics {
errorCount = metrics.newCounter(
"http/server/rest_api/error_count",
new Description("REST API calls by view")
new Description("REST API errors by view")
.setRate(),
view,
Field.ofInteger("error_code", "HTTP status code"));