Commit b1f19faa authored by Poul-Henning Kamp's avatar Poul-Henning Kamp Committed by Tollef Fog Heen

Add a new stats counter for "gone" marked bans

parent c08a29d1
......@@ -139,12 +139,13 @@ VSC_F(n_vcl, uint64_t, 0, 'a', "N vcl total", "")
VSC_F(n_vcl_avail, uint64_t, 0, 'a', "N vcl available", "")
VSC_F(n_vcl_discard, uint64_t, 0, 'a', "N vcl discarded", "")
VSC_F(n_ban, uint64_t, 0, 'i', "N total active bans", "")
VSC_F(n_ban, uint64_t, 0, 'i', "N total active bans", "")
VSC_F(n_ban_gone, uint64_t, 0, 'i', "N total gone bans", "")
VSC_F(n_ban_add, uint64_t, 0, 'a', "N new bans added", "")
VSC_F(n_ban_retire, uint64_t, 0, 'a', "N old bans deleted", "")
VSC_F(n_ban_obj_test, uint64_t, 0, 'a', "N objects tested", "")
VSC_F(n_ban_re_test, uint64_t, 0, 'a', "N regexps tested against", "")
VSC_F(n_ban_dups, uint64_t, 0, 'a', "N duplicate bans removed", "")
VSC_F(n_ban_retire, uint64_t, 0, 'a', "N old bans deleted", "")
VSC_F(n_ban_obj_test, uint64_t, 0, 'a', "N objects tested", "")
VSC_F(n_ban_re_test, uint64_t, 0, 'a', "N regexps tested against", "")
VSC_F(n_ban_dups, uint64_t, 0, 'a', "N duplicate bans removed", "")
VSC_F(hcb_nolock, uint64_t, 0, 'a', "HCB Lookups without lock", "")
VSC_F(hcb_lock, uint64_t, 0, 'a', "HCB Lookups with lock", "")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment