https://github.com/jonfairbanks/pushbullet-url_monitor
Monitors URL endpoint & sends a Pushbullet notification if unavailable
https://github.com/jonfairbanks/pushbullet-url_monitor
crontab email-notification monitor notifications pushbullet pushbullet-notifications pushbullet-url-monitor
Last synced: 5 months ago
JSON representation
Monitors URL endpoint & sends a Pushbullet notification if unavailable
- Host: GitHub
- URL: https://github.com/jonfairbanks/pushbullet-url_monitor
- Owner: jonfairbanks
- Created: 2015-08-04T03:34:47.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-08-03T08:34:07.000Z (almost 8 years ago)
- Last Synced: 2025-01-11T01:40:20.705Z (6 months ago)
- Topics: crontab, email-notification, monitor, notifications, pushbullet, pushbullet-notifications, pushbullet-url-monitor
- Language: Shell
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pushbullet-url_monitor
Basic shell script to monitor a URL endpoint & send a Pushbullet notification if unavailable.
### Setup
Create a temp file for logging (will be handled automatically in a later release):
```
sudo touch /var/log/pushbullet-url_monitor.log
```You can also run this script on a schedule with cron! Setup using 'crontab -e' to edit & 'crontab -l' to verify.
Example crontab to run script every 1 minute:
```
* * * * * sudo /bin/bash /home//pushbullet-url_monitor.sh
```### Changelog
- v1: Initial Commit
- v1.2: Added timestamp & logging
- v1.3: Added a separate script to send notifications via email instead of through Pushbullet