Added support for Exagrid devices (#10496)

* Added new device - Exagrid
* Update and Rename exagridos.inc.php Match Version and HW
This commit is contained in:
NonStop Networks 2019-08-07 13:05:59 -05:00 committed by PipoCanaja
parent 0c9330dc11
commit b8c96abc35
6 changed files with 2975 additions and 0 deletions

BIN
html/images/os/exagrid.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

@ -0,0 +1,14 @@
os: exagridos
text: 'Exagrid'
type: storage
icon: exagrid
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_mempool, text: 'Memory Usage' }
- { graph: device_storage, text: 'Storage Usage' }
mib_dir:
- exagrid
discovery:
- sysDescr:
- 'ExaGrid'

View File

@ -0,0 +1,5 @@
<?php
preg_match('/^ExaGrid ([^,]*), (.*)$/', $device['sysDescr'], $data);
$version = $data[2];
$hardware = $data[1];

353
mibs/exagrid/EXAGRID-MIB Normal file
View File

@ -0,0 +1,353 @@
EXAGRID-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE FROM RFC-1212
TRAP-TYPE FROM RFC-1215
DisplayString FROM RFC1213-MIB
Gauge,
TimeTicks FROM RFC1155-SMI
InternationalDisplayString FROM HOST-RESOURCES-MIB
enterprises FROM SNMPv2-SMI;
exagrid OBJECT IDENTIFIER ::= { enterprises 14941 }
exagridTraps OBJECT IDENTIFIER ::= { exagrid 1 }
egEventParams OBJECT IDENTIFIER ::= { exagrid 2 }
--
-- ExaGrid product lines, series, and device identifiers
--
exagridProductLines OBJECT IDENTIFIER ::= { exagrid 3 }
exagridExX000Series OBJECT IDENTIFIER ::= { exagridProductLines 1 }
exagridExX000 OBJECT IDENTIFIER ::= { exagridExX000Series 0 }
exagridEx1000 OBJECT IDENTIFIER ::= { exagridExX000Series 1 }
exagridEx2000 OBJECT IDENTIFIER ::= { exagridExX000Series 2 }
exagridEx3000 OBJECT IDENTIFIER ::= { exagridExX000Series 3 }
exagridEx4000 OBJECT IDENTIFIER ::= { exagridExX000Series 4 }
exagridEx5000 OBJECT IDENTIFIER ::= { exagridExX000Series 5 }
exagridExGW OBJECT IDENTIFIER ::= { exagridExX000Series 6 }
exagridEx10000E OBJECT IDENTIFIER ::= { exagridExX000Series 10 }
exagridEx1T OBJECT IDENTIFIER ::= { exagridExX000Series 11 }
exagridEx2T OBJECT IDENTIFIER ::= { exagridExX000Series 12 }
exagridEx3T OBJECT IDENTIFIER ::= { exagridExX000Series 13 }
exagridEx4T OBJECT IDENTIFIER ::= { exagridExX000Series 14 }
exagridEx5T OBJECT IDENTIFIER ::= { exagridExX000Series 15 }
exagridEx7T OBJECT IDENTIFIER ::= { exagridExX000Series 16 }
exagridEx9T OBJECT IDENTIFIER ::= { exagridExX000Series 19 }
exagridEx7S OBJECT IDENTIFIER ::= { exagridExX000Series 26 }
exagridEx9S OBJECT IDENTIFIER ::= { exagridExX000Series 29 }
exagridEx1T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 31 }
exagridEx2T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 32 }
exagridEx3T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 33 }
exagridEx4T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 34 }
exagridEx5T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 35 }
exagridEx7T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 36 }
exagridEx7S2012A OBJECT IDENTIFIER ::= { exagridExX000Series 46 }
exagridEx10T OBJECT IDENTIFIER ::= { exagridExX000Series 110 }
exagridEx13T OBJECT IDENTIFIER ::= { exagridExX000Series 113 }
exagridEx10S OBJECT IDENTIFIER ::= { exagridExX000Series 210 }
exagridEx13S OBJECT IDENTIFIER ::= { exagridExX000Series 213 }
exagridEx10T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 310 }
exagridEx13T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 313 }
exagridEx21T2012A OBJECT IDENTIFIER ::= { exagridExX000Series 321 }
exagridEx10S2012A OBJECT IDENTIFIER ::= { exagridExX000Series 410 }
exagridEx13S2012A OBJECT IDENTIFIER ::= { exagridExX000Series 413 }
exagridEx21S2012A OBJECT IDENTIFIER ::= { exagridExX000Series 421 }
--
-- ExaGrid server data
--
exagridServerData OBJECT IDENTIFIER ::= { exagrid 4 }
exagridLandingSpace OBJECT IDENTIFIER ::= { exagridServerData 1 }
exagridRetentionSpace OBJECT IDENTIFIER ::= { exagridServerData 2 }
exagridDeduplicationRatio OBJECT IDENTIFIER ::= { exagridServerData 3 }
exagridPendingDeduplication OBJECT IDENTIFIER ::= { exagridServerData 4 }
exagridPendingReplication OBJECT IDENTIFIER ::= { exagridServerData 5 }
exagridServerStatus OBJECT IDENTIFIER ::= { exagridServerData 6 }
egLandingSpaceConfiguredWholeGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of configured landing space scaled to GigaBytes (10^9) bytes"
::= { exagridLandingSpace 1 }
egLandingSpaceConfiguredFractionalGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of configured landing space below 1 Gigabyte in bytes"
::= { exagridLandingSpace 2 }
egLandingSpaceAvailableWholeGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of available landing space scaled to GigaBytes (10^9) bytes"
::= { exagridLandingSpace 3 }
egLandingSpaceAvailableFractionalGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of available landing space below 1 Gigabyte in bytes"
::= { exagridLandingSpace 4 }
egRetentionSpaceConfiguredWholeGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of configured retention space scaled to GigaBytes (10^9) bytes"
::= { exagridRetentionSpace 1 }
egRetentionSpaceConfiguredFractionalGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of configured retention space below 1 Gigabyte in bytes"
::= { exagridRetentionSpace 2 }
egRetentionSpaceAvailableWholeGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of available retention space scaled to GigaBytes (10^9) bytes"
::= { exagridRetentionSpace 3 }
egRetentionSpaceAvailableFractionalGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of available retention space below 1 Gigabyte in bytes"
::= { exagridRetentionSpace 4 }
egBackupDataAvailableWholeGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of data available for restore by a backup application scaled to GigaBytes (10^9) bytes"
::= { exagridDeduplicationRatio 1 }
egBackupDataAvailableFractionalGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of data available for restore by a backup application below 1 Gigabyte in bytes"
::= { exagridDeduplicationRatio 2 }
egBackupDataSpaceConsumedWholeGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of consumed retention space scaled to GigaBytes (10^9) bytes"
::= { exagridDeduplicationRatio 3 }
egBackupDataSpaceConsumedFractionalGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of consumed retention space below 1 Gigabyte in bytes"
::= { exagridDeduplicationRatio 4 }
egPendingDeduplicationWholeGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of data not yet deduplicated scaled to GigaBytes (10^9) bytes"
::= { exagridPendingDeduplication 1 }
egPendingDeduplicationFractionalGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of data not yet deduplicated below 1 Gigabyte in bytes"
::= { exagridPendingDeduplication 2 }
egPendingDeduplicationAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of time that data has been available for deduplication, but has not yet been deduplicated"
::= { exagridPendingDeduplication 3 }
egPendingReplicationWholeGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of data that has not yet completed replication scaled to GigaBytes (10^9) bytes"
::= { exagridPendingReplication 1 }
egPendingReplicationFractionalGigabytes OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of data that has not yet completed replication below 1 Gigabyte in bytes"
::= { exagridPendingReplication 2 }
egPendingReplicationAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of time that data has been available for replication, but has not yet been replicated"
::= { exagridPendingReplication 3 }
egServerAlarmState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Current alarm state of the server.
1 Server has no alarms
2 Server is in a Warning Alarm State
3 Server is in an Error Alarm State"
::= { exagridServerStatus 1 }
--
-- egEventParams
--
egEventParamsName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Event Name"
::= { egEventParams 1 }
egEventParamsId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Event Id"
::= { egEventParams 2 }
egEventParamsCreateTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Event Creation Time"
::= { egEventParams 3 }
egEventParamsCreateTimeRaw OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Event Creation Time (milliseconds)"
::= { egEventParams 4 }
egEventParamsGridName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Name of the Grid for the device originating the event"
::= { egEventParams 5 }
egEventParamsSiteName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Name of the Site for the device originating the event"
::= { egEventParams 6 }
egEventParamsSiteId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Id of the Site for the device originating the event"
::= { egEventParams 7 }
egEventParamsSeverity OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Event Severity"
::= { egEventParams 8 }
egEventParamsDeviceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Name of the device originating the event"
::= { egEventParams 9 }
egEventParamsDeviceId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Id of the device originating the event"
::= { egEventParams 10 }
egEventParamsDeviceSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Name of the device originating the event"
::= { egEventParams 11 }
egEventParamsDeviceIp OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the device originating the event"
::= { egEventParams 12 }
egEventParamsDupCount OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The count of recently generated duplicates of this event"
::= { egEventParams 13 }
egEventParamsText OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The short description for the event"
::= { egEventParams 14 }
egEventParamsDetail OBJECT-TYPE
SYNTAX InternationalDisplayString (SIZE (0..999))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The long description for the event"
::= { egEventParams 15 }
--
-- Trap Definitions
--
egTrap TRAP-TYPE
ENTERPRISE exagridTraps
VARIABLES {
egEventParamsName,
egEventParamsId,
egEventParamsCreateTime,
egEventParamsCreateTimeRaw,
egEventParamsGridName,
egEventParamsSiteName,
egEventParamsSiteId,
egEventParamsSeverity,
egEventParamsDeviceName,
egEventParamsDeviceId,
egEventParamsDeviceIp,
egEventParamsDeviceSerialNumber,
egEventParamsDupCount,
egEventParamsText,
egEventParamsDetail
}
DESCRIPTION
"An event of note has been posted"
::= 1
END

2245
tests/data/exagridos.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,358 @@
1.3.6.1.2.1.1.1.0|4|ExaGrid EX40000E-SEC, 4.8.1.1209.P60
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14941.3.1.840
1.3.6.1.2.1.1.3.0|67|44673205
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|eth4
1.3.6.1.2.1.2.2.1.2.3|4|eth5
1.3.6.1.2.1.2.2.1.2.4|4|eth2
1.3.6.1.2.1.2.2.1.2.5|4|eth3
1.3.6.1.2.1.2.2.1.2.6|4|eth0
1.3.6.1.2.1.2.2.1.2.7|4|eth1
1.3.6.1.2.1.2.2.1.2.8|4|bond0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.3.6|2|6
1.3.6.1.2.1.2.2.1.3.7|2|6
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|9000
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|9000
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.8|2|9000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4x|90E2BA9B9214
1.3.6.1.2.1.2.2.1.6.3|4x|90E2BA9B9215
1.3.6.1.2.1.2.2.1.6.4|4x|0CC47AD97AF8
1.3.6.1.2.1.2.2.1.6.5|4x|0CC47A8698AF
1.3.6.1.2.1.2.2.1.6.6|4x|0CC47AD97AF8
1.3.6.1.2.1.2.2.1.6.7|4x|0CC47AD97AF9
1.3.6.1.2.1.2.2.1.6.8|4x|0CC47AD97AF8
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|2
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|2
1.3.6.1.2.1.2.2.1.7.8|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|2
1.3.6.1.2.1.2.2.1.8.6|2|1
1.3.6.1.2.1.2.2.1.8.7|2|2
1.3.6.1.2.1.2.2.1.8.8|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.13.6|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.14.6|65|0
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.25.2.2.0|2|65862740
1.3.6.1.2.1.25.2.3.1.1.1|2|1
1.3.6.1.2.1.25.2.3.1.1.3|2|3
1.3.6.1.2.1.25.2.3.1.1.6|2|6
1.3.6.1.2.1.25.2.3.1.1.7|2|7
1.3.6.1.2.1.25.2.3.1.1.10|2|10
1.3.6.1.2.1.25.2.3.1.1.31|2|31
1.3.6.1.2.1.25.2.3.1.1.35|2|35
1.3.6.1.2.1.25.2.3.1.1.39|2|39
1.3.6.1.2.1.25.2.3.1.1.41|2|41
1.3.6.1.2.1.25.2.3.1.1.42|2|42
1.3.6.1.2.1.25.2.3.1.1.43|2|43
1.3.6.1.2.1.25.2.3.1.1.44|2|44
1.3.6.1.2.1.25.2.3.1.1.46|2|46
1.3.6.1.2.1.25.2.3.1.1.47|2|47
1.3.6.1.2.1.25.2.3.1.1.48|2|48
1.3.6.1.2.1.25.2.3.1.1.49|2|49
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.35|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.39|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.41|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.42|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.43|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.44|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.46|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.47|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.48|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.49|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
1.3.6.1.2.1.25.2.3.1.3.31|4|/
1.3.6.1.2.1.25.2.3.1.3.35|4|/dev/shm
1.3.6.1.2.1.25.2.3.1.3.39|4|/home1
1.3.6.1.2.1.25.2.3.1.3.41|4|/mnt/egram
1.3.6.1.2.1.25.2.3.1.3.42|4|/export/NFS-nsnauto01
1.3.6.1.2.1.25.2.3.1.3.43|4|/export/NFS
1.3.6.1.2.1.25.2.3.1.3.44|4|/isys/chroot/veeamagent/var/log
1.3.6.1.2.1.25.2.3.1.3.46|4|/isys/chroot/veeamagent/cgroup/memory
1.3.6.1.2.1.25.2.3.1.3.47|4|/isys/chroot/veeamagent/home1/cow
1.3.6.1.2.1.25.2.3.1.3.48|4|/isys/chroot/veeamagent/home/veeam/vcc.villageshalom
1.3.6.1.2.1.25.2.3.1.3.49|4|/isys/chroot/veeamagent/home/veeam/VEEAM
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
1.3.6.1.2.1.25.2.3.1.4.31|2|4096
1.3.6.1.2.1.25.2.3.1.4.35|2|4096
1.3.6.1.2.1.25.2.3.1.4.39|2|65536
1.3.6.1.2.1.25.2.3.1.4.41|2|4096
1.3.6.1.2.1.25.2.3.1.4.42|2|65536
1.3.6.1.2.1.25.2.3.1.4.43|2|65536
1.3.6.1.2.1.25.2.3.1.4.44|2|4096
1.3.6.1.2.1.25.2.3.1.4.46|2|4096
1.3.6.1.2.1.25.2.3.1.4.47|2|65536
1.3.6.1.2.1.25.2.3.1.4.48|2|65536
1.3.6.1.2.1.25.2.3.1.4.49|2|65536
1.3.6.1.2.1.25.2.3.1.5.1|2|65862740
1.3.6.1.2.1.25.2.3.1.5.3|2|130120784
1.3.6.1.2.1.25.2.3.1.5.6|2|65862740
1.3.6.1.2.1.25.2.3.1.5.7|2|61882684
1.3.6.1.2.1.25.2.3.1.5.10|2|64258044
1.3.6.1.2.1.25.2.3.1.5.31|2|36612746
1.3.6.1.2.1.25.2.3.1.5.35|2|8232842
1.3.6.1.2.1.25.2.3.1.5.39|2|1186974880
1.3.6.1.2.1.25.2.3.1.5.41|2|2359296
1.3.6.1.2.1.25.2.3.1.5.42|2|1186974880
1.3.6.1.2.1.25.2.3.1.5.43|2|1186974880
1.3.6.1.2.1.25.2.3.1.5.44|2|36612746
1.3.6.1.2.1.25.2.3.1.5.46|2|0
1.3.6.1.2.1.25.2.3.1.5.47|2|1186974880
1.3.6.1.2.1.25.2.3.1.5.48|2|1186974880
1.3.6.1.2.1.25.2.3.1.5.49|2|1186974880
1.3.6.1.2.1.25.2.3.1.6.1|2|64880212
1.3.6.1.2.1.25.2.3.1.6.3|2|64918820
1.3.6.1.2.1.25.2.3.1.6.6|2|35220
1.3.6.1.2.1.25.2.3.1.6.7|2|61882684
1.3.6.1.2.1.25.2.3.1.6.10|2|38608
1.3.6.1.2.1.25.2.3.1.6.31|2|2374794
1.3.6.1.2.1.25.2.3.1.6.35|2|2059044
1.3.6.1.2.1.25.2.3.1.6.39|2|310285970
1.3.6.1.2.1.25.2.3.1.6.41|2|0
1.3.6.1.2.1.25.2.3.1.6.42|2|310285970
1.3.6.1.2.1.25.2.3.1.6.43|2|310285970
1.3.6.1.2.1.25.2.3.1.6.44|2|2374794
1.3.6.1.2.1.25.2.3.1.6.46|2|0
1.3.6.1.2.1.25.2.3.1.6.47|2|310285970
1.3.6.1.2.1.25.2.3.1.6.48|2|310285970
1.3.6.1.2.1.25.2.3.1.6.49|2|310285970
1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196609|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196610|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196611|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196612|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196613|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196614|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196615|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196616|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196617|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196618|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196619|6|0.0
1.3.6.1.2.1.25.3.3.1.2.196608|2|1
1.3.6.1.2.1.25.3.3.1.2.196609|2|1
1.3.6.1.2.1.25.3.3.1.2.196610|2|1
1.3.6.1.2.1.25.3.3.1.2.196611|2|1
1.3.6.1.2.1.25.3.3.1.2.196612|2|1
1.3.6.1.2.1.25.3.3.1.2.196613|2|1
1.3.6.1.2.1.25.3.3.1.2.196614|2|1
1.3.6.1.2.1.25.3.3.1.2.196615|2|1
1.3.6.1.2.1.25.3.3.1.2.196616|2|2
1.3.6.1.2.1.25.3.3.1.2.196617|2|1
1.3.6.1.2.1.25.3.3.1.2.196618|2|1
1.3.6.1.2.1.25.3.3.1.2.196619|2|1
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
1.3.6.1.2.1.31.1.1.1.1.2|4|eth4
1.3.6.1.2.1.31.1.1.1.1.3|4|eth5
1.3.6.1.2.1.31.1.1.1.1.4|4|eth2
1.3.6.1.2.1.31.1.1.1.1.5|4|eth3
1.3.6.1.2.1.31.1.1.1.1.6|4|eth0
1.3.6.1.2.1.31.1.1.1.1.7|4|eth1
1.3.6.1.2.1.31.1.1.1.1.8|4|bond0
1.3.6.1.2.1.31.1.1.1.2.1|65|0
1.3.6.1.2.1.31.1.1.1.2.2|65|0
1.3.6.1.2.1.31.1.1.1.2.3|65|0
1.3.6.1.2.1.31.1.1.1.2.4|65|18879
1.3.6.1.2.1.31.1.1.1.2.5|65|0
1.3.6.1.2.1.31.1.1.1.2.6|65|17788
1.3.6.1.2.1.31.1.1.1.2.7|65|0
1.3.6.1.2.1.31.1.1.1.2.8|65|36667
1.3.6.1.2.1.31.1.1.1.3.1|65|0
1.3.6.1.2.1.31.1.1.1.3.2|65|0
1.3.6.1.2.1.31.1.1.1.3.3|65|0
1.3.6.1.2.1.31.1.1.1.3.4|65|0
1.3.6.1.2.1.31.1.1.1.3.5|65|0
1.3.6.1.2.1.31.1.1.1.3.6|65|0
1.3.6.1.2.1.31.1.1.1.3.7|65|0
1.3.6.1.2.1.31.1.1.1.3.8|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|0
1.3.6.1.2.1.31.1.1.1.4.2|65|0
1.3.6.1.2.1.31.1.1.1.4.3|65|0
1.3.6.1.2.1.31.1.1.1.4.4|65|0
1.3.6.1.2.1.31.1.1.1.4.5|65|0
1.3.6.1.2.1.31.1.1.1.4.6|65|0
1.3.6.1.2.1.31.1.1.1.4.7|65|0
1.3.6.1.2.1.31.1.1.1.4.8|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|0
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.5.3|65|0
1.3.6.1.2.1.31.1.1.1.5.4|65|0
1.3.6.1.2.1.31.1.1.1.5.5|65|0
1.3.6.1.2.1.31.1.1.1.5.6|65|0
1.3.6.1.2.1.31.1.1.1.5.7|65|0
1.3.6.1.2.1.31.1.1.1.5.8|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|36213498400
1.3.6.1.2.1.31.1.1.1.6.2|70|0
1.3.6.1.2.1.31.1.1.1.6.3|70|0
1.3.6.1.2.1.31.1.1.1.6.4|70|1120781826394
1.3.6.1.2.1.31.1.1.1.6.5|70|0
1.3.6.1.2.1.31.1.1.1.6.6|70|139581155977
1.3.6.1.2.1.31.1.1.1.6.7|70|0
1.3.6.1.2.1.31.1.1.1.6.8|70|1260362982371
1.3.6.1.2.1.31.1.1.1.7.1|70|81342409
1.3.6.1.2.1.31.1.1.1.7.2|70|0
1.3.6.1.2.1.31.1.1.1.7.3|70|0
1.3.6.1.2.1.31.1.1.1.7.4|70|564842968
1.3.6.1.2.1.31.1.1.1.7.5|70|0
1.3.6.1.2.1.31.1.1.1.7.6|70|99520104
1.3.6.1.2.1.31.1.1.1.7.7|70|0
1.3.6.1.2.1.31.1.1.1.7.8|70|664363072
1.3.6.1.2.1.31.1.1.1.8.1|70|0
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.8.3|70|0
1.3.6.1.2.1.31.1.1.1.8.4|70|18879
1.3.6.1.2.1.31.1.1.1.8.5|70|0
1.3.6.1.2.1.31.1.1.1.8.6|70|17788
1.3.6.1.2.1.31.1.1.1.8.7|70|0
1.3.6.1.2.1.31.1.1.1.8.8|70|36667
1.3.6.1.2.1.31.1.1.1.9.1|70|0
1.3.6.1.2.1.31.1.1.1.9.2|70|0
1.3.6.1.2.1.31.1.1.1.9.3|70|0
1.3.6.1.2.1.31.1.1.1.9.4|70|0
1.3.6.1.2.1.31.1.1.1.9.5|70|0
1.3.6.1.2.1.31.1.1.1.9.6|70|0
1.3.6.1.2.1.31.1.1.1.9.7|70|0
1.3.6.1.2.1.31.1.1.1.9.8|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|36213498400
1.3.6.1.2.1.31.1.1.1.10.2|70|0
1.3.6.1.2.1.31.1.1.1.10.3|70|0
1.3.6.1.2.1.31.1.1.1.10.4|70|95460131846
1.3.6.1.2.1.31.1.1.1.10.5|70|0
1.3.6.1.2.1.31.1.1.1.10.6|70|548206930142
1.3.6.1.2.1.31.1.1.1.10.7|70|0
1.3.6.1.2.1.31.1.1.1.10.8|70|643667061740
1.3.6.1.2.1.31.1.1.1.11.1|70|81342409
1.3.6.1.2.1.31.1.1.1.11.2|70|0
1.3.6.1.2.1.31.1.1.1.11.3|70|0
1.3.6.1.2.1.31.1.1.1.11.4|70|82481892
1.3.6.1.2.1.31.1.1.1.11.5|70|0
1.3.6.1.2.1.31.1.1.1.11.6|70|425583410
1.3.6.1.2.1.31.1.1.1.11.7|70|0
1.3.6.1.2.1.31.1.1.1.11.8|70|508065300
1.3.6.1.2.1.31.1.1.1.12.1|70|0
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.12.3|70|0
1.3.6.1.2.1.31.1.1.1.12.4|70|0
1.3.6.1.2.1.31.1.1.1.12.5|70|0
1.3.6.1.2.1.31.1.1.1.12.6|70|0
1.3.6.1.2.1.31.1.1.1.12.7|70|0
1.3.6.1.2.1.31.1.1.1.12.8|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|0
1.3.6.1.2.1.31.1.1.1.13.2|70|0
1.3.6.1.2.1.31.1.1.1.13.3|70|0
1.3.6.1.2.1.31.1.1.1.13.4|70|0
1.3.6.1.2.1.31.1.1.1.13.5|70|0
1.3.6.1.2.1.31.1.1.1.13.6|70|0
1.3.6.1.2.1.31.1.1.1.13.7|70|0
1.3.6.1.2.1.31.1.1.1.13.8|70|0
1.3.6.1.2.1.31.1.1.1.15.1|66|10
1.3.6.1.2.1.31.1.1.1.15.2|66|0
1.3.6.1.2.1.31.1.1.1.15.3|66|0
1.3.6.1.2.1.31.1.1.1.15.4|66|1000
1.3.6.1.2.1.31.1.1.1.15.5|66|0
1.3.6.1.2.1.31.1.1.1.15.6|66|1000
1.3.6.1.2.1.31.1.1.1.15.7|66|0
1.3.6.1.2.1.31.1.1.1.15.8|66|2000
1.3.6.1.2.1.31.1.1.1.16.1|2|2
1.3.6.1.2.1.31.1.1.1.16.2|2|2
1.3.6.1.2.1.31.1.1.1.16.3|2|2
1.3.6.1.2.1.31.1.1.1.16.4|2|2
1.3.6.1.2.1.31.1.1.1.16.5|2|2
1.3.6.1.2.1.31.1.1.1.16.6|2|2
1.3.6.1.2.1.31.1.1.1.16.7|2|2
1.3.6.1.2.1.31.1.1.1.16.8|2|2
1.3.6.1.2.1.31.1.1.1.17.2|2|1
1.3.6.1.2.1.31.1.1.1.17.3|2|1
1.3.6.1.2.1.31.1.1.1.17.4|2|1
1.3.6.1.2.1.31.1.1.1.17.5|2|1
1.3.6.1.2.1.31.1.1.1.17.6|2|1
1.3.6.1.2.1.31.1.1.1.17.7|2|1
1.3.6.1.2.1.31.1.1.1.17.8|2|1
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.2|4|
1.3.6.1.2.1.31.1.1.1.18.3|4|
1.3.6.1.2.1.31.1.1.1.18.4|4|
1.3.6.1.2.1.31.1.1.1.18.5|4|
1.3.6.1.2.1.31.1.1.1.18.6|4|
1.3.6.1.2.1.31.1.1.1.18.7|4|
1.3.6.1.2.1.31.1.1.1.18.8|4|
1.3.6.1.2.1.31.1.1.1.19.1|67|0
1.3.6.1.2.1.31.1.1.1.19.2|67|0
1.3.6.1.2.1.31.1.1.1.19.3|67|0
1.3.6.1.2.1.31.1.1.1.19.4|67|0
1.3.6.1.2.1.31.1.1.1.19.5|67|0
1.3.6.1.2.1.31.1.1.1.19.6|67|0
1.3.6.1.2.1.31.1.1.1.19.7|67|0
1.3.6.1.2.1.31.1.1.1.19.8|67|0