Commit graph

51 commits

Author SHA1 Message Date
Kim Alvefur
2f274d8026 mod_admin_shell: List periodic tasks in module:info 2021-11-22 19:07:56 +01:00
Kim Alvefur
3f4a73c66b mod_admin_shell: Remove now redundant promise awaiting in dns:lookup() 2021-11-27 14:16:13 +01:00
Kim Alvefur
769a3ed263 mod_admin_shell: Remove now redundant promise awaiting in xmpp:ping() 2021-11-27 14:15:55 +01:00
Kim Alvefur
bdc838bf11 mod_admin_shell: Fix indentation
It was all of for some reason
2021-11-26 22:28:37 +01:00
Kim Alvefur
aac203f0d9 mod_admin_shell: Wait for promises
I've typed `>require"util.async".wait_for(...)` for the last time!
2021-11-26 22:26:48 +01:00
Kim Alvefur
51c1c97fe2 mod_admin_shell: Reduce width of 'Status' column
'unavailable' was the longest possibility, dropping it probably
differentiates available from unavailable more, in less space.
2021-11-26 11:40:48 +01:00
Kim Alvefur
2ec4d4a83d mod_admin_shell: Reduce width of 'Security' column (thanks Link Mauve)
Tricky to represent "secure, but no details" in short enough space.
2021-11-26 11:39:13 +01:00
Kim Alvefur
fe93f28b16 mod_admin_shell: Fix showing default HTTP path in module:info
Thanks mod_http_openmetrics
2021-11-25 17:07:13 +01:00
Kim Alvefur
6e91f0ad43 mod_admin_shell: Factor out simple function in module:info for reuse
Marginal improvement in readability
2021-11-24 20:12:22 +01:00
Kim Alvefur
1ac4aed7cd mod_admin_shell: List collected metrics in module:info
Lets you know what to look for with stats:show()
2021-11-24 20:03:38 +01:00
Kim Alvefur
2388b800b2 mod_admin_shell: List net providers in module:info 2021-11-23 17:59:40 +01:00
Kim Alvefur
ce8107379d mod_admin_shell: Return counts of shown vs total from new table views
Not exactly the way it was before, but close enough and useful.
2021-11-16 16:06:41 +01:00
Kim Alvefur
38c7c944ca mod_admin_shell: Handle absence of connection in security column (thanks arcseconds)
I surmise this can happen in a disconnected/smacks hibernation state.
2021-11-15 13:31:06 +01:00
Kim Alvefur
c9479cbb69 util.human.io: Pass nil to cell mapper to signal missing value
Seems more like conventional Lua than passing an empty string to signal
lack of value.
2021-11-12 11:43:24 +01:00
Kim Alvefur
35589d345e mod_admin_shell: Respect metatables in output serialization
Makes it so that returning e.g. util.cache :table() produces useful
output, which otherwise would look like empty tables.
2021-11-12 11:33:09 +01:00
Kim Alvefur
fd09aa9659 mod_admin_shell: Specify a width for cert column
Avoids ellipsis
2021-11-10 21:31:41 +01:00
Kim Alvefur
7f68cacb79 mod_admin_shell: Indicate bi-directional s2s connections 2021-11-10 20:25:37 +01:00
Kim Alvefur
5f93ef8119 mod_admin_shell: Allow passing columns as a string for convenience 2021-11-10 16:28:54 +01:00
Kim Alvefur
aef0454598 mod_admin_shell: Optionally group session listings by host when not included as column
Similar to the earlier view
2021-11-10 15:54:27 +01:00
Kim Alvefur
29535c322a mod_admin_shell: New table based implementation of c2s and s2s:show()
Nicer and more readable.

Thanks jonas’ and prosody@ for JID length stats to inform column widths.
2021-11-10 17:59:35 +01:00
Kim Alvefur
e1d1be0068 mod_admin_shell: Show HTTP base-URLs in module:info()
Because it's nice, not having to find it in http:list(), which could
have a lot of items.
2021-10-13 20:46:04 +02:00
Kim Alvefur
3d4ee088ae mod_admin_shell: Allow passing an exit code to server:shutdown()
Mirroring the internal API
2021-09-30 23:22:51 +02:00
Kim Alvefur
d6122ce3a5 mod_admin_shell: Keep unrestricted environment for session lifetime
Makes it so that global values set in the environment are kept longer
than within one line, and thus can be used until the session ends. They
still don't pollute the global environment, which is an error anyway.

Thanks phryk for noticing.
2021-08-11 14:55:59 +02:00
Kim Alvefur
df48c1e867 mod_admin_shell: module:info: List 'items' that can be formatted easily
Some items like HTTP providers would be very verbose, others are tricky
to handle.
2021-06-12 18:06:37 +02:00
Kim Alvefur
bd8d770411 mod_admin_shell: module:info: Show friendlier name for known 'items' 2021-06-12 18:06:13 +02:00
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