mod_pubsub_alertmanager/README.md
changeset 5489 67190744b1eb
parent 4628 eba7e68120d8
--- 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";
+    };
+}
+```