Skip to content

Commit 413b1ce

Browse files
authored
Add healthchecks docs. (#10)
- Added healthchecks.io notificator docs; - fix gobackup/gobackup#251
1 parent 6c65670 commit 413b1ce

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

pages/configuration/databases/mssql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Tab, Tabs } from 'nextra-theme-docs';
88

99
> Since: v2.2.0
1010
11-
GoBackup uses [SqlPackage](https://learn.microsoft.com/en-us/sql/tools/sqlpackage/sqlpackage) to export Microsoft SQL Server database into a `.sql` file.
11+
GoBackup uses [SqlPackage](https://learn.microsoft.com/en-us/sql/tools/sqlpackage/sqlpackage) to export Microsoft SQL Server database into a `.bacpac` file.
1212

1313
## Install tool
1414

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Healthchecks
2+
3+
> Since: 2.15.0
4+
5+
[Healthchecks](https://healthchecks.io/) is a simple and effective cron job monitoring
6+
7+
Notifications can be sent on both `success` and `failure`. Healthchecks can reduce the number of messages if users
8+
need to manage multiple backups while keeping active success notifications.
9+
10+
User can follow [Configuring checks](https://healthchecks.io/docs/configuring_checks/) and
11+
[Configuring notifications](https://healthchecks.io/docs/configuring_notifications/) docs to setup healthchecks.
12+
13+
## Configuration
14+
15+
```yml
16+
models:
17+
my_app:
18+
storages:
19+
local:
20+
type: local
21+
keep: 10
22+
notifiers:
23+
healthchecks:
24+
type: healthchecks
25+
url: https://healthchecks.domain.tld/ping/uuid
26+
on_success: true
27+
```

0 commit comments

Comments
 (0)