core.statsmanager: Do a final collection on shutdown

This commit is contained in:
Kim Alvefur 2019-01-22 09:21:23 +01:00
parent 19d302f3c4
commit 54bfc5180f

View file

@ -97,6 +97,7 @@ if stats then
end
timer.add_task(stats_interval, collect);
prosody.events.add_handler("server-started", function () collect() end, -1);
prosody.events.add_handler("server-stopped", function () collect() end, -1);
else
log("debug", "Statistics enabled using %s provider, collection is disabled", stats_provider_name);
end