Mercurial > prosody-modules
diff mod_pubsub_alertmanager/README.md @ 5485:67190744b1eb
mod_pubsub_alertmanager: Support for per-path config overrides
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 23 May 2023 19:40:38 +0100 |
parents | eba7e68120d8 |
children |
line wrap: on
line diff
--- a/mod_pubsub_alertmanager/README.md Thu May 18 21:11:13 2023 +0200 +++ b/mod_pubsub_alertmanager/README.md Tue May 23 19:40:38 2023 +0100 @@ -93,3 +93,21 @@ `alertmanager_node_template` : Template for the pubsub node name, defaults to `"{path?alerts}"` + +`alertmanager_path_configs` +: Per-path configuration variables (see below). + +### Per-path configuration + +It's possible to override configuration options based on the path suffix. For +example, if a request is made to `http://prosody/pubsub_alertmanager/foo` the +path suffix is `foo`. You can then supply the following configuration: + +``` lua +alertmanager_path_configs = { + foo = { + node_template = "alerts/{alert.labels.severity}"; + publisher = "user@example.net"; + }; +} +```