collectd-openstack-plugins/tools/delete_alarms.sh
Helena McGough 10658a9c87 Added a delete tool for alarms
- Provide a tool to delete alarms
  - Updated instructions for deleting alarms
  - Included a reno for this change

Change-Id: If89aeb073e0e0c09480e0838e565ee83b9f8d63e
Partial-Bug: #1672296
2017-05-17 09:44:02 +00:00

9 lines
264 B
Bash

#!/bin/bash
echo "collectd-aodh-plugin alarms are being deleted. This may take a few minutes.."
for alarm in `aodh alarm list | awk 'NR > 2 {print $2}'`;
do
aodh alarm delete $alarm
done
echo "All alarms created by the collectd-aodh plugin have been deleted"