Fix ht:lua_calls chart

Fixes #3021
This commit is contained in:
emanuele-f 2019-10-31 18:05:21 +01:00
parent cb15313c15
commit cfc1f0fe57
3 changed files with 9 additions and 4 deletions

View file

@ -20,7 +20,8 @@ function ts_dump.iface_update_periodic_ht_state_update_stats(when, ifid, periodi
end
end
ts_utils.append("ht:lua_calls", {ifid = ifid, hash_table = ht_name, num_ms = num_ms, num_calls = num_calls}, when, verbose)
ts_utils.append("ht:duration", {ifid = ifid, hash_table = ht_name, num_ms = num_ms}, when, verbose)
ts_utils.append("ht:num_calls", {ifid = ifid, hash_table = ht_name, num_calls = num_calls}, when, verbose)
end
end