mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_admin_shell: stats:show(): Friendlier error message when statistics disabled
This commit is contained in:
parent
a2b2d01c3e
commit
f45d88d614
1 changed files with 4 additions and 1 deletions
|
@ -2431,12 +2431,15 @@ describe_command [[stats:show(pattern) - Show internal statistics, optionally fi
|
|||
-- Undocumented currently, you can append :histogram() or :cfgraph() to stats:show() for rendered graphs.
|
||||
function def_env.stats:show(name_filter)
|
||||
local statsman = require "prosody.core.statsmanager"
|
||||
local metric_registry = statsman.get_metric_registry();
|
||||
if not metric_registry then
|
||||
return nil, [[Statistics disabled. Try `statistics = "internal"` in the global section of the config file and restart.]];
|
||||
end
|
||||
local collect = statsman.collect
|
||||
if collect then
|
||||
-- force collection if in manual mode
|
||||
collect()
|
||||
end
|
||||
local metric_registry = statsman.get_metric_registry();
|
||||
local displayed_stats = new_stats_context(self);
|
||||
for family_name, metric_family in iterators.sorted_pairs(metric_registry:get_metric_families()) do
|
||||
if not name_filter or family_name:match(name_filter) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue