From ef765d3f4c9fb4bfa5949b2e10f208cd44c5e1db Mon Sep 17 00:00:00 2001 From: Ovidiu Sas Date: Tue, 18 May 2021 15:00:23 -0400 Subject: [PATCH] xhttp_prom: fix small copy/paste typo in documentation (cherry picked from commit 2967a41f5537df81745a71226ba9e793ccbdd453) --- src/modules/xhttp_prom/doc/xhttp_prom_admin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/xhttp_prom/doc/xhttp_prom_admin.xml b/src/modules/xhttp_prom/doc/xhttp_prom_admin.xml index eb331ab9c60..c35c44a0249 100644 --- a/src/modules/xhttp_prom/doc/xhttp_prom_admin.xml +++ b/src/modules/xhttp_prom/doc/xhttp_prom_admin.xml @@ -566,7 +566,7 @@ prom_gauge_set("gg01", "-12.5"); ... # Definition of gg02 gauge with two labels method and IP -modparam("xhttp_prom", "prom_gauge", "name=cnt02; label=method:IP;"); +modparam("xhttp_prom", "prom_gauge", "name=gg02; label=method:IP;"); ... # Assign 2.8 to value of gg02 gauge with labels method and IP. It creates the gauge if it does not exist. prom_gauge_set("gg02", "2.8", "push", "192.168.0.1");