Skip to content

Commit

Permalink
Merge pull request #33 from kouki-h/master
Browse files Browse the repository at this point in the history
fix help message
  • Loading branch information
boynux authored Dec 30, 2019
2 parents 0ce0081 + 2f05b42 commit 900fd00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions collector/counters.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 900fd00

Please sign in to comment.