Commit graph

120 commits

Author SHA1 Message Date
Kim Alvefur
5251c9b686 compat: Remove handling of Lua 5.1 location of 'unpack' function 2022-07-11 19:07:38 +02:00
Kim Alvefur
9e5bf4fc48 core.moduleapi: Fix 'global' property via :context() - #1748
The 'global' property should reflect whether the module API instance
represents the global context or a VirtualHost or Component context.
However the module:context() method did not override this, leading the
property of the previous module shining trough, leading to bugs in code
relying on the 'global' property.

See also #1736
2022-04-27 17:18:46 +02:00
Matthew Wild
4bdff5a452 modulemanager, moduleapi: Switch to new pluginloader interface 2022-02-04 14:11:46 +00:00
Matthew Wild
bd455426f6 moduleapi: Support stripping of multi-word from module names
The goal is to allow module:provides("foo-bar") with a mod_foo_bar_ prefix
being stripped. It will break any existing modules that use a prefix and have
hyphens instead of underscores. No such modules are known.
2021-12-22 14:40:42 +00:00
Kim Alvefur
8aa16eaec0 mod_cron: Add a 'weekly' job frequency 2021-12-03 09:05:41 +01:00
Kim Alvefur
7f2412db5c core.moduleapi: Add API for adding daily or hourly tasks via mod_cron 2021-11-21 18:13:21 +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
2921cef48f core.moduleapi: Fix name of renamed API in log message
hook_stanza was renamed hook_tag in 2012 in 2087d42f1e77
Why do we still have hook_stanza?

Why is this only a warning anyway?
2021-11-18 16:26:54 +01:00
Kim Alvefur
f5ea676b92 core.moduleapi: Ensure module:send_iq() handler priority over mod_iq
To prevent a situation where you for whatever reason use a full JID that
is currently online and the response ends up routed there instead of the
module:send_iq() handlers.
2021-09-24 20:26:21 +02:00
Kim Alvefur
e341f785e6 core.moduleapi: Enable full JID origin queries with module:send_iq()
Since we don't currently have hooks that includes type and id here, we
need to check those attributes in the handlers.
2021-09-24 20:17:31 +02:00
Kim Alvefur
73d7327896 core.moduleapi: Filter out unrelated direct replies to module:send_iq
This is primarily something that happens with an internal query to
mod_mam, which calls origin.send() several times with results, leading
to the first such result being treated as the final response and
resolving the promise.

Now, these responses pass trough to the underlying origin.send(), where
they can be caught. Tricky but not impossible. For remote queries, it's
even trickier, you would likely need to bind a resource or similar.
2021-09-24 20:12:16 +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
d53dcee890 core.moduleapi: Return resource path from module:get_directory() (API BC)
:get_directory has so far returned the base directory of the current
module source code. This has worked well so far to load resources which
tend to be included in the same directory, but with the plugin installer
using LuaRocks, extra resources (e.g. templates and other assets) these
are saved in a completely different directory.

In be73df6765b9 core.modulemanager gained some code for finding that
directory and saving it in module.resource_path but now the question is
how this should be reflected in the API.

A survey of community modules suggest the vast majority use the
:get_directory method for locating templates and other assets, rather
than the code (which would use module:require instead).

Therefore this commit changes :get_directory to return the resource_path
when available. This should work for most modules.
2020-10-09 16:37:15 +02:00
Kim Alvefur
58be93c184 core.moduleapi: Use resource path for :load_resource() 2020-10-07 16:10:51 +02:00
Kim Alvefur
1f80e42aa5 core.moduleapi: Allow passing a config table trough :measure 2019-01-04 07:00:45 +01:00
Kim Alvefur
38742f7b50 moduleapi: Rename argument to silence luacheck 2020-04-01 22:32:50 +02:00
Kim Alvefur
7e181e31e0 moduleapi: Fix handling of replies to :send_iq from internal modules
Unclear exactly why, but replies to some queries to local modules would
be discarded by stanza_router. This appears to fix it.
2020-03-22 22:32:26 +01:00
Kim Alvefur
3db27c3696 core.moduleapi: Hook correct event type in some cases
In rare cases, module.host can be a bare JID, in which case this test
did the wrong thing.
2020-01-16 16:30:26 +01:00
Kim Alvefur
adc4440fd8 core.moduleapi: Rename local name for util.error for consistency
It's called 'errors' everywhere else except here.
2019-12-30 09:54:49 +01:00
Kim Alvefur
cdd6144dcc core.moduleapi: Fix error context in :send_iq API
It got passed as argument to reject() instead of the util.error
function and was lost.
2019-12-30 09:53:10 +01:00
Kim Alvefur
e0125bcb4c core.moduleapi: Restructure send_iq method for more atomic cleanup
All cleanup in one spot instead of two, and at the end which fits with
cleanup happening afterwards.
2019-08-21 23:18:08 +02:00
Kim Alvefur
2dd7b57175 core.moduleapi: Uppercase "IQ stanza" for consistency
It's written like that elsewhere in the send_iq method
2019-08-21 23:15:05 +02:00
Matthew Wild
36ad587977 moduleapi: Log suppressed status priority and message when not overriding 2019-03-26 17:22:56 +00:00
Matthew Wild
3616d69edb moduleapi: Remove overly-verbose debug logging on module status change 2019-03-26 17:22:25 +00:00
Matthew Wild
23577330fd moduleapi: New API for modules to set a status 2019-03-19 09:04:40 +00:00
Kim Alvefur
a89dd30b7e core.moduleapi: Use convenience function for creating error object from stanza 2018-12-30 20:35:20 +01:00
Kim Alvefur
f102941562 core.moduleapi: Use util.error for :send_iq errors 2018-12-30 16:03:15 +01:00
Kim Alvefur
0fe56344ca core.moduleapi: Move util imports to top 2018-12-30 14:26:58 +01:00
Kim Alvefur
f017415def core.moduleapi: Add a promise-based API for tracking IQ stanzas (fixes #714) 2018-12-28 20:51:31 +01:00
Kim Alvefur
c899c8d357 moduleapi: Use pack from util.table 2018-12-08 16:35:00 +01:00
Kim Alvefur
fb6abdb161 moduleapi: Prevent loading disabled module as dependency of enabled one
Explicitly disabled module should stay disabled.
2018-10-25 17:11:10 +02:00
Kim Alvefur
2de254acf7 core.moduleapi: Remove redundant condition 2018-10-18 00:49:29 +02:00
Matthew Wild
10fe4432f4 moduleapi: Remove multiple-parameters feature from module:shared()
Multiple paths are rarely used, and leads to less clear code than just
calling module:shared() once per shared table. It also prevents us from
extending the API with new parameters in the future.
2018-08-08 08:19:01 +01:00
Kim Alvefur
c86e5f565c moduleapi: Use :send API from :broadcast for compactness 2018-07-14 21:25:34 +02:00
Kim Alvefur
b58c44e43a moduleapi: Lazy-load statsmanager on demand 2018-07-07 21:55:18 +02:00
Kim Alvefur
5884db59cc moduleapi: Lazy-load configmanager on demand simplify dependency graph 2018-07-07 21:55:00 +02:00
Kim Alvefur
61c6bb76de moduleapi: Remove unused and undocumented :has_feature and :has_identity 2018-02-23 17:11:59 +01:00
Kim Alvefur
9526273a1b moduleapi: Warn if a module being loaded as a dependency has been disabled 2017-12-27 00:42:57 +01:00
Kim Alvefur
3e5d5895f9 Merge 0.10->trunk 2017-03-16 23:49:27 +01:00
Kim Alvefur
911bea7746 core.moduleapi: Factor out code for getting a scalar config option 2017-03-15 15:07:16 +01:00
Kim Alvefur
ca65f0d2d3 Merge 0.10->trunk 2017-03-06 01:14:32 +01:00
Kim Alvefur
1ecc3a7918 core: Split some very long lines [luacheck] 2017-03-04 17:49:48 +01:00
Matthew Wild
37913e5ce8 Merge 0.10->trunk 2016-08-31 16:25:21 +01:00
Matthew Wild
e2dbea53b4 moduleapi: 'duration' became 'times' 2016-08-31 16:10:16 +01:00
Kim Alvefur
b22eef35d7 Merge 0.10->trunk 2016-04-07 13:36:58 +02:00
Kim Alvefur
bb95b569ef moduleapi: Allow an origin session to be passed to module:send() 2016-04-06 21:29:30 +02:00
Kim Alvefur
03bec1a290 Merge 0.10->trunk 2016-02-18 15:00:17 +01:00
Kim Alvefur
e349fb9c87 loggingmanager,modulemanager,moduleapi: Ignore warning about accessing _G.unpack [luacheck] 2016-02-18 14:57:51 +01:00
Kim Alvefur
bad300a675 loggingmanager,modulemanager,moduleapi: Localize unpack compatible with Lua 5.2+ 2016-02-18 14:57:04 +01:00
Matthew Wild
ee4541c4d8 moduleapi: Silence luacheck warning about unused 'id' parameter 2016-02-05 00:10:27 +00:00