Commit graph

179 commits

Author SHA1 Message Date
Kim Alvefur
e17cfb0fdc mod_admin_shell: module:info: List provided 'items' 2021-06-12 17:49:44 +02:00
Kim Alvefur
4e2fc4ce89 mod_admin_shell: module:info: Use existing host string representation
Hosts have a metatable __tostring method that produces a nice
representation such as `VirtualHost "example.com"`, which even includes
the component module for internal components.
2021-06-12 16:47:30 +02:00
Kim Alvefur
98aa4ec604 mod_admin_shell: module:info: List dependencies 2021-06-12 16:40:40 +02:00
Kim Alvefur
bf565c76f6 mod_admin_shell: module:info: Show module status 2021-06-12 16:40:22 +02:00
Kim Alvefur
3fdf0f66ab mod_admin_shell: Add basic command that shows more info about loaded modules
To show info about loaded modules. Inspired by the desire to know
whether a module was loaded from the core set or 3rd party.
2021-06-12 16:50:15 +02:00
Jonas Schäfer
5d597837f5 Statistics: Rewrite statistics backends to use OpenMetrics
The metric subsystem of Prosody has had some shortcomings from
the perspective of the current state-of-the-art in metric
observability.

The OpenMetrics standard [0] is a formalization of the data
model (and serialization format) of the well-known and
widely-used Prometheus [1] software stack.

The previous stats subsystem of Prosody did not map well to that
format (see e.g. [2] and [3]); the key reason is that it was
trying to do too much math on its own ([2]) while lacking
first-class support for "families" of metrics ([3]) and
structured metric metadata (despite the `extra` argument to
metrics, there was no standard way of representing common things
like "tags" or "labels").

Even though OpenMetrics has grown from the Prometheus world of
monitoring, it maps well to other popular monitoring stacks
such as:

- InfluxDB (labels can be mapped to tags and fields as necessary)
- Carbon/Graphite (labels can be attached to the metric name with
  dot-separation)
- StatsD (see graphite when assuming that graphite is used as
  backend, which is the default)

The util.statsd module has been ported to use the OpenMetrics
model as a proof of concept. An implementation which exposes
the util.statistics backend data as Prometheus metrics is
ready for publishing in prosody-modules (most likely as
mod_openmetrics_prometheus to avoid breaking existing 0.11
deployments).

At the same time, the previous measure()-based API had one major
advantage: It is really simple and easy to use without requiring
lots of knowledge about OpenMetrics or similar concepts. For that
reason as well as compatibility with existing code, it is preserved
and may even be extended in the future.

However, code relying on the `stats-updated` event as well as
`get_stats` from `statsmanager` will break because the data
model has changed completely; in case of `stats-updated`, the
code will simply not run (as the event was renamed in order
to avoid conflicts); the `get_stats` function has been removed
completely (so it will cause a traceback when it is attempted
to be used).

Note that the measure_*_event methods have been removed from
the module API. I was unable to find any uses or documentation
and thus deemed they should not be ported. Re-implementation is
possible when necessary.

   [0]: https://openmetrics.io/
   [1]: https://prometheus.io/
   [2]: #959
   [3]: #960
2021-04-18 11:47:41 +02:00
Kim Alvefur
d35efa926b mod_admin_shell: Remove obsolete checks related to s2sout.lib
s2sout.lib was removed in 756b8821007a along with srv_hosts and
srv_choice
2021-04-06 13:25:38 +02:00
Kim Alvefur
2ae58ee422 mod_admin_shell: Sort timers by time in debug:timers()
Easier to see which timers are happening soon vs further in the future
if they are in some sensible order.
2021-03-23 21:52:07 +01:00
Kim Alvefur
196c9f070e mod_admin_shell: Add help section with (top level) MUC commands
These were previously only documented on the site.
2021-02-05 15:52:46 +01:00
Kim Alvefur
ca39262991 mod_admin_shell: Pretty-print HTTP endpoints in a human table
Attempted readability improvement
2021-02-03 23:46:13 +01:00
Kim Alvefur
bdb5e39f5c mod_admin_shell: Remove previous print() call
Accident involving Mercurial interactive commit
2021-02-03 23:47:59 +01:00
Kim Alvefur
d8d5ad3bea mod_admin_shell: List modules providing each HTTP endpoint 2021-02-03 23:31:34 +01:00
Kim Alvefur
a64ae4e8d5 mod_admin_shell: List global HTTP endpoints by default
Trick copied from the module commands
2021-02-03 23:28:02 +01:00
Kim Alvefur
6c5dd70664 mod_admin_shell: Report CSI queue length from mod_csi_simple 2020-08-22 14:34:57 +02:00
Kim Alvefur
460a55c86e mod_admin_shell: Report CSI state in c2s:show() 2020-08-22 14:34:33 +02:00
Kim Alvefur
7fb1dd361b mod_admin_shell: Handle server_epoll using monotonic time internally 2020-06-30 02:31:57 +02:00
Kim Alvefur
64614cb420 mod_admin_shell: Fix debug:timers to handle net.server native timers 2020-06-29 21:43:51 +02:00
Kim Alvefur
efcf7cb7d4 mod_admin_shell: Update for async.wait_for rename 2020-06-13 14:40:41 +02:00
Kim Alvefur
ababc84794 mod_admin_shell: Fix display of units for some statistics 2020-06-07 00:18:14 +02:00
Kim Alvefur
4a087da58e mod_admin_shell: Skip multiplier adjustment for rates 2020-06-04 16:54:52 +02:00
Kim Alvefur
509549f679 mod_admin_shell: Format stats with util.human.units 2020-06-03 19:27:44 +02:00
Kim Alvefur
753836c876 mod_admin_shell: Fix error due to float passed to os.date in Lua 5.3
Thanks Martin
2020-06-02 16:40:23 +02:00
Matthew Wild
81457f2fff mod_admin_shell: Remove old variable declaration [luacheck] 2020-06-01 16:38:16 +01:00
Matthew Wild
f554caa3ac mod_admin_shell: Remove extra newline at end of help text 2020-06-01 16:14:44 +01:00
Matthew Wild
e703759258 mod_admin_shell, mod_admin_telnet, util.prosodyctl.shell: Separate output from final result
Fixes the client pausing for input after output from commands.
2020-06-01 16:14:06 +01:00
Matthew Wild
9daa5c028c mod_admin_shell: New module that implements the console interface over an admin socket 2020-06-01 15:43:00 +01:00
Matthew Wild
36fbcd4772 mod_admin_shell: Add watch:log() command to tail logs in realtime 2022-03-17 10:24:38 +00:00
Matthew Wild
119725bbe3 mod_admin_shell: Add session.is_connected() method 2022-03-17 10:23:12 +00:00
Matthew Wild
7881c5d093 mod_admin_shell: Add session.write() method to write data to client with no \n 2022-03-17 10:22:47 +00:00