035bcbba47
- Provided the delete metrics tool - Provided instructions for tool in devStackGSG.rst Change-Id: I7921687c2ebde4a90a1a101c39d1f1561b90b5d9
9 lines
295 B
Bash
Executable File
9 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "All gnocchi plugin metrics are being deleted. This may take a few minutes.."
|
|
for metric in `openstack metric metric list | awk 'NR > 2 {print $2}'`;
|
|
do
|
|
openstack metric metric delete $metric
|
|
done
|
|
echo "All metrics created by the collectd-gnocchi-plugin have been deleted"
|