Redis TTL monitoring and alerting Service
The Service to monitor Redis keys created without any Time To Live (TTL) and alerts based on different configurations provided by different teams.
Note:
NOT FOR PRODUCTION ENVIRONMENTS. Preferred only on Testing/Staging environments.
Motivation
To stop or try to alert developers before persisting keys to Redis with no TTL.
Most of the time, the reason will be keys with no Time to live(TTL). That means, the data exists forever until we delete it explicitly.
How to use
- Duplicate
env.sample
file and fill with values. - Move this file to
services
folder. - Run
sh run_from_bash.sh
How it works
- Crontab runs once a day. Can be configured in the file called
crontab
. - Each file in
services
folder is picked. - Evaluate TTL missing keys based on configuration.
- Notify teams about the TTL missing keys.
Run Using Docker
- docker build --build-arg env_host=hostname --build-arg env_port=30363 -t redis-ttl-missing-alert-service.
- docker run redis-ttl-missing-alert-service:latest
Start Container Using Docker
docker build --build-arg env_host=hostname --build-arg env_port=30363 -t redis-ttl-missing-alert-service.
docker container create redis-ttl-missing-alert-service:latest
docker start #container_name
Top comments (0)