diff --git a/templates/QNAP/NAS-MIB.mib b/templates/QNAP/NAS-MIB.mib new file mode 100644 index 0000000..954c4c4 --- /dev/null +++ b/templates/QNAP/NAS-MIB.mib @@ -0,0 +1,461 @@ + +NAS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + enterprises, Counter, TimeTicks + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215; + + -- From RFC-1213 (MIB-II) + DisplayString ::= + OCTET STRING + + storage OBJECT IDENTIFIER ::= { enterprises 24681 } + storageSystem OBJECT IDENTIFIER ::= { storage 1 } + + -- Frame Relay Multiplexer MIB groups + -- system Event + systemEventMsg OBJECT IDENTIFIER ::= { storageSystem 1 } + + -- system event + eventInformMsg OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS current + DESCRIPTION + "Information event of NAS system." + ::= { systemEventMsg 101 } + + eventWarningMsg OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS current + DESCRIPTION + "Warning event of NAS system." + ::= { systemEventMsg 102 } + + eventErrorMsg OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS current + DESCRIPTION + "Error event of NAS system." + ::= { systemEventMsg 103 } + + systemTraps OBJECT IDENTIFIER ::= { storageSystem 10 } + + eventInform TRAP-TYPE + ENTERPRISE systemTraps + VARIABLES { eventInformMsg } + DESCRIPTION + "Info: %s" + ::= 1 + + eventWarning TRAP-TYPE + ENTERPRISE systemTraps + VARIABLES { eventWarningMsg } + DESCRIPTION + "Warn: %s" + ::= 2 + + eventError TRAP-TYPE + ENTERPRISE systemTraps + VARIABLES { eventErrorMsg } + DESCRIPTION + "Error: %s" + ::= 4 + + -- system inform + systemInfo OBJECT IDENTIFIER ::= { storageSystem 2 } + + systemCPU-Usage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System CPU usage" + ::= { systemInfo 1 } + systemTotalMem OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System total memory" + ::= { systemInfo 2 } + systemFreeMem OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System free memory" + ::= { systemInfo 3 } + systemUptime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of time since this host was last + initialized. Note that this is different from + sysUpTime in the SNMPv2-MIB [RFC1907] because + sysUpTime is the uptime of the network management + portion of the system." + ::= { systemInfo 4 } + cpu-Temperature OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CPU temperature" + ::= { systemInfo 5 } + systemTemperature OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System temperature" + ::= { systemInfo 6 } + +ifNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of network interfaces (regardless of + their current state) present on this system." + ::= { systemInfo 8 } +systemIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfEntryDef + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interface entries. The number of + entries is given by the value of IfNumber." + ::= { systemInfo 9 } +ifEntry OBJECT-TYPE + SYNTAX IfEntryDef + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An interface entry containing objects at the + subnetwork layer and below for a particular + interface." + INDEX { IfIndex } + ::= { systemIfTable 1 } +IfEntryDef ::= + SEQUENCE { + ifIndex + INTEGER, + ifDescr + DisplayString, + ifPacketsReceived + Counter, + ifPacketsSent + Counter, + ifErrorPackets + Counter + } +ifIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each interface. Its value + ranges between 1 and the value of IfNumber. The + value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { ifEntry 1 } +ifDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of + the manufacturer, the product name and the version + of the hardware interface." + ::= { ifEntry 2 } +ifPacketsReceived OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System packets received." + ::= { ifEntry 3 } +ifPacketsSent OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System packets sent." + ::= { ifEntry 4 } +ifErrorPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System error packets." + ::= { ifEntry 5 } + +hdNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of hard disk (regardless of + their current state) present on this system." + ::= { systemInfo 10 } +systemHdTable OBJECT-TYPE + SYNTAX SEQUENCE OF HdEntryDef + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interface entries. The number of + entries is given by the value of IfNumber." + ::= { systemInfo 11 } +hdEntry OBJECT-TYPE + SYNTAX HdEntryDef + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An interface entry containing objects at the + subnetwork layer and below for a particular + interface." + INDEX { HdIndex } + ::= { systemHdTable 1 } +HdEntryDef ::= + SEQUENCE { + hdIndex + INTEGER, + hdDescr + DisplayString, + hdTemperature + DisplayString, + hdStatus + INTEGER, + hdModel DisplayString, + hdCapacity DisplayString, + hdSmartInfo DisplayString + } +hdIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each hard disk. Its value + ranges between 1 and the value of IfNumber. The + value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { hdEntry 1 } +hdDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of + the manufacturer, the product name and the version + of the hardware interface." + ::= { hdEntry 2 } +hdTemperature OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Hard disk temperature." + ::= { hdEntry 3 } +hdStatus OBJECT-TYPE + SYNTAX INTEGER { + ready(0), + noDisk(-5), + invalid(-6), + rwError(-9), + unknown(-4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "HDD status. 0:not availible, 1:availible." + ::= { hdEntry 4 } +hdModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "Hard disk model." + ::= { hdEntry 5 } +hdCapacity OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "Hard disk capacity." + ::= { hdEntry 6 } +hdSmartInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "Hard disk SMART information." + ::= { hdEntry 7 } + + modelName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model name" + ::= { systemInfo 12 } + hostName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model name" + ::= { systemInfo 13 } + +sysFanNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of system fan (regardless of + their current state) present on this system." + ::= { systemInfo 14 } +systemFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysFanEntryDef + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interface entries. The number of + entries is given by the value of SysFanNumber." + ::= { systemInfo 15 } +sysFanEntry OBJECT-TYPE + SYNTAX SysFanEntryDef + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An system fan entry containing objects at the + subnetwork layer and below for a particular + interface." + INDEX { SysFanIndex } + ::= { systemFanTable 1 } +SysFanEntryDef ::= + SEQUENCE { + sysFanIndex + INTEGER, + sysFanDescr + DisplayString, + sysFanSpeed + DisplayString + } +sysFanIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each system fan. Its value + ranges between 1 and the value of SysFanNumber. The + value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { sysFanEntry 1 } +sysFanDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of + the manufacturer, the product name and the version + of the hardware interface." + ::= { sysFanEntry 2 } +sysFanSpeed OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System fan speed." + ::= { sysFanEntry 3 } + +sysVolumeNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of system volumes (regardless of + their current state) present on this system." + ::= { systemInfo 16 } +systemVolumeTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysVolumeEntryDef + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of volume entries. The number of + entries is given by the value of SysVolumeNumber." + ::= { systemInfo 17 } +sysVolumeEntry OBJECT-TYPE + SYNTAX SysVolumeEntryDef + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An system volume entry" + INDEX { SysVolumeIndex } + ::= { systemVolumeTable 1 } +SysVolumeEntryDef ::= + SEQUENCE { + sysVolumeIndex INTEGER, + sysVolumeDescr DisplayString, + sysVolumeFS DisplayString, + sysVolumeTotalSize DisplayString, + sysVolumeFreeSize DisplayString, + sysVolumeStatus DisplayString + } +sysVolumeIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each system volume. Its value + ranges between 1 and the value of SysVolumeNumber. The + value for each volume must remain constant at + least from one re-initialization of the entity's + volume system to the next re-initialization." + ::= { sysVolumeEntry 1 } +sysVolumeDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A textual string containing information about the volume." + ::= { sysVolumeEntry 2 } +sysVolumeFS OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "System Volume file system." + ::= { sysVolumeEntry 3 } +sysVolumeTotalSize OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "System Volume total size." + ::= { sysVolumeEntry 4 } +sysVolumeFreeSize OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "System Volume free size." + ::= { sysVolumeEntry 5 } +sysVolumeStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "System Volume status." + ::= { sysVolumeEntry 6 } + +END + diff --git a/templates/QNAP/README.md b/templates/QNAP/README.md new file mode 100644 index 0000000..2a9d770 --- /dev/null +++ b/templates/QNAP/README.md @@ -0,0 +1,13 @@ +QNAP Storage Monitoring +======================= + +Provides monitoring of the QNAP storage devices through SNMP. + +* CPU +* Hard Disks +* Interfaces +* Fans +* Memory +* Volumes + +Add the QNAP Appliance under the hosts tab and define the system type as 'Other' and provide appropriate SNMP Community String or User Credentials depending on the SNMP protocol version. diff --git a/templates/QNAP/qnap.cfg b/templates/QNAP/qnap.cfg new file mode 100644 index 0000000..859ead1 --- /dev/null +++ b/templates/QNAP/qnap.cfg @@ -0,0 +1,456 @@ +PATROL_CONFIG +"/SENTRY/X/qnap/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap/collectionErrorCountAutoAcknowledgeTime" = { REPLACE = "300" }, +"/SENTRY/X/qnap/credentialsList" = { REPLACE = "" }, +"/SENTRY/X/qnap/databaseType" = { REPLACE = "" }, +"/SENTRY/X/qnap/description" = { REPLACE = "QNAP Storage Monitoring=======================Provides monitoring of the QNAP storage devices through SNMP.* CPU* Hard Disks* Interfaces* Fans* Memory* VolumesAdd the QNAP Appliance under the hosts tab and define the system type as 'Other' and provide appropriate SNMP Community String or User Credentials depending on the SNMP protocol version." }, +"/SENTRY/X/qnap/disabled" = { REPLACE = "0" }, +"/SENTRY/X/qnap/embeddedFileList" = { REPLACE = "" }, +"/SENTRY/X/qnap/label" = { REPLACE = "QNAP" }, +"/SENTRY/X/qnap/macroList" = { REPLACE = "" }, +"/SENTRY/X/qnap/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap/parameterList" = { REPLACE = "CollectionErrorCount;1" }, +"/SENTRY/X/qnap/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap/runAlertForEachCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap/shareCookies" = { REPLACE = "0" }, +"/SENTRY/X/qnap/systemType" = { REPLACE = "other" }, +"/SENTRY/X/qnap/thresholdList" = { REPLACE = "CollectionErrorCount;0 0 0 0 0 0;1 1 2147483646 0 0 1;0 0 0 0 0 0" }, +"/SENTRY/X/qnap/type" = { REPLACE = "Template" }, +"/SENTRY/X/qnap:cpuTemperature/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:cpuTemperature/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:cpuTemperature/label" = { REPLACE = "CPU Temperature" }, +"/SENTRY/X/qnap:cpuTemperature/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:cpuTemperature/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:cpuTemperature/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.5.0" }, +"/SENTRY/X/qnap:cpuTemperature/oidType" = { REPLACE = "integer" }, +"/SENTRY/X/qnap:cpuTemperature/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;1" }, +"/SENTRY/X/qnap:cpuTemperature/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:cpuTemperature/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:cpuTemperature/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:cpuTemperature/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:cpuTemperature/scale" = { REPLACE = "NULL" }, +"/SENTRY/X/qnap:cpuTemperature/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:cpuTemperature/snmpMode" = { REPLACE = "singleOID" }, +"/SENTRY/X/qnap:cpuTemperature/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2,Value;0 0 0 0 0 0;1 60 2147483646 1 3 2;1 45 2147483646 1 5 1" }, +"/SENTRY/X/qnap:cpuTemperature/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:hardDisks/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks/label" = { REPLACE = "Hard Disks" }, +"/SENTRY/X/qnap:hardDisks/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.11.1" }, +"/SENTRY/X/qnap:hardDisks/oidType" = { REPLACE = "string" }, +"/SENTRY/X/qnap:hardDisks/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;0" }, +"/SENTRY/X/qnap:hardDisks/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:hardDisks/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:hardDisks/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:hardDisks/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks/snmpMode" = { REPLACE = "snmpTable" }, +"/SENTRY/X/qnap:hardDisks/snmpTableColumns" = { REPLACE = "1,2,3,4,5,6,7" }, +"/SENTRY/X/qnap:hardDisks/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:hardDisks/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:ifCount/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:ifCount/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:ifCount/label" = { REPLACE = "IF Count" }, +"/SENTRY/X/qnap:ifCount/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:ifCount/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:ifCount/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.8.0" }, +"/SENTRY/X/qnap:ifCount/oidType" = { REPLACE = "integer" }, +"/SENTRY/X/qnap:ifCount/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;1" }, +"/SENTRY/X/qnap:ifCount/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:ifCount/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:ifCount/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:ifCount/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:ifCount/scale" = { REPLACE = "NULL" }, +"/SENTRY/X/qnap:ifCount/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:ifCount/snmpMode" = { REPLACE = "singleOID" }, +"/SENTRY/X/qnap:ifCount/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:ifCount/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:interfaces/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces/label" = { REPLACE = "Interfaces" }, +"/SENTRY/X/qnap:interfaces/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.9.1" }, +"/SENTRY/X/qnap:interfaces/oidType" = { REPLACE = "string" }, +"/SENTRY/X/qnap:interfaces/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;0" }, +"/SENTRY/X/qnap:interfaces/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:interfaces/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:interfaces/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:interfaces/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces/snmpMode" = { REPLACE = "snmpTable" }, +"/SENTRY/X/qnap:interfaces/snmpTableColumns" = { REPLACE = "1,2,3,4,5" }, +"/SENTRY/X/qnap:interfaces/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:interfaces/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:systemCpuUsage/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemCpuUsage/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemCpuUsage/label" = { REPLACE = "System CPU Usage" }, +"/SENTRY/X/qnap:systemCpuUsage/messageList" = { REPLACE = "Value;alarm1;The CPU usage is constantly high. Please check." }, +"/SENTRY/X/qnap:systemCpuUsage/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:systemCpuUsage/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.1.0" }, +"/SENTRY/X/qnap:systemCpuUsage/oidType" = { REPLACE = "integer" }, +"/SENTRY/X/qnap:systemCpuUsage/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;1" }, +"/SENTRY/X/qnap:systemCpuUsage/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:systemCpuUsage/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:systemCpuUsage/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemCpuUsage/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemCpuUsage/scale" = { REPLACE = "NULL" }, +"/SENTRY/X/qnap:systemCpuUsage/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemCpuUsage/snmpMode" = { REPLACE = "singleOID" }, +"/SENTRY/X/qnap:systemCpuUsage/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2,Value;0 0 0 0 0 0;1 95 2147483646 1 5 1;0 0 0 0 0 0" }, +"/SENTRY/X/qnap:systemCpuUsage/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:systemFans/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans/label" = { REPLACE = "System Fans" }, +"/SENTRY/X/qnap:systemFans/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.15.1" }, +"/SENTRY/X/qnap:systemFans/oidType" = { REPLACE = "string" }, +"/SENTRY/X/qnap:systemFans/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;0" }, +"/SENTRY/X/qnap:systemFans/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:systemFans/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:systemFans/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemFans/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans/snmpMode" = { REPLACE = "snmpTable" }, +"/SENTRY/X/qnap:systemFans/snmpTableColumns" = { REPLACE = "1,2,3" }, +"/SENTRY/X/qnap:systemFans/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:systemFans/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:systemFreeMemory/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFreeMemory/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemFreeMemory/label" = { REPLACE = "System Free Memory" }, +"/SENTRY/X/qnap:systemFreeMemory/messageList" = { REPLACE = "Value;alarm1;There is no Free memory." }, +"/SENTRY/X/qnap:systemFreeMemory/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:systemFreeMemory/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.3.0" }, +"/SENTRY/X/qnap:systemFreeMemory/oidType" = { REPLACE = "integer" }, +"/SENTRY/X/qnap:systemFreeMemory/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;1" }, +"/SENTRY/X/qnap:systemFreeMemory/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:systemFreeMemory/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:systemFreeMemory/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemFreeMemory/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFreeMemory/scale" = { REPLACE = "NULL" }, +"/SENTRY/X/qnap:systemFreeMemory/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFreeMemory/snmpMode" = { REPLACE = "singleOID" }, +"/SENTRY/X/qnap:systemFreeMemory/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2,Value;0 0 0 0 0 0;1 0 0 1 5 1;0 0 0 0 0 0" }, +"/SENTRY/X/qnap:systemFreeMemory/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:systemTemperature/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemTemperature/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemTemperature/label" = { REPLACE = "System Temperature" }, +"/SENTRY/X/qnap:systemTemperature/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemTemperature/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:systemTemperature/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.6.0" }, +"/SENTRY/X/qnap:systemTemperature/oidType" = { REPLACE = "integer" }, +"/SENTRY/X/qnap:systemTemperature/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;1,Value;1" }, +"/SENTRY/X/qnap:systemTemperature/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:systemTemperature/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:systemTemperature/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemTemperature/reportAsCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemTemperature/scale" = { REPLACE = "NULL" }, +"/SENTRY/X/qnap:systemTemperature/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemTemperature/snmpMode" = { REPLACE = "singleOID" }, +"/SENTRY/X/qnap:systemTemperature/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2,Value;0 0 0 0 0 0;1 60 2147483646 1 3 2;1 45 2147483646 1 5 1" }, +"/SENTRY/X/qnap:systemTemperature/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:systemTotalMemory/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemTotalMemory/label" = { REPLACE = "System Total Memory" }, +"/SENTRY/X/qnap:systemTotalMemory/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemTotalMemory/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.2.0" }, +"/SENTRY/X/qnap:systemTotalMemory/oidType" = { REPLACE = "string" }, +"/SENTRY/X/qnap:systemTotalMemory/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;0" }, +"/SENTRY/X/qnap:systemTotalMemory/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:systemTotalMemory/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:systemTotalMemory/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemTotalMemory/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemTotalMemory/snmpMode" = { REPLACE = "singleOID" }, +"/SENTRY/X/qnap:systemTotalMemory/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:systemTotalMemory/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:systemUptime/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemUptime/label" = { REPLACE = "System Uptime" }, +"/SENTRY/X/qnap:systemUptime/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemUptime/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.4.0" }, +"/SENTRY/X/qnap:systemUptime/oidType" = { REPLACE = "string" }, +"/SENTRY/X/qnap:systemUptime/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;0" }, +"/SENTRY/X/qnap:systemUptime/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:systemUptime/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:systemUptime/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemUptime/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemUptime/snmpMode" = { REPLACE = "singleOID" }, +"/SENTRY/X/qnap:systemUptime/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:systemUptime/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:systemVolumes/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes/label" = { REPLACE = "System Volumes" }, +"/SENTRY/X/qnap:systemVolumes/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes/oid" = { REPLACE = "1.3.6.1.4.1.24681.1.2.17.1" }, +"/SENTRY/X/qnap:systemVolumes/oidType" = { REPLACE = "string" }, +"/SENTRY/X/qnap:systemVolumes/parameterList" = { REPLACE = "ExecutionTime;0,Result;1,Status;0,Value;0" }, +"/SENTRY/X/qnap:systemVolumes/parent" = { REPLACE = "qnap" }, +"/SENTRY/X/qnap:systemVolumes/pollingIntervalList" = { REPLACE = "snmpPollingColl;continuous;120;" }, +"/SENTRY/X/qnap:systemVolumes/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemVolumes/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes/snmpMode" = { REPLACE = "snmpTable" }, +"/SENTRY/X/qnap:systemVolumes/snmpTableColumns" = { REPLACE = "1,2,3,4,5,6" }, +"/SENTRY/X/qnap:systemVolumes/thresholdList" = { REPLACE = "ExecutionTime;0 0 0 0 0 0;1 30 2147483646 0 0 1;0 0 0 0 0 0,Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:systemVolumes/type" = { REPLACE = "SNMPPolling" }, +"/SENTRY/X/qnap:hardDisks:disks/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks/deleteMissingWhen" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks/excludeRegExp" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:hardDisks:disks/identicalIDAction" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks/instancesLabel" = { REPLACE = "%{2} - %{5} - %{6}" }, +"/SENTRY/X/qnap:hardDisks:disks/instancesObjectID" = { REPLACE = "%{1}%{2}" }, +"/SENTRY/X/qnap:hardDisks:disks/keepRegExp" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks/label" = { REPLACE = "Disks" }, +"/SENTRY/X/qnap:hardDisks:disks/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks/parameterList" = { REPLACE = "Present;1,Result;1" }, +"/SENTRY/X/qnap:hardDisks:disks/parent" = { REPLACE = "qnap:hardDisks" }, +"/SENTRY/X/qnap:hardDisks:disks/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:hardDisks:disks/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks/thresholdList" = { REPLACE = "Present;0 0 0 0 0 0;1 0 0 0 0 2;0 0 0 0 0 0" }, +"/SENTRY/X/qnap:hardDisks:disks/type" = { REPLACE = "DynamicObjects" }, +"/SENTRY/X/qnap:hardDisks:disks/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/deleteMissingWhen" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/excludeRegExp" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/identicalIDAction" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/instancesLabel" = { REPLACE = "%{1} - %{2}" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/instancesObjectID" = { REPLACE = "%{1}%{2}" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/keepRegExp" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/label" = { REPLACE = "System Interfaces" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/parameterList" = { REPLACE = "Present;1,Result;1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/parent" = { REPLACE = "qnap:interfaces" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/thresholdList" = { REPLACE = "Present;0 0 0 0 0 0;1 0 0 0 0 2;0 0 0 0 0 0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/type" = { REPLACE = "DynamicObjects" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans:fans/deleteMissingWhen" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans/excludeRegExp" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans:fans/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:systemFans:fans/identicalIDAction" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans/instancesLabel" = { REPLACE = "%{1} - %{2}" }, +"/SENTRY/X/qnap:systemFans:fans/instancesObjectID" = { REPLACE = "%{1}%{2}" }, +"/SENTRY/X/qnap:systemFans:fans/keepRegExp" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans:fans/label" = { REPLACE = "Fans" }, +"/SENTRY/X/qnap:systemFans:fans/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans:fans/parameterList" = { REPLACE = "Present;1,Result;1" }, +"/SENTRY/X/qnap:systemFans:fans/parent" = { REPLACE = "qnap:systemFans" }, +"/SENTRY/X/qnap:systemFans:fans/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemFans:fans/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans:fans/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans/thresholdList" = { REPLACE = "Present;0 0 0 0 0 0;1 0 0 0 0 2;0 0 0 0 0 0" }, +"/SENTRY/X/qnap:systemFans:fans/type" = { REPLACE = "DynamicObjects" }, +"/SENTRY/X/qnap:systemFans:fans/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes/deleteMissingWhen" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes/excludeRegExp" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:systemVolumes:volumes/identicalIDAction" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes/instancesLabel" = { REPLACE = "%{1} - %{2} - %{3}" }, +"/SENTRY/X/qnap:systemVolumes:volumes/instancesObjectID" = { REPLACE = "%{1}%{2}%{3}" }, +"/SENTRY/X/qnap:systemVolumes:volumes/keepRegExp" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes/label" = { REPLACE = "Volumes" }, +"/SENTRY/X/qnap:systemVolumes:volumes/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes/parameterList" = { REPLACE = "Present;1,Result;1" }, +"/SENTRY/X/qnap:systemVolumes:volumes/parent" = { REPLACE = "qnap:systemVolumes" }, +"/SENTRY/X/qnap:systemVolumes:volumes/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemVolumes:volumes/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes/reportAsCollectionError" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes/thresholdList" = { REPLACE = "Present;0 0 0 0 0 0;1 0 0 0 0 2;0 0 0 0 0 0" }, +"/SENTRY/X/qnap:systemVolumes:volumes/type" = { REPLACE = "DynamicObjects" }, +"/SENTRY/X/qnap:systemVolumes:volumes/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:status/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks:status/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:hardDisks:disks:status/fieldNumber" = { REPLACE = "4" }, +"/SENTRY/X/qnap:hardDisks:disks:status/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:hardDisks:disks:status/label" = { REPLACE = "Status" }, +"/SENTRY/X/qnap:hardDisks:disks:status/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:status/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks:status/noValue" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks:status/otherValueMap" = { REPLACE = "0;" }, +"/SENTRY/X/qnap:hardDisks:disks:status/parameterList" = { REPLACE = "Status;1,StatusInformation;1" }, +"/SENTRY/X/qnap:hardDisks:disks:status/parent" = { REPLACE = "qnap:hardDisks:disks" }, +"/SENTRY/X/qnap:hardDisks:disks:status/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:hardDisks:disks:status/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks:status/selectedValue" = { REPLACE = "3" }, +"/SENTRY/X/qnap:hardDisks:disks:status/skipBlankLines" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:status/thresholdList" = { REPLACE = "Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:hardDisks:disks:status/type" = { REPLACE = "ValueMap" }, +"/SENTRY/X/qnap:hardDisks:disks:status/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:status/valueMap" = { REPLACE = "-4;1;Unknown,-5;0;No Disk,-6;1;Invalid,-9;2;RW Error,0;0;Ready" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/canBeNegative" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/convertUnits" = { REPLACE = "0" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/fieldNumber" = { REPLACE = "3" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/label" = { REPLACE = "Temperature" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/messageList" = { REPLACE = "Value;alarm2;This disk is overheated" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/numericFormat" = { REPLACE = "2" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/parameterList" = { REPLACE = "Present;0,Value;1" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/parameterType" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/parent" = { REPLACE = "qnap:hardDisks:disks" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/reportAsCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/scale" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/thresholdList" = { REPLACE = "Value;0 0 0 0 0 0;1 60 2147483646 1 2 2;1 45 2147483646 1 5 1" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/type" = { REPLACE = "NumericExtraction" }, +"/SENTRY/X/qnap:hardDisks:disks:temperature/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/canBeNegative" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/convertUnits" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/fieldNumber" = { REPLACE = "5" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/label" = { REPLACE = "Error Packets" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/numericFormat" = { REPLACE = "2" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/parameterList" = { REPLACE = "Present;0,Value;1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/parameterType" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/parent" = { REPLACE = "qnap:interfaces:systemInterfaces" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/reportAsCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/scale" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/thresholdList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/type" = { REPLACE = "NumericExtraction" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:errorPackets/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/canBeNegative" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/convertUnits" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/fieldNumber" = { REPLACE = "3" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/label" = { REPLACE = "Packets Received" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/numericFormat" = { REPLACE = "2" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/parameterList" = { REPLACE = "Present;0,Value;1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/parameterType" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/parent" = { REPLACE = "qnap:interfaces:systemInterfaces" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/reportAsCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/scale" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/thresholdList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/type" = { REPLACE = "NumericExtraction" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsReceived/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/canBeNegative" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/convertUnits" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/fieldNumber" = { REPLACE = "4" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/label" = { REPLACE = "Packets Sent" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/numericFormat" = { REPLACE = "2" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/parameterList" = { REPLACE = "Present;0,Value;1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/parameterType" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/parent" = { REPLACE = "qnap:interfaces:systemInterfaces" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/reportAsCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/scale" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/thresholdList" = { REPLACE = "" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/type" = { REPLACE = "NumericExtraction" }, +"/SENTRY/X/qnap:interfaces:systemInterfaces:packetsSent/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/canBeNegative" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/convertUnits" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/fieldNumber" = { REPLACE = "3" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/label" = { REPLACE = "Fan Speed" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/messageList" = { REPLACE = "Value;alarm1;Fan is running at a very low speed.,Value;alarm2;This Fan is not running." }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/numericFormat" = { REPLACE = "2" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/parameterList" = { REPLACE = "Present;0,Value;1" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/parameterType" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/parent" = { REPLACE = "qnap:systemFans:fans" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/reportAsCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/scale" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/thresholdList" = { REPLACE = "Value;0 0 0 0 0 0;1 0 0 0 0 2;1 -2147483647 1000 0 0 1" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/type" = { REPLACE = "NumericExtraction" }, +"/SENTRY/X/qnap:systemFans:fans:fanSpeed/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/canBeNegative" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/convertUnits" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/fieldNumber" = { REPLACE = "5" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/label" = { REPLACE = "Free Size" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/numericFormat" = { REPLACE = "2" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/parameterList" = { REPLACE = "Present;0,Value;1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/parameterType" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/parent" = { REPLACE = "qnap:systemVolumes:volumes" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/reportAsCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/scale" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/thresholdList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/type" = { REPLACE = "NumericExtraction" }, +"/SENTRY/X/qnap:systemVolumes:volumes:freeSize/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/fieldNumber" = { REPLACE = "6" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/label" = { REPLACE = "Status" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/noValue" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/otherValueMap" = { REPLACE = "0;" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/parameterList" = { REPLACE = "Status;1,StatusInformation;1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/parent" = { REPLACE = "qnap:systemVolumes:volumes" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/selectedValue" = { REPLACE = "3" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/skipBlankLines" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/thresholdList" = { REPLACE = "Status;0 0 0 0 0 0;1 1 1 0 0 1;1 2 2 0 0 2" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/type" = { REPLACE = "ValueMap" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/uniqueSeparator" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:status/valueMap" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/actionList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/canBeNegative" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/columnMode" = { REPLACE = "3" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/convertUnits" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/discardNegativeDelta" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/fieldNumber" = { REPLACE = "4" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/fieldSeparators" = { REPLACE = "[__SW_SENTRY__];[__SW_SENTRY__]" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/label" = { REPLACE = "Total Size" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/lineMode" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/messageList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/monitoredValue" = { REPLACE = "rawValue" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/numericFormat" = { REPLACE = "2" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/parameterList" = { REPLACE = "Present;0,Value;1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/parameterType" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/parent" = { REPLACE = "qnap:systemVolumes:volumes" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/productVersion" = { REPLACE = "10200" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/quoteCharacter" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/reportAsCollectionError" = { REPLACE = "0" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/scale" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/scaleOption" = { REPLACE = "1" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/thresholdList" = { REPLACE = "" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/type" = { REPLACE = "NumericExtraction" }, +"/SENTRY/X/qnap:systemVolumes:volumes:totalSize/uniqueSeparator" = { REPLACE = "1" }