enh(plugin)review-option-name
This commit is contained in:
parent
d22cc245ad
commit
1b2d6d6ca5
|
@ -161,7 +161,7 @@ sub new {
|
||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$options{options}->add_options(arguments => {
|
$options{options}->add_options(arguments => {
|
||||||
'volumeid:s@' => { name => 'volume_id' },
|
'volume-id:s@' => { name => 'volume_id' },
|
||||||
'per-sec' => { name => 'per_sec' },
|
'per-sec' => { name => 'per_sec' },
|
||||||
'filter-metric:s' => { name => 'filter_metric' }
|
'filter-metric:s' => { name => 'filter_metric' }
|
||||||
});
|
});
|
||||||
|
|
|
@ -189,7 +189,7 @@ sub new {
|
||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$options{options}->add_options(arguments => {
|
$options{options}->add_options(arguments => {
|
||||||
'volumeid:s@' => { name => 'volume_id' },
|
'volume-id:s@' => { name => 'volume_id' },
|
||||||
'per-sec' => { name => 'per_sec' },
|
'per-sec' => { name => 'per_sec' },
|
||||||
'filter-metric:s' => { name => 'filter_metric' }
|
'filter-metric:s' => { name => 'filter_metric' }
|
||||||
});
|
});
|
||||||
|
|
|
@ -29,19 +29,25 @@ my %metrics_mapping = (
|
||||||
'VolumeTotalReadTime' => {
|
'VolumeTotalReadTime' => {
|
||||||
'output' => 'Total Read Time',
|
'output' => 'Total Read Time',
|
||||||
'label' => 'total-read-time',
|
'label' => 'total-read-time',
|
||||||
'nlabel' => { 'absolute' => 'ebs.volume.totalread.time.second' },
|
'nlabel' => {
|
||||||
|
'absolute' => 'ebs.volume.totalread.time.second'
|
||||||
|
},
|
||||||
'unit' => 's'
|
'unit' => 's'
|
||||||
},
|
},
|
||||||
'VolumeTotalWriteTime' => {
|
'VolumeTotalWriteTime' => {
|
||||||
'output' => 'Total Write Time',
|
'output' => 'Total Write Time',
|
||||||
'label' => 'total-write-time',
|
'label' => 'total-write-time',
|
||||||
'nlabel' => { 'absolute' => 'ebs.volume.totalwrite.time.second' },
|
'nlabel' => {
|
||||||
|
'absolute' => 'ebs.volume.totalwrite.time.second'
|
||||||
|
},
|
||||||
'unit' => 's'
|
'unit' => 's'
|
||||||
},
|
},
|
||||||
'VolumeIdleTime' => {
|
'VolumeIdleTime' => {
|
||||||
'output' => 'Idle Time',
|
'output' => 'Idle Time',
|
||||||
'label' => 'idle-time',
|
'label' => 'idle-time',
|
||||||
'nlabel' => { 'absolute' => 'ebs.volume.idle.time.second' },
|
'nlabel' => {
|
||||||
|
'absolute' => 'ebs.volume.idle.time.second'
|
||||||
|
},
|
||||||
'unit' => 's',
|
'unit' => 's',
|
||||||
'display_percent' => 1
|
'display_percent' => 1
|
||||||
}
|
}
|
||||||
|
@ -154,7 +160,7 @@ sub new {
|
||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$options{options}->add_options(arguments => {
|
$options{options}->add_options(arguments => {
|
||||||
'volumeid:s@' => { name => 'volume_id' },
|
'volume-id:s@' => { name => 'volume_id' },
|
||||||
'filter-metric:s' => { name => 'filter_metric' }
|
'filter-metric:s' => { name => 'filter_metric' }
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue