diff --git a/NEWS b/NEWS index 1c380cfd..fe07f8d4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +1.8.3.dev0 + * #743: Add a monitoring hook for sending backup status and logs to to Grafana Loki. See the + documentation for more information: + https://torsion.org/borgmatic/docs/how-to/monitor-your-backups/#loki-hook + 1.8.2 * #345: Add "key export" action to export a copy of the repository key for safekeeping in case the original goes missing or gets damaged. @@ -6,9 +11,6 @@ only restorable with a "mysql_databases:" configuration. * #738: Fix for potential data loss (data not getting restored) in which the database "restore" action didn't actually restore anything and indicated success anyway. - * #743: Add a monitoring hook for sending backup status and logs to to Grafana Loki. See the - documentation for more information: - https://torsion.org/borgmatic/docs/how-to/monitor-your-backups/#loki-hook * Remove the deprecated use of the MongoDB hook's "--db" flag for database restoration. * Add source code reference documentation for getting oriented with the borgmatic code as a developer: https://torsion.org/borgmatic/docs/reference/source-code/ diff --git a/docs/how-to/monitor-your-backups.md b/docs/how-to/monitor-your-backups.md index be3deb7e..e7f3a2ef 100644 --- a/docs/how-to/monitor-your-backups.md +++ b/docs/how-to/monitor-your-backups.md @@ -273,10 +273,12 @@ us](https://torsion.org/borgmatic/#support-and-contributing). ## ntfy hook -[ntfy](https://ntfy.sh) is a free, simple, service (either hosted or self-hosted) -which offers simple pub/sub push notifications to multiple platforms including -[web](https://ntfy.sh/stats), [Android](https://play.google.com/store/apps/details?id=io.heckel.ntfy) -and [iOS](https://apps.apple.com/us/app/ntfy/id1625396347). +New in version 1.6.3 +[ntfy](https://ntfy.sh) is a free, simple, service (either hosted or +self-hosted) which offers simple pub/sub push notifications to multiple +platforms including [web](https://ntfy.sh/stats), +[Android](https://play.google.com/store/apps/details?id=io.heckel.ntfy) and +[iOS](https://apps.apple.com/us/app/ntfy/id1625396347). Since push notifications for regular events might soon become quite annoying, this hook only fires on any errors by default in order to instantly alert you to issues. @@ -322,8 +324,9 @@ the `ntfy:` option in the `hooks:` section of your configuration. ## Loki hook -[Grafana Loki](https://grafana.com/oss/loki/) is a "horizontally scalable, -highly available, multi-tenant log aggregation system inspired by Prometheus." +New in version 1.8.3 [Grafana +Loki](https://grafana.com/oss/loki/) is a "horizontally scalable, highly +available, multi-tenant log aggregation system inspired by Prometheus." borgmatic has built-in integration with Loki, sending both backup status and borgmatic logs. diff --git a/setup.py b/setup.py index 71836626..c9c16d37 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = '1.8.2' +VERSION = '1.8.3.dev0' setup(