tkdhanasekar
tkdhanasekar

Reputation: 63

how to get resolved alerts in email notification in prometheus alert manager

i had my prometheus setup and prometheus alert manager configured , when a alert is resolved how to get notification on resolved alerts in email at present only alerting the particular cpu , memory , hdd value is exceeding but when the values comes to OK status , i need to get notification in email , is that possible , any clues to resolve this issue

Upvotes: 1

Views: 2473

Answers (1)

tkdhanasekar
tkdhanasekar

Reputation: 63

open the file and add the parameter like below,

$ vim /path_to/alertmanager/alertmanager.yml
send_resolved: true

Now save and exit

$ sudo sytemctl restart alertmanager.service

This will do the job

Upvotes: 3

Related Questions