1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 02:18:08 +00:00

snmp__screenos: align for readability.

This commit is contained in:
Diego Elio Pettenò 2012-08-28 16:08:14 -07:00
parent 5cad9514bd
commit 8ca0283cc3

View file

@ -57,15 +57,15 @@ use Munin::Plugin::SNMP;
# This corresponds to NETSCREEN-SMI::netscreenResource
my $oidBase = '1.3.6.1.4.1.3224.16';
my $oidCpuAvg = $oidBase . '.1.1';
my $oidCpuLast1Min = $oidBase . '.1.2';
my $oidCpuLast5Min = $oidBase . '.1.3';
my $oidCpuLast15Min = $oidBase . '.1.4';
my $oidMemAllocate = $oidBase . '.2.1';
my $oidMemLeft = $oidBase . '.2.2';
my $oidSessAllocate = $oidBase . '.3.2';
my $oidSessMaximum = $oidBase . '.3.3';
my $oidSessFailed = $oidBase . '.3.4';
my $oidCpuAvg = "$oidBase.1.1";
my $oidCpuLast1Min = "$oidBase.1.2";
my $oidCpuLast5Min = "$oidBase.1.3";
my $oidCpuLast15Min = "$oidBase.1.4";
my $oidMemAllocate = "$oidBase.2.1";
my $oidMemLeft = "$oidBase.2.2";
my $oidSessAllocate = "$oidBase.3.2";
my $oidSessMaximum = "$oidBase.3.3";
my $oidSessFailed = "$oidBase.3.4";
if (defined $ARGV[0] and $ARGV[0] eq "snmpconf") {
print "require $oidBase.[23].[13].0";