add option in numeric-value

This commit is contained in:
qgarnier 2017-08-29 13:31:46 +02:00
parent b604eacdd7
commit b00b06f431
1 changed files with 12 additions and 1 deletions

View File

@ -41,6 +41,7 @@ sub new {
"warning:s" => { name => 'warning' },
"critical:s" => { name => 'critical' },
"format:s" => { name => 'format' },
"format-custom:s" => { name => 'format_custom' },
"format-scale" => { name => 'format_scale' },
"format-scale-type:s" => { name => 'format_scale_type' },
"perfdata-unit:s" => { name => 'perfdata_unit' },
@ -83,7 +84,8 @@ sub add_data {
$self->{output}->option_exit();
}
foreach (['oid_type', 'gauge'], ['counter_per_seconds'], ['format', 'current value is %s'], ['format_scale'],
foreach (['oid_type', 'gauge'], ['counter_per_seconds'], ['format', 'current value is %s'],
['format_custom', ''], ['format_scale'],
['perfdata_unit', ''], ['perfdata_name', 'value'],
['perfdata_min', ''], ['perfdata_max', '']) {
if (defined($options{data}->{$_->[0]})) {
@ -172,6 +174,10 @@ sub check_data {
}
}
if ($options{entry}->{format_custom} ne '') {
$value = eval "$value $options{entry}->{format_custom}";
}
my $exit = $self->{perfdata}->threshold_check(value => $value,
threshold => [ { label => 'critical-' . $options{num}, exit_litteral => 'critical' }, { label => 'warning-' . $options{num}, exit_litteral => 'warning' } ]);
if (defined($options{entry}->{format_scale})) {
@ -255,6 +261,11 @@ Convert counter value on a value per seconds (only with type 'counter').
Output format (Default: 'current value is %s')
=item B<--format-custom>
Apply a custom change on the value
(Example to multiply the value: --format-custom='* 8').
=item B<--format-scale>
Scale bytes value. We'll display value in output.