Skip to content

Instantly share code, notes, and snippets.

View hickinbottoms's full-sized avatar

Stuart Hickinbottom hickinbottoms

View GitHub Profile
@hickinbottoms
hickinbottoms / restic-snapshot-exporter.sh
Last active September 1, 2021 20:33
Prometheus exporter for restic snapshot age
#!/bin/bash
# get current time to be used to compute age
NOW_SECONDS=$(date '+%s')
JSONDIR="/var/lib/restic-snapshot-dump"
PROMDIR="/var/lib/node_exporter"
# following will be replaced with actual restic snapshots command
for JSONFILE in "${JSONDIR}"/*.json; do