Skip to content

Commit 0598a26

Browse files
committedMar 6, 2025·
Create Prometheus metrics
This patch allows the automation to provide Prometheus metrics exposing the last time a backup succeeded.
1 parent 901b683 commit 0598a26

File tree

4 files changed

+34
-0
lines changed

4 files changed

+34
-0
lines changed
 

‎README.md

+14
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,23 @@ There are three required variables you need to set:
1010
* `backup_smb_user`: the user that will access the backup cloud
1111
* `backup_smb_password`: the password for this user
1212
* `backup_script`: The shell commands to run for creating a backup
13+
* `backup_metrics_path`: Write Prometheus metrics about updates to this file
1314

1415
Have a look at the [defaults](defaults/main.yml) to see all variables and how to set them.
1516

1617

18+
## Prometheus Metrics
19+
20+
The backup automation can create metrics for Prometheus.
21+
The metrics are written to file which can then be exposed via a web server like Apache or Nginx.
22+
The metrics provide the time of the last successful backup.
23+
24+
```openmetrics
25+
# HELP backup_time Time stamp of backup
26+
# TYPE backup_time counter
27+
backup_time 1735876976
28+
```
29+
1730
## Example Playbook
1831

1932
Your playbook, could look like this:
@@ -29,6 +42,7 @@ Your playbook, could look like this:
2942
backup_script: |
3043
FILENAME="{{ backup_mountpoint }}/$(date '+%Y%m%d-%H%M%S').sql.gz"
3144
mysqldump -u root dbname | gzip > "${FILENAME}"
45+
backup_metrics_path: /var/lib/nginx/backup/metrics
3246
```
3347
3448
## License

‎defaults/main.yml

+3
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ backup_cleanup: >-
2929
-mindepth 2
3030
-mtime "+{{ backup_keep_days }}"
3131
-exec rm -rfv '{}' \;
32+
33+
## Path for backup metrics
34+
backup_metrics_path: ""

‎tasks/main.yml

+11
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,17 @@
5959
- backup.timer
6060
notify: Restart backup
6161

62+
- name: Set permissions of backup file
63+
ansible.builtin.file:
64+
path: '{{ backup_metrics_path }}'
65+
state: touch
66+
mode: '0644'
67+
owner: '{{ backup_user }}'
68+
group: '{{ backup_group }}'
69+
modification_time: preserve
70+
access_time: preserve
71+
when: backup_metrics_path != ""
72+
6273
- name: Start backup timer
6374
ansible.builtin.service:
6475
name: backup.timer

‎templates/backup

+6
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@
33
set -eux
44

55
{{ backup_script }}
6+
7+
{% if backup_metrics_path %}
8+
echo '# HELP backup_time Time stamp of backup' > "{{ backup_metrics_path }}"
9+
echo '# TYPE backup_time counter' >> "{{ backup_metrics_path }}"
10+
echo "backup_time $(date +%s)" >> "{{ backup_metrics_path }}"
11+
{% endif %}

0 commit comments

Comments
 (0)