SVRMGT-MIB: View SNMP OID List / Download MIB
VENDOR: DEC
Home | MIB: SVRMGT-MIB | |||
---|---|---|---|---|
Download as: |
Download standard MIB format if you are planning to load a MIB file into some system (OS, Zabbix, PRTG ...) or view it with a MIB browser. CSV is more suitable for analyzing and viewing OID' and other MIB objects in excel. JSON and YAML formats are usually used in programing even though some systems can use MIB in YAML format (like Logstash).
|
|||
Object Name | OID | Type | Access | Info |
dec | 1.3.6.1.4.1.36 | |||
ema | 1.3.6.1.4.1.36.2 | |||
mib_extensions_1 | 1.3.6.1.4.1.36.2.18 | |||
svrSystem | 1.3.6.1.4.1.36.2.18.22 | |||
svrMgt | 1.3.6.1.4.1.36.2.18.22.2 | |||
svrMgtMibInfo | 1.3.6.1.4.1.36.2.18.22.2.1 | |||
svrMgtMibMajorRev | 1.3.6.1.4.1.36.2.18.22.2.1.1 | integer | read-only |
Major revision of this MIB. Should equal 2. |
svrMgtMibMinorRev | 1.3.6.1.4.1.36.2.18.22.2.1.2 | integer | read-only |
Minor revision of this mib. Should be 0. |
svrAlarms | 1.3.6.1.4.1.36.2.18.22.2.2 | |||
svrAlarmNextThrIndex | 1.3.6.1.4.1.36.2.18.22.2.2.1 | integer | read-only |
Next available index for creating a svrThrEntry. If the value is -1 then the maximum number of thresholds has been reached. This means that a threshold record can not be created until a current threshold record is deleted. |
svrAlarmEnableTraps | 1.3.6.1.4.1.36.2.18.22.2.2.2 | boolean | no-access |
Starting with V2.0, this variable has been moved. Use the svrControlEnableTraps for the same functionality. |
svrThresholdTable | 1.3.6.1.4.1.36.2.18.22.2.2.3 | no-access |
Table of thresholds against which the agent should check for exceptions. This table describes conditions for setting and resetting alarms. Alarms may be set on absolute values - i.e. the current integer value of the sampled variable - or on delta values - i.e. the difference between the current or last value. Alarms may be GreaterThan exception alarms, LessThan exception alarms, EqualsTo alarms etc. See svrThrAlarmType for differences. Hysteresis is introduced by providing thresholds both for setting and resetting of the alarm state, thereby limiting the number of traps that will be sent on alarm triggering. Alarms may be created to persist across agent reboots, but this is not recommended for dynamic table variables. The triggering of an alarm will change a state variable in the conceptual row. It may also trigger the sending of a trap, the local logging of an event, or the triggering of a locally- defined action. |
|
1.3.6.1.4.1.36.2.18.22.2.2.3.1 | no-access |
One threshold alarm set on some particular integer-valued variable. An alarm entry is created by the management console. It uses the current value of svrAlarmNextThrIndex to name the instances of the row variables, and sets its svrThrStatus to underCreation. When creating a theshold entry for the first time, issue a set request on svrThrStatus. The remaining row variables may be set in the same operation, or in subsequent operations. Those not set will have retain their default values as described. The following variable values MUST be set before enabling the alarm: svrThrStatus must be set to underCreation svrThrVariableName svrThrThresholdValue |
||
svrThrIndex | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.1 | integer | read-only |
A locally-unique index value. On creation, this should be set to the value of svrAlarmNextThrIndex. |
svrThrStatus | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.2 | integer | read-write |
This variable describes the status of the row. When the row is created with the initial set, svrThrStatus must be set to underCreation. When the management console has completed row setup, it should set this variable to rowEnabled. Variables in the row may only be written if svrThrStatus is in the initial underCreation state or has been set to rowDisabled. To delete the row, set the status to rowInvalid. The agent will physically delete the row and make that instance available to be used again. Errors in variable polling and threshold checking that are determined by local implementation to be non-correctable will cause a row status change to rowError. Once the status is set to rowError by the agent, the agent will not reset it. Instead, it is up to the management console to reset the status based on information returned via svrThrErrorValue or for other reasons. Enumeration: 'underCreation': 1, 'rowDisabled': 4, 'rowEnabled': 3, 'rowError': 5, 'rowInvalid': 2. |
svrThrVariableName | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.3 | object identifier | read-write |
The OID of an integer-valued variable to be tested against this threshold. On row creation, this variable will equal the value 0.0, and must be set to the OID of an integer-valued variable before enabling the alarm. It's possible to get an error setting this due to invalid oid (may not support thresholding on this oid due to data type perhaps) or that we couldn't access the agent that supports this oid. |
svrThrValueType | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.4 | integer | read-write |
Is this an absolute value or a delta value. The deltaValue is calculated by taking the current value and subtracting svtThrLastValue. The difference may be negative - allows for thresholding on negative changes.Default on row creation is absoluteValue. Enumeration: 'absoluteValue': 1, 'deltaValue': 2. |
svrThrAlarmType | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.5 | integer | read-write |
Is this a greater than, greater than or equal to, equal to, less than or equal to, or less than alarm? Greater Than or Greater Than or Equal To thresholds for absolute values occur when the sample value exceeds (or equals) the svrThrThresholdValue and svrThrAlarmState was reset. This will cause the svrThrAlarmState to be set and, if svrAlarmEnableTraps is true, a svrThrExceptTrap will be sent. SvrThrAlarmState will be reset when the sample value falls below or equals svrThrResetValue. For delta values, the same holds true except the difference between the sample value and the svrThrLastValue is used for comparison with both the svrThrThresholdValue and the svrThrResetValue. Less Than or Less Than or Equal To thresholds for absolute values occur when the sample value falls below (or equals) the svrThrThresholdValue and svrThrAlarmState was reset. This will cause the svrThrAlarmState to be set and, if svrAlarmEnableTraps is true, a svrThrExceptTrap will be sent. SvrThrAlarmState will be reset when the sample value exceeds or equals svrThrResetValue. For delta values, the same holds true except the difference between the sample value and the svrThrLastValue is used for comparison with both the svrThrThresholdValue and the svrThrResetValue. Equal To thresholds for absolute values occur when the sample value equals svrThrThresholdValue and svrThrAlarmState was reset. This will cause the svrThrAlarmState to be set and, if svrAlarmEnableTraps is true, a svrThrExceptTrap will be sent. SvrThrAlarmState will be reset when the sample value does not equal svrThrResetValue. For delta values, the same holds true except the difference between the sample value and the svrThrLastValue is used for comparison with both the svrThrThresholdValue and the svrThrResetValue. NOTE - It is possible to have negative delta values since the differ- ence is computed as the current value minus the svrThrLastValue. The default value on row creation is greaterThan. Enumeration: 'equalTo': 3, 'lessThan': 5, 'greaterThanOrEqualTo': 2, 'greaterThan': 1, 'lessThanOrEqualTo': 4. |
svrThrSampleInterval | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.6 | integer | read-write |
Interval in seconds between polls to check for threshold exceptions. Minimum Value is 1. The default value on row creation is 30 seconds. |
svrThrPersistent | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.7 | boolean | read-write |
True if this threshold should persist across agent restarts. Default value on row creation is false. |
svrThrThresholdValue | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.8 | integer | read-write |
This is the thresholding value which gets compared to the current or delta value. Default value on row creation is 0. |
svrThrResetValue | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.9 | integer | read-write |
This is the value that on all svrThrAlarmTypes except for equalTo, is used to reset the threshold. Default value on row creation is 0 |
svrThrLastValue | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.10 | integer | read-only |
Saved previous sample; needed to evaluate if alarm should be triggered or to evaluate delta values for threshold checking. |
svrThrAlarmState | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.11 | integer | read-only |
Whether this alarm is currently set or reset. This variable is used by polling management applications to determine if a threshold exception state has been detected based on this alarm definition. It will initially have a value of reset when the alarm is enabled. For state change rules look at the definition for svrThrAlarmType. In all cases, this value will reset on svrThrStatus change to rowDisabled or rowInvalid. The default value on row creation is reset. Enumeration: 'reset': 2, 'set': 1. |
svrThrLogEvent | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.12 | boolean | read-write |
If yes, log to the system event log. Default value on row creation is false. |
svrThrInvokeLocalHandler | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.13 | boolean | read-write |
If true, invoke a local alarm handler, passing the concatenated local handler argument strings starting with argument 1. Default value on row creation is false. |
svrThrLocalHandlerPath | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.14 | displaystring | read-write |
Pathname of local alarm handler. This can be any pathname as long as it can be recognized by the particular operating system. |
svrThrDescr | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.15 | displaystring | read-write |
This attribute is used to describe the type of threshold. This is set by the management console not by the agent. |
svrThrErrorValue | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.16 | snmperrors | read-only |
This is the SNMP defined error status which caused the svrThrStatus value to become equal to rowError. Only valid at that time. Default value on row creation is noError. |
svrThrComparisonName | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.17 | object identifier | read-write |
An OID to a descriptor attribute which can be used with persistent to verify that the svrThrVariableName instance is correct. On agent restarts the value for this oid will be retrieved and compared to the svrThrComparisonValue. If not equal, then it's possible that the oid instancing for svrThrVariableName is incorrect. If this occurs, then the svrThrStatus will be set to rowError and the svrThrErrorValue will be set to badValue. This attribute is optional. The default value on row creation is 0.0. Can be reset back to 0.0 if this attribute is not to be used. |
svrThrComparisonValue | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.18 | displaystring | read-write |
Data value of svrThrComparisonName - used when persistent is set. This value is compared to the current value on agent restarts. This attribute is optional. The default value on row creation is NULL. |
svrThrSeverity | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.19 | severity | read-write |
Indicates the severity of the threshold. Default value on row creation is informational. |
svrThrTrapEnabler | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.20 | boolean | read-write |
Determines if a trap should be sent out if the threshold event does occur. If true, a trap will be sent out. If false, a trap will not be sent out. Default value on row creation is true. |
svrThrLocalHandlerArguments1 | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.21 | displaystring | read-write |
This is the first part of the argument line if the svrThrInvokeLocalHandler is used. This argument line is passed directly to the application pointed to by the svrThrLocalHandlerPath. A parameter(s) could be substituted anywhere in the argument line with an oid's value if there is a %oid% found within the string. The %oid% will be replaced with the value of the oid at the time the event occurred. For example if the svrSystemDesc value from the Digital Server System mib is required, then the argument list would have a replacement statement like this: %.1.3.6.1.4.1.36.2.18.22.1.2.3.0%. If a value from a threshold record is requested, use %oid% where the oid is .1.3.6.1.4.1.36.2.18.22.2.2.3.1.offset.instance. The offset is the oid offset (from 1 to 30) of the threshold entry variable. For svrThrIndex, the offset is 1. The instance can be dropped if the current threshold record (that which caused the event) is to be used. Otherwise, the instance of the requested threshold entry must be part of the %oid% statement. All the replaced values are inserted into the argument strings as ascii/text strings. For an integer (counter, gauge, etc) value, if the value is negative, there will be a minus sign in front of the value. For a positive number, there is no sign in front of the value. The integer value will be in ascii format - it is the responsibility of the application to convert the text into a decimal number. All octet strings, excluding display strings, will be inserted into the argument string as a text string in the format of 0xoctet value. For example if an octet string (hex based) of 8,23,6a,4e was retrieved using the %oid% format, then the replaced value would be a text string looking like this - 0x8,0x23,0x6a,0x4e where the number are in ascii (displayable) format separated by a comma. The 0x represents the hexadecimal base while the number following that is the ascii representation of the hexadecimal number. For display strings, there will be a pair of quotes around the string. Use of the Handler Arguments must be done in ascending order. No skipping of argument variables is allowed. NOTE - All oids must be preceded with a period(.) for proper system group recognition. Also all argument lists (concatenated starting with argument #1) are separated by a space. Default value on row creation is null. |
svrThrLocalHandlerArguments2 | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.22 | displaystring | read-write |
Same semantics as svrThrLocalHandlerArguments1. |
svrThrLocalHandlerArguments3 | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.23 | displaystring | read-write |
Same semantics as svrThrLocalHandlerArguments1. |
svrThrLocalHandlerArguments4 | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.24 | displaystring | read-write |
Same semantics as svrThrLocalHandlerArguments1. |
svrThrTrapsSendingInterval | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.25 | integer | read-write |
Represents how often a trap should be sent if dealing with sending multiple traps per event. The units is minutes. Default value on row creation is 0 minutes. When set to 0, only 1 trap will be sent out per event. |
svrThrManagerDefinedTrapData | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.26 | displaystring | read-write |
This is a string provided by a management console to be sent out with every trap. Default value on row creation is null. |
svrThrUserDefinedTrapData | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.27 | displaystring | read-write |
This is a string provided by a user via a management console to be sent out with every trap. Default value on row creation is null. |
svrThrRetryCount | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.28 | integer | read-write |
Allows for a trap to be sent n number of sampling intervals after the threshold event occurred rather than right after the event occurred. This allows for cases when an event is just a momentary event and should not be considered a problem until it has persisted over a number of sampling intervals. If the retry count is 0, then the trap will be sent out immediately after the event has occurred. Default value on row creation is 0. |
svrThrResetType | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.29 | resetrelationaloperators | read-write |
Is this a greater than, greater than or equal to, equal to, less than or equal to, or less than the reset value? This variable works just like the svrThrAlarmType. It is a relational operator used to compare the oid's current value with the svrThrResetValue to determine if the threshold's alarm state should be reset. Default value on row creation is lessThanOrEqualTo. |
svrThrAlarmCategory | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.30 | alarmcategory | read-write |
A management station provided variable to allow for classification/grouping of thresholds. |
svrThrTrapOid | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.31 | object identifier | read-write |
A fully defined OID of a svrmgt trap (other than reset and modify) that will be sent out when an event occurs. This OID will override the usage of the svrThrSeverity value when choosing the appropriate trap. NOTE - The svrmgt trap OID must be preceded with a period(.) for proper system group recognition. This attribute is optional. The default value on row creation is 0.0. |
svrThrCreatedBy | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.32 | thresholdowner | read-write |
Represents the creator of this threshold. This variable can be modified only during threshold creation. The default value on row creation is the unknown value. |
svrThrModifiable | 1.3.6.1.4.1.36.2.18.22.2.2.3.1.33 | boolean | read-write |
Determines whether modification of the threshold record is allowed after creation. If false, modification is allowed only during row creation. This variable can be modified only during threshold creation. The default value on row creation is true. |
svrControl | 1.3.6.1.4.1.36.2.18.22.2.3 | |||
svrControlEnableTraps | 1.3.6.1.4.1.36.2.18.22.2.3.1 | boolean | read-write |
If true, the appropriate exception trap will be sent for each triggered alarm. This value persists over agent restarts. Default value is true. |
svrControlEnableModifyTraps | 1.3.6.1.4.1.36.2.18.22.2.3.2 | boolean | read-write |
If true, a modify trap will be sent for each modification of the threshold table when the threshold entry state is rowDisabled. This value persists over agent restarts. Default value is false. |
svrControlEnableResetTraps | 1.3.6.1.4.1.36.2.18.22.2.3.3 | boolean | read-write |
If true, a reset trap will be sent each time any threshold event is reset. If the alarm state goes from set to reset, a reset trap will be sent. This value persists over agent restarts. Default value is false. |
svrControlModifyOID | 1.3.6.1.4.1.36.2.18.22.2.3.4 | object identifier | no-access |
This variable is used as a variable in the modification trap, svrThrModifyTrap to represent the threshold variable which caused the modify trap to be sent. This variable can not be retrieved nor modified by the user. |
svrTrap | 1.3.6.1.4.1.36.2.18.22.2.4 | |||
svrTrapReconfigureEvent | 1.3.6.1.4.1.36.2.18.22.2.4.1 | integer | read-write |
By setting this value to enable, trap destinations will be reconfigured. On some operating systems like Windows/NT this will cause the SNMP agent to restart. Enumeration: 'enable': 1, 'disable': 2. |
svrTrapCommunityNextIndex | 1.3.6.1.4.1.36.2.18.22.2.4.2 | integer | read-only |
Next available index for creating a svrTrapCommunityEntry. If the value is -1, then the maximum number of community names has been reached. This means that a community record can not be created until another community name has been deleted. |
svrTrapCommunityTable | 1.3.6.1.4.1.36.2.18.22.2.4.6 | no-access |
Table of svrTrapCommunityEntry (community names) for which each can have a list of IP addresses/TCPIP names/Netbios names/IPX addresses. These address/names are trap destinations. A trap is sent out per community/address(name) pairing. |
|
1.3.6.1.4.1.36.2.18.22.2.4.6.1 | no-access |
In order to create a community entry, the svrTrapCommunityNextIndex must be userd as the instance for that entry. |
||
svrTrapCommunityIndex | 1.3.6.1.4.1.36.2.18.22.2.4.6.1.1 | integer | read-only |
A locally-unique index value. On creation, this should be set to the value of svrTrapCommunityNextIndex. |
svrTrapCommunityName | 1.3.6.1.4.1.36.2.18.22.2.4.6.1.2 | displaystring | read-write |
This is the community name that network addresses/names will be associated with. When the trap is sent out, this community name is sent out with it. A common community name is public. To create a community name entry, just issue a SET command for svrTrapCommunityName with an instance of svrTrapCommunityNextIndex. To delete the entry, issue a SET command for that particular instance using an empty display string (length = 0). By deleting the community name entry, the underlying destination entries for this community name instance will also be deleted. |
svrTrapDestinationNextIndex | 1.3.6.1.4.1.36.2.18.22.2.4.6.1.3 | integer | read-only |
Next available index for creating a svrTrapDestinationEntry. If the value is -1 then the maximum number of destination entries has been reached. This means that a destination record can not be created until another has been deleted. |
svrTrapDestinationTable | 1.3.6.1.4.1.36.2.18.22.2.4.7 | no-access |
Table of IP addresses/TCPIP names/Netbios names/IPX addresses which are the trap destinations. A trap is sent out per community name/ address(name) pairing. |
|
1.3.6.1.4.1.36.2.18.22.2.4.7.1 | no-access |
In order to create an address/name entry, the svrTrapDestinationNextIndex must be used as the instance for that entry. |
||
svrTrapDestinationIndex | 1.3.6.1.4.1.36.2.18.22.2.4.7.1.1 | integer | read-only |
A locally-unique index value. On creation, this must be set to the value of svrTrapDestinationNextIndex. |
svrTrapDestination | 1.3.6.1.4.1.36.2.18.22.2.4.7.1.2 | displaystring | read-write |
This is the destination that the trap will be sent. It can either an IP address, TCPIP name, Netbios name or IPX address. To create a destination entry, just issue a SET command for svrTrapDestination with an instance of svrTrapDestinationNextIndex. To delete the entry, issue a SET command for that particular instance using an empty display string (length = 0). |
svrMinimalHealth | 1.3.6.1.4.1.36.2.18.22.2.5 | |||
svrMinimalHealthMajorRev | 1.3.6.1.4.1.36.2.18.22.2.5.1 | integer | read-write |
Major revision of the Minimal Health module. Default is 0 |
svrMinimalHealthMinorRev | 1.3.6.1.4.1.36.2.18.22.2.5.2 | integer | read-write |
Minor revision of the Minimal Health module. Default is 0. |
svrMinimalHealthEnable | 1.3.6.1.4.1.36.2.18.22.2.5.3 | boolean | read-write |
If true, the minimal health module will be started. This value persists over agent restarts. Default value is true. |
svrMinimalHealthDesiredTemplateName | 1.3.6.1.4.1.36.2.18.22.2.5.4 | displaystring | read-write |
This is the desired template name for use by the minimal health agent. |
svrMinimalHealthDesiredTemplateRevision | 1.3.6.1.4.1.36.2.18.22.2.5.5 | displaystring | read-write |
This is the desired template revision for use by the minimal health agent. |
svrMinimalHealthDesiredTemplateRevisionDate | 1.3.6.1.4.1.36.2.18.22.2.5.6 | displaystring | read-write |
This is the desired template revision date for use by the minimal health agent. |
svrMinimalHealthActualTemplateName | 1.3.6.1.4.1.36.2.18.22.2.5.7 | displaystring | read-write |
This is the actual template name for use by the minimal health agent. |
svrMinimalHealthActualTemplateRevision | 1.3.6.1.4.1.36.2.18.22.2.5.8 | displaystring | read-write |
This is the actual template revision for use by the minimal health agent. |
svrMinimalHealthActualTemplateRevisionDate | 1.3.6.1.4.1.36.2.18.22.2.5.9 | displaystring | read-write |
This is the actual template revision date for use by the minimal health agent. |
svrThrModifyTrap | 1.3.6.1.4.1.36.2.18.22.20.99 |
This is a modification trap. The threshold OID whose value caused the alarm is in svrControlModifyOID. |
||
svrThrResetTrap | 1.3.6.1.4.1.36.2.18.22.20.100 |
This is a reset trap. The value that cuased the alarm to be reset is returned in svrThrLastValue. |
||
svrThrHighExceptTrap | 1.3.6.1.4.1.36.2.18.22.20.101 |
This is a high severity trap. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrMediumExceptTrap | 1.3.6.1.4.1.36.2.18.22.20.102 |
This is a medium severity trap. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrLowExceptTrap | 1.3.6.1.4.1.36.2.18.22.20.103 |
This is a low severity trap. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrInformationalExceptTrap | 1.3.6.1.4.1.36.2.18.22.20.104 |
This is an Informational severity trap. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrDiskDown | 1.3.6.1.4.1.36.2.18.22.20.105 |
This indicates that the disk is not available for any use. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrDiskWarning | 1.3.6.1.4.1.36.2.18.22.20.106 |
This indicates that an unusual disk error condition has occured but that the device is still operational. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrDiskOk | 1.3.6.1.4.1.36.2.18.22.20.107 |
This indicates that the disk is up and running and that no unusual error conditions are known. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrFileSystemUsage | 1.3.6.1.4.1.36.2.18.22.20.108 |
This indicates that file system usage has exceeded the user defined threshold.The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrTemperatureOk | 1.3.6.1.4.1.36.2.18.22.20.109 |
This indicates that the temperature is within normal limits. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrTemperatureCritical | 1.3.6.1.4.1.36.2.18.22.20.110 |
This indicates that the temperature is in a critical state either low or high. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrTemperatureWarning | 1.3.6.1.4.1.36.2.18.22.20.111 |
This indicates that the temperature is in a warning state either low or high. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrFanFailed | 1.3.6.1.4.1.36.2.18.22.20.112 |
This indicates that the fan has failed. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrFanOk | 1.3.6.1.4.1.36.2.18.22.20.113 |
This indicates that the fan is functioning well. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrFanBackup | 1.3.6.1.4.1.36.2.18.22.20.114 |
This indicates that the fan is a backup fan. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrVoltageOk | 1.3.6.1.4.1.36.2.18.22.20.115 |
This indicates that the voltage is within normal limits. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrVoltageCritical | 1.3.6.1.4.1.36.2.18.22.20.116 |
This indicates that the voltage is in a critical state, either low or high, but has not reached the shutdown threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrVoltageWarning | 1.3.6.1.4.1.36.2.18.22.20.117 |
This indicates that the voltage is in a warning state, either low or high. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrPowerSupplyFailed | 1.3.6.1.4.1.36.2.18.22.20.118 |
This indicates that the power supply failed. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrPowerSupplyWarning | 1.3.6.1.4.1.36.2.18.22.20.119 |
This indicates that the power supply is in a warning state but has not yet failed. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrPowerSupplyOk | 1.3.6.1.4.1.36.2.18.22.20.120 |
This indicates that the power supply is functioning well. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrPowerSupplyBackup | 1.3.6.1.4.1.36.2.18.22.20.121 |
This indicates that the power supply is in backup state. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrMemoryEltFailed | 1.3.6.1.4.1.36.2.18.22.20.122 |
This indicates that the memory element has failed. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrMemoryEltWarning | 1.3.6.1.4.1.36.2.18.22.20.123 |
This indicates that the memory element is reporting errors. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrMemoryEltOk | 1.3.6.1.4.1.36.2.18.22.20.124 |
This indicates that the memory element is functioning well. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrNetworkIfInErrors | 1.3.6.1.4.1.36.2.18.22.20.125 |
This indicates that the network interface inbound errors have exceeded the user defined threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrNetworkIfInOctets | 1.3.6.1.4.1.36.2.18.22.20.126 |
This indicates that the network interface inbound octets have exceeded the user defined threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrNetworkIfOutOctets | 1.3.6.1.4.1.36.2.18.22.20.127 |
This indicates that the network interface outbound octets have exceeded the user defined threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrNetworkIfInPkts | 1.3.6.1.4.1.36.2.18.22.20.128 |
This indicates that the network interface inbound packets have exceeded the user defined threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrNetworkIfOutPkts | 1.3.6.1.4.1.36.2.18.22.20.129 |
This indicates that the network interface outbound packets have exceeded the user defined threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrNetworkIfOutErrors | 1.3.6.1.4.1.36.2.18.22.20.130 |
This indicates that the network interface outbound errors have exceeded the user defined threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrNetworkIfInDiscards | 1.3.6.1.4.1.36.2.18.22.20.131 |
This indicates that the network interface inbound discards have exceeded the user defined threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrProcessorDown | 1.3.6.1.4.1.36.2.18.22.20.132 |
This indicates that the processor is not available for any use. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrProcessorWarning | 1.3.6.1.4.1.36.2.18.22.20.133 |
This indicates that the processor has encountered an unusual error condition but is still considered to be operational. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrProcessorOk | 1.3.6.1.4.1.36.2.18.22.20.134 |
This indicates that the processor is up and running and that no unusual error conditions are known. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrCpuUsage | 1.3.6.1.4.1.36.2.18.22.20.135 |
This indicates that CPU usage has exceeded the user defined threshold. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrClusterFailOverOwner | 1.3.6.1.4.1.36.2.18.22.20.136 |
This indicates that the node has become the current owner of a cluster resource. The value that caused the alarm to occur is returned in svrThrLastValue. |
||
svrThrClusterFailOverNotOwner | 1.3.6.1.4.1.36.2.18.22.20.137 |
This indicates that the node is not the current owner of a cluster resource. The value that caused the alarm to occur is returned in svrThrLastValue. |