From 2f05b42f07f76eea3a44d32a255b3f277f30ecf9 Mon Sep 17 00:00:00 2001 From: kouki-h <49972676+kouki-h@users.noreply.github.com> Date: Fri, 27 Dec 2019 10:33:23 +0900 Subject: [PATCH] fix help message --- collector/counters.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collector/counters.go b/collector/counters.go index 625a006..dc7ea3e 100644 --- a/collector/counters.go +++ b/collector/counters.go @@ -42,9 +42,9 @@ var squidCounters = []squidCounter{ {"server.other", "kbytes_in", "kbytes_total", "The total number of server other kbytes received"}, {"server.other", "kbytes_out", "kbytes_total", "The total number of server other kbytes transferred"}, - {"swap", "ins", "total", "The total number of server other requests"}, - {"swap", "outs", "total", "The total number of server other errors"}, - {"swap", "files_cleaned", "total", "The total number of server other kbytes received"}, + {"swap", "ins", "total", "The number of objects read from disk"}, + {"swap", "outs", "total", "The number of objects saved to disk"}, + {"swap", "files_cleaned", "total", "The number of orphaned cache files removed by the periodic cleanup procedure"}, } func generateSquidCounters(labels []string) descMap {