# HG changeset patch # User Kim Alvefur # Date 1559070909 -7200 # Node ID 3a06b0b6ba6793027e68ddd249b9e18b5c685739 # Parent 7811ba4675259a4e645d89db54a0f631c7c6a59c mod_statistics_statsman: Update for change stats type change in mod_measure_memory See a5a5f85d7ca1 diff -r 7811ba467525 -r 3a06b0b6ba67 mod_statistics_statsman/mod_statistics_statsman.lua --- a/mod_statistics_statsman/mod_statistics_statsman.lua Thu May 23 17:37:58 2019 +0200 +++ b/mod_statistics_statsman/mod_statistics_statsman.lua Tue May 28 21:15:09 2019 +0200 @@ -16,14 +16,14 @@ local name_map = { ["start_time"] = "up_since"; ["cpu.percent:amount"] = "cpu"; - ["memory.allocated_mmap:size"] = "memory_allocated_mmap"; - ["memory.allocated:size"] = "memory_allocated"; - ["memory.lua:size"] = "memory_lua"; - ["memory.returnable:size"] = "memory_returnable"; - ["memory.rss:size"] = "memory_rss"; - ["memory.total:size"] = "memory_total"; - ["memory.unused:size"] = "memory_unused"; - ["memory.used:size"] = "memory_used"; + ["memory.allocated_mmap:amount"] = "memory_allocated_mmap"; + ["memory.allocated:amount"] = "memory_allocated"; + ["memory.lua:amount"] = "memory_lua"; + ["memory.returnable:amount"] = "memory_returnable"; + ["memory.rss:amount"] = "memory_rss"; + ["memory.total:amount"] = "memory_total"; + ["memory.unused:amount"] = "memory_unused"; + ["memory.used:amount"] = "memory_used"; ["/*/mod_c2s/connections:amount"] = "total_c2s"; ["/*/mod_s2s/connections:amount"] = "total_s2s"; };