我想监视我的简单 bash 脚本以备份 cassandra,所以这是我的脚本
!/bin/bash
### Check for incomplete backups
if medusa list-backups | grep Incomplete
then
echo cassandra_backup_status{status='"success"'} 0 > /var/lib/node_exporter/textfile_collector/cassandra_backup_status.prom
else
echo "all is ok tho"
fi
所以你可以在这里看到,我使用文本文件收集器,其中 node_exporter 内置,然后我想使用 alertmanager 选择它,比如 cassandra_backup_status =!0; 然后 alert_to_telegram
这种情况对吗?