centreon-plugins/storage/hp/lefthand/snmp/mode/components/resources.pm

37 lines
1002 B
Perl
Raw Normal View History

#
2017-01-09 17:12:12 +01:00
# Copyright 2017 Centreon (http://www.centreon.com/)
2015-07-21 11:51:02 +02:00
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
2017-01-26 13:57:28 +01:00
package storage::hp::lefthand::snmp::mode::components::resources;
2013-12-13 16:14:12 +01:00
use strict;
use warnings;
2017-01-26 13:57:28 +01:00
use Exporter;
2013-12-13 16:14:12 +01:00
2017-01-26 13:57:28 +01:00
our $map_status;
2013-12-13 16:14:12 +01:00
2017-01-26 13:57:28 +01:00
our @ISA = qw(Exporter);
our @EXPORT_OK = qw($map_status);
2013-12-13 16:14:12 +01:00
2017-01-26 13:57:28 +01:00
$map_status = {
1 => 'pass',
2 => 'fail',
};
2013-12-13 16:14:12 +01:00
2017-01-26 13:57:28 +01:00
1;