From 4bd798f0ad5eda67a309d3b2df95145b6243e571 Mon Sep 17 00:00:00 2001 From: Paul Wilde Date: Mon, 24 Jun 2024 10:22:27 +0100 Subject: [PATCH] alpha ordered dispatch monitor hook names (including loki) --- borgmatic/hooks/dispatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgmatic/hooks/dispatch.py b/borgmatic/hooks/dispatch.py index 93cae9c..d41ebab 100644 --- a/borgmatic/hooks/dispatch.py +++ b/borgmatic/hooks/dispatch.py @@ -23,6 +23,7 @@ HOOK_NAME_TO_MODULE = { 'cronhub': cronhub, 'cronitor': cronitor, 'healthchecks': healthchecks, + 'loki': loki, 'mariadb_databases': mariadb, 'mongodb_databases': mongodb, 'mysql_databases': mysql, @@ -30,7 +31,6 @@ HOOK_NAME_TO_MODULE = { 'pagerduty': pagerduty, 'postgresql_databases': postgresql, 'sqlite_databases': sqlite, - 'loki': loki, 'uptimekuma': uptimekuma, }