From 11d619b38e01276b8a63b793870352d53a947569 Mon Sep 17 00:00:00 2001 From: Henrique Chehad Date: Tue, 6 Sep 2016 16:57:38 -0300 Subject: [PATCH] fix typo --- api/runner/metrics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/runner/metrics.go b/api/runner/metrics.go index 7e0a52828..2692850c1 100644 --- a/api/runner/metrics.go +++ b/api/runner/metrics.go @@ -11,7 +11,7 @@ import ( func LogMetricGauge(ctx context.Context, name string, value int) { log := titancommon.Logger(ctx) log.WithFields(logrus.Fields{ - "metric": name, "type": "count", "value": value}).Info() + "metric": name, "type": "gauge", "value": value}).Info() } func LogMetricCount(ctx context.Context, name string, value int) {