File tree 4 files changed +34
-0
lines changed
4 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,23 @@ There are three required variables you need to set:
10
10
* ` backup_smb_user ` : the user that will access the backup cloud
11
11
* ` backup_smb_password ` : the password for this user
12
12
* ` backup_script ` : The shell commands to run for creating a backup
13
+ * ` backup_metrics_path ` : Write Prometheus metrics about updates to this file
13
14
14
15
Have a look at the [ defaults] ( defaults/main.yml ) to see all variables and how to set them.
15
16
16
17
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
+
17
30
## Example Playbook
18
31
19
32
Your playbook, could look like this:
@@ -29,6 +42,7 @@ Your playbook, could look like this:
29
42
backup_script : |
30
43
FILENAME="{{ backup_mountpoint }}/$(date '+%Y%m%d-%H%M%S').sql.gz"
31
44
mysqldump -u root dbname | gzip > "${FILENAME}"
45
+ backup_metrics_path : /var/lib/nginx/backup/metrics
32
46
` ` `
33
47
34
48
## License
Original file line number Diff line number Diff line change @@ -29,3 +29,6 @@ backup_cleanup: >-
29
29
-mindepth 2
30
30
-mtime "+{{ backup_keep_days }}"
31
31
-exec rm -rfv '{}' \;
32
+
33
+ # # Path for backup metrics
34
+ backup_metrics_path : " "
Original file line number Diff line number Diff line change 59
59
- backup.timer
60
60
notify : Restart backup
61
61
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
+
62
73
- name : Start backup timer
63
74
ansible.builtin.service :
64
75
name : backup.timer
Original file line number Diff line number Diff line change 3
3
set -eux
4
4
5
5
{{ 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 %}
You can’t perform that action at this time.
0 commit comments