Commit graph

169 commits

Author SHA1 Message Date
Kim Alvefur
b5a87898ee mod_admin_shell: Use exact match instead of Lua patterns in c2s,s2s:show
It is unexpected that 'example.com' matches 'exampleicom.org' and this
use of Lua patterns is undocumented and unlikely to be widely known or
used.
2022-01-30 11:10:51 +01:00
Kim Alvefur
46ad556ca0 mod_admin_shell: Fix traceback on rendering graph of stats without extra labels
Stops an error when extra_labels is nil since it attempts to index it

Unsure about correctness
2022-01-29 15:01:38 +01:00
Kim Alvefur
d9f7b26328 mod_admin_shell: Add help section about stats 2022-01-29 14:58:37 +01:00
Kim Alvefur
09d7e131d0 mod_admin_shell: Add help section about customizing table columns 2022-01-28 20:39:13 +01:00
Kim Alvefur
7a706aecec mod_admin_shell: Add command to show current user roles 2022-01-23 20:06:50 +01:00
Kim Alvefur
1809c0460f mod_admin_shell: Add help section about roles
As in the argument to user:create() and user:roles()

Tricky to come up with something sensible to write when Prosody core
only knows of the 'prosody:admin' role so far.
2022-01-23 19:55:32 +01:00
Kim Alvefur
28bd099515 mod_admin_shell: Log creation of incoming s2s connections during ping
The 's2s-created' fires just after accepting the TCP connection, before
the addresses are known, so this can have some false positives.
2021-12-27 17:04:33 +01:00
Kim Alvefur
257f52d826 mod_admin_shell: Print s2s related events while waiting for ping
Gives a better idea of what's taking time.
2021-12-26 16:26:36 +01:00
Kim Alvefur
6e0bbc2af5 mod_smacks: Limit queue memory consumption using new util
This brings back the queue size limit that was once added, then removed
because destroying the session when reaching the limit was not great.
Instead, the queue wraps and overwrites the oldest unacked stanza on the
assumption that it will probably be acked anyway and thus does not need
to be delivered. If those discarded stanzas turn out to be needed on
resumption then the resumption fails.
2021-12-14 20:00:45 +01:00
Kim Alvefur
1ffb6f0b3d mod_admin_shell: Add port as a c2s/s2s:show column definition
Allows inferring whether Direct TLS was used, or perhaps which SRV
record was chosen. Not shown by default.
2021-12-07 13:21:20 +01:00
Kim Alvefur
9f2249b3db mod_admin_shell: Handle global roles (pass host=*)
Is it not odd that um.set_roles() takes `nil` to mean global?
2021-12-06 22:33:46 +01:00
Kim Alvefur
a45484c131 mod_admin_shell: Only check that local users exist locally 2021-12-06 22:23:38 +01:00
Kim Alvefur
cf137f9902 mod_admin_shell: Support setting roles on hosts other than the users'
Needed to e.g. grant admin rights on a component, or grant non-local
users local privileges.

Leave the same host syntax for convenience, since this might be the
common case.
2021-12-06 21:56:19 +01:00
Kim Alvefur
efa1f442ae mod_admin_shell: Add command for updating roles user:roles(jid, roles)
This would allow e.g. granting admin status without changing the config
and without a restart.
2021-12-06 21:55:57 +01:00
Kim Alvefur
95fae62ac5 mod_admin_shell: Allow setting roles when creating user 2021-12-04 02:25:01 +01:00
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