From: Christopher Faulet Date: Wed, 17 Apr 2019 14:04:44 +0000 (+0200) Subject: BUG/MINOR: contrib/prometheus-exporter: Fix a typo in the run-queue metric type X-Git-Tag: v2.0-dev3~231 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f782c23ec6d6fc0de9832f4c0b7af6a0079a93d2;p=thirdparty%2Fhaproxy.git BUG/MINOR: contrib/prometheus-exporter: Fix a typo in the run-queue metric type No backport needed. --- diff --git a/contrib/prometheus-exporter/service-prometheus.c b/contrib/prometheus-exporter/service-prometheus.c index ed71acf933..63bf4e6094 100644 --- a/contrib/prometheus-exporter/service-prometheus.c +++ b/contrib/prometheus-exporter/service-prometheus.c @@ -938,7 +938,7 @@ const struct ist promex_inf_metric_types[INF_TOTAL_FIELDS] = { [INF_ZLIB_MEM_USAGE] = IST("gauge"), [INF_MAX_ZLIB_MEM_USAGE] = IST("counter"), [INF_TASKS] = IST("gauge"), - [INF_RUN_QUEUE] = IST("gouge"), + [INF_RUN_QUEUE] = IST("gauge"), [INF_IDLE_PCT] = IST("gauge"), [INF_NODE] = IST("untyped"), [INF_DESCRIPTION] = IST("untyped"),