An open API service indexing awesome lists of open source software.

https://github.com/jwplayer/rssalertbot

RSS alert feed monitoring program
https://github.com/jwplayer/rssalertbot

devops

Last synced: 10 months ago
JSON representation

RSS alert feed monitoring program

Awesome Lists containing this project

README

          

# Repository Status: Maintenance Mode

As of 17 October 2024, this repository is now in maintenance mode.

No further active development is planned, and the repository will remain available in its current state. We appreciate your support and contributions over time.

## rssalertbot

This program is a basic RSS alert feed monitoring program. It will fetch feeds,
and then alert via various means for any entries newer than the previous
run. Currently it supports alerting via [Slack](https://slack.com/), and
email.

### Configuring

Create a file named `config.yaml`, with at the minimum, an entry in "outputs"
and at least one in "feedgroups":

```
outputs:
log:
enabled: True
email:
enabled: false
from: feedbot@yourdomain.com
to: alerts@yourdomain.com
server: smtp.yourdomain.com
slack:
channel: #alerts
enabled: true
token: its-a-secret

feedgroups:
- name: DataDog
feeds:
- name: DataDog
url: http://status.datadoghq.com/history.rss
```

See the examples directory for more details.

### Running

```
rssalertbot --config config.yaml
```