From cba0a7202c8af99d88c3cdda1ea719ddef3b7723 Mon Sep 17 00:00:00 2001 From: Matthew Wong Date: Fri, 20 Oct 2017 12:15:21 -0400 Subject: [PATCH] Update volume operations metric names as implemented --- storage/volume-metrics.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/storage/volume-metrics.md b/storage/volume-metrics.md index 73c0d96c..59c15fb9 100644 --- a/storage/volume-metrics.md +++ b/storage/volume-metrics.md @@ -50,13 +50,13 @@ Following is a sample of metrics (not exhaustive) that will be added by this pro ``` storage_operation_duration_seconds { volume_plugin = "aws-ebs", operation_name = "volume_attach" } storage_operation_duration_seconds { volume_plugin = "aws-ebs", operation_name = "volume_detach" } -storage_operation_duration_seconds { volume_plugin = "glusterfs", operation_name = "provision" } +storage_operation_duration_seconds { volume_plugin = "glusterfs", operation_name = "volume_provision" } storage_operation_duration_seconds { volume_plugin = "gce-pd", operation_name = "volume_delete" } storage_operation_duration_seconds { volume_plugin = "vsphere", operation_name = "volume_mount" } storage_operation_duration_seconds { volume_plugin = "iscsi" , operation_name = "volume_unmount" } -storage_operation_duration_seconds { volume_plugin = "aws-ebs", operation_name = "mount_device" } storage_operation_duration_seconds { volume_plugin = "aws-ebs", operation_name = "unmount_device" } -storage_operation_duration_seconds { volume_plugin = "cinder" , operation_name = "verify_volume" } +storage_operation_duration_seconds { volume_plugin = "cinder" , operation_name = "verify_volumes_are_attached" } +storage_operation_duration_seconds { volume_plugin = "" , operation_name = "verify_volumes_are_attached_per_node" } ``` Similarly errors will be named: @@ -64,13 +64,13 @@ Similarly errors will be named: ``` storage_operation_errors_total { volume_plugin = "aws-ebs", operation_name = "volume_attach" } storage_operation_errors_total { volume_plugin = "aws-ebs", operation_name = "volume_detach" } -storage_operation_errors_total { volume_plugin = "glusterfs", operation_name = "provision" } +storage_operation_errors_total { volume_plugin = "glusterfs", operation_name = "volume_provision" } storage_operation_errors_total { volume_plugin = "gce-pd", operation_name = "volume_delete" } storage_operation_errors_total { volume_plugin = "vsphere", operation_name = "volume_mount" } storage_operation_errors_total { volume_plugin = "iscsi" , operation_name = "volume_unmount" } -storage_operation_errors_total { volume_plugin = "aws-ebs", operation_name = "mount_device" } storage_operation_errors_total { volume_plugin = "aws-ebs", operation_name = "unmount_device" } -storage_operation_errors_total { volume_plugin = "cinder" , operation_name = "verify_volume" } +storage_operation_errors_total { volume_plugin = "cinder" , operation_name = "verify_volumes_are_attached" } +storage_operation_errors_total { volume_plugin = "" , operation_name = "verify_volumes_are_attached_per_node" } ``` ### Implementation Detail