Created
January 5, 2022 10:34
-
-
Save alex-s9s/79c462fbe7f517bff24a2724f9b67637 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ***************************************************************** | |
-- SEVERALNINES-CLUSTERCONTROL-MIB | |
-- Severalnines ClusterControl SNMP MIB | |
-- | |
-- 2022 01 05 10:29:28 - POC | |
-- | |
-- Copyright (c) 2022 by Severalnines AB | |
-- All rights reserved. | |
-- ***************************************************************** | |
SEVERALNINES-CLUSTERCONTROL-MIB DEFINITIONS ::= BEGIN | |
IMPORTS | |
MODULE-IDENTITY, enterprises, OBJECT-TYPE, Integer32, NOTIFICATION-TYPE | |
FROM SNMPv2-SMI | |
OBJECT-GROUP | |
FROM SNMPv2-CONF; | |
severalnines MODULE-IDENTITY | |
LAST-UPDATED "202201051029Z" | |
ORGANIZATION "Severalnines AB" | |
CONTACT-INFO | |
"Severalnines AB | |
severalnines.com | |
Postal: Knipuddevagen 18, | |
SE-394 77 Kalmar, Sweden | |
Phone: +46317538888 | |
Email: info@severalnines.com" | |
DESCRIPTION | |
"This MIB contains definition of the SNMP Traps associated | |
to alerts sent by Severalnines ClusterControl." | |
REVISION | |
"202201051029Z" | |
DESCRIPTION | |
"First revision for POC" | |
::= { enterprises 57397 } | |
-- clustercontrolMIB | |
-- OID: 1.3.6.1.4.1.57397.1 | |
-- iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).severalnines(57397).clustercontrolMIB(1) | |
clustercontrolMIB OBJECT IDENTIFIER ::= { severalnines 1 } | |
-- ClusterControl Alarms | |
-- OID: 1.3.6.1.4.1.57397.1.1 | |
-- iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).severalnines(57397).clustercontrolMIB(1).alarms(1) | |
alarms OBJECT IDENTIFIER ::= { clustercontrolMIB 1 } | |
-- Alarm's summary | |
-- OID: 1.3.6.1.4.1.57397.1.1.1 | |
-- iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).severalnines(57397).clustercontrolMIB(1).alarms(1).alarmSummary(1) | |
alarmSummary OBJECT IDENTIFIER ::= { alarms 1 } | |
totalAlarms OBJECT-TYPE | |
SYNTAX Integer32(0..2147483647) | |
MAX-ACCESS read-only | |
STATUS current | |
DESCRIPTION | |
"The total number of active alarms." | |
::= { alarmSummary 1 } | |
totalCritical OBJECT-TYPE | |
SYNTAX Integer32(0..2147483647) | |
MAX-ACCESS read-only | |
STATUS current | |
DESCRIPTION | |
"The total number of active critical alarms." | |
::= { alarmSummary 2 } | |
totalWarning OBJECT-TYPE | |
SYNTAX Integer32(0..2147483647) | |
MAX-ACCESS read-only | |
STATUS current | |
DESCRIPTION | |
"The total number of active warning alarms." | |
::= { alarmSummary 3 } | |
-- Object group | |
-- OID: 1.3.6.1.4.1.57397.1.1.2 | |
-- iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).severalnines(57397).clustercontrolMIB(1).alarms(1).alarmSummaryGroup(2) | |
alarmSummaryGroup OBJECT-GROUP | |
OBJECTS { totalAlarms, totalCritical, totalWarning } | |
STATUS current | |
DESCRIPTION | |
"A collection of objects for alarm's summary" | |
::= { alarms 2 } | |
-- Alarm's details | |
-- OID: 1.3.6.1.4.1.57397.1.1.3 | |
-- iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).severalnines(57397).clustercontrolMIB(1).alarms(1).alarmDetail(3) | |
alarmDetail OBJECT IDENTIFIER ::= { alarms 3 } | |
clusterId OBJECT-TYPE | |
SYNTAX Integer32(0..2147483647) | |
MAX-ACCESS read-only | |
STATUS current | |
DESCRIPTION | |
"The cluster ID." | |
::= { alarmDetail 1 } | |
severity OBJECT-TYPE | |
SYNTAX INTEGER { UNDEFINED(-1), OK(0), WARNING(1), CRITICAL(2) } | |
MAX-ACCESS read-only | |
STATUS current | |
DESCRIPTION | |
"The severity of the alarm (OK=0, WARNING=1, CRITICAL=2, UNDEFINED(-1))." | |
::= { alarmDetail 2 } | |
hostname OBJECT-TYPE | |
SYNTAX DisplayString | |
MAX-ACCESS read-only | |
STATUS current | |
DESCRIPTION | |
"The hostname in which alarm occurs" | |
::= { alarmDetail 3 } | |
message OBJECT-TYPE | |
SYNTAX DisplayString | |
MAX-ACCESS read-only | |
STATUS current | |
DESCRIPTION | |
"The alarm message indicating the problem" | |
::= { alarmDetail 4 } | |
recommendation OBJECT-TYPE | |
SYNTAX DisplayString | |
MAX-ACCESS read-only | |
STATUS current | |
DESCRIPTION | |
"The alarm message indicating the problem" | |
::= { alarmDetail 5 } | |
-- Object group | |
-- OID: 1.3.6.1.4.1.57397.1.1.4 | |
-- iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).severalnines(57397).clustercontrolMIB(1).alarms(1).alarmDetailGroup(4) | |
alarmDetailGroup OBJECT-GROUP | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"A collection of objects for alarm's detail" | |
::= { alarms 4 } | |
-- Alarm notification | |
-- OID: 1.3.6.1.4.1.57397.1.1.5 | |
-- iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).severalnines(57397).clustercontrolMIB(1).alarms(1).alarmNotification(5) | |
alarmNotification OBJECT IDENTIFIER ::= { alarms 5 } | |
-- From this point on OIDS are autogenerated -- | |
MongoDbDownEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbDown stop" | |
::= { alarmNotification 0 } | |
MongoDbDown NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbDown raise" | |
::= { alarmNotification 1 } | |
MongoDbFailsTooFastEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbFailsTooFast stop" | |
::= { alarmNotification 2 } | |
MongoDbFailsTooFast NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbFailsTooFast raise" | |
::= { alarmNotification 3 } | |
MongoDbFailsTooOftenEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbFailsTooOften stop" | |
::= { alarmNotification 4 } | |
MongoDbFailsTooOften NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbFailsTooOften raise" | |
::= { alarmNotification 5 } | |
MongoDbNodeRecoveryFailEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbNodeRecoveryFail stop" | |
::= { alarmNotification 6 } | |
MongoDbNodeRecoveryFail NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbNodeRecoveryFail raise" | |
::= { alarmNotification 7 } | |
MongoDbBackupWarningEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbBackupWarning stop" | |
::= { alarmNotification 8 } | |
MongoDbBackupWarning NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbBackupWarning raise" | |
::= { alarmNotification 9 } | |
MongoDbReplicationLagEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbReplicationLag stop" | |
::= { alarmNotification 10 } | |
MongoDbReplicationLag NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbReplicationLag raise" | |
::= { alarmNotification 11 } | |
MongoDbReplicationBrokenEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbReplicationBroken stop" | |
::= { alarmNotification 12 } | |
MongoDbReplicationBroken NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbReplicationBroken raise" | |
::= { alarmNotification 13 } | |
MongoDbReplicatioNotApplyingEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbReplicatioNotApplying stop" | |
::= { alarmNotification 14 } | |
MongoDbReplicatioNotApplying NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbReplicatioNotApplying raise" | |
::= { alarmNotification 15 } | |
MongoDbGlobalLockRatioTooHighEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbGlobalLockRatioTooHigh stop" | |
::= { alarmNotification 16 } | |
MongoDbGlobalLockRatioTooHigh NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MongoDbGlobalLockRatioTooHigh raise" | |
::= { alarmNotification 17 } | |
GaleraNodeRecoveryFailEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraNodeRecoveryFail stop" | |
::= { alarmNotification 18 } | |
GaleraNodeRecoveryFail NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraNodeRecoveryFail raise" | |
::= { alarmNotification 19 } | |
ClusterRecoveryFailEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterRecoveryFail stop" | |
::= { alarmNotification 20 } | |
ClusterRecoveryFail NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterRecoveryFail raise" | |
::= { alarmNotification 21 } | |
GaleraClusterSplitEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraClusterSplit stop" | |
::= { alarmNotification 22 } | |
GaleraClusterSplit NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraClusterSplit raise" | |
::= { alarmNotification 23 } | |
GaleraConfigProblem1End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraConfigProblem1 stop" | |
::= { alarmNotification 24 } | |
GaleraConfigProblem1 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraConfigProblem1 raise" | |
::= { alarmNotification 25 } | |
GaleraConfigProblem2End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraConfigProblem2 stop" | |
::= { alarmNotification 26 } | |
GaleraConfigProblem2 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraConfigProblem2 raise" | |
::= { alarmNotification 27 } | |
GaleraSstAuthEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraSstAuth stop" | |
::= { alarmNotification 28 } | |
GaleraSstAuth NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraSstAuth raise" | |
::= { alarmNotification 29 } | |
GaleraWsrepMissingEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraWsrepMissing stop" | |
::= { alarmNotification 30 } | |
GaleraWsrepMissing NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GaleraWsrepMissing raise" | |
::= { alarmNotification 31 } | |
ClusterInconsitentViewEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterInconsitentView stop" | |
::= { alarmNotification 32 } | |
ClusterInconsitentView NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterInconsitentView raise" | |
::= { alarmNotification 33 } | |
MysqlGrantMissingEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MysqlGrantMissing stop" | |
::= { alarmNotification 34 } | |
MysqlGrantMissing NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MysqlGrantMissing raise" | |
::= { alarmNotification 35 } | |
MySqlAdvisorEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlAdvisor stop" | |
::= { alarmNotification 36 } | |
MySqlAdvisor NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlAdvisor raise" | |
::= { alarmNotification 37 } | |
MySqlLogFileAnalyzerEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer stop" | |
::= { alarmNotification 38 } | |
MySqlLogFileAnalyzer NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer raise" | |
::= { alarmNotification 39 } | |
MySqlTableAnalyzerEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlTableAnalyzer stop" | |
::= { alarmNotification 40 } | |
MySqlTableAnalyzer NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlTableAnalyzer raise" | |
::= { alarmNotification 41 } | |
MySqlIndexAnalyzerEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlIndexAnalyzer stop" | |
::= { alarmNotification 42 } | |
MySqlIndexAnalyzer NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlIndexAnalyzer raise" | |
::= { alarmNotification 43 } | |
MySqlCustomExpressionEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlCustomExpression stop" | |
::= { alarmNotification 44 } | |
MySqlCustomExpression NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlCustomExpression raise" | |
::= { alarmNotification 45 } | |
MySqlAutoIncrementAnalyzerEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlAutoIncrementAnalyzer stop" | |
::= { alarmNotification 46 } | |
MySqlAutoIncrementAnalyzer NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlAutoIncrementAnalyzer raise" | |
::= { alarmNotification 47 } | |
MySqlTimeZoneCheckEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlTimeZoneCheck stop" | |
::= { alarmNotification 48 } | |
MySqlTimeZoneCheck NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlTimeZoneCheck raise" | |
::= { alarmNotification 49 } | |
MySqlDataDirCheckEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlDataDirCheck stop" | |
::= { alarmNotification 50 } | |
MySqlDataDirCheck NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlDataDirCheck raise" | |
::= { alarmNotification 51 } | |
NdbTableSpaceEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbTableSpace stop" | |
::= { alarmNotification 52 } | |
NdbTableSpace NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbTableSpace raise" | |
::= { alarmNotification 53 } | |
NdbNodeDisconnectedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbNodeDisconnected stop" | |
::= { alarmNotification 54 } | |
NdbNodeDisconnected NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbNodeDisconnected raise" | |
::= { alarmNotification 55 } | |
MySqlDisconnectedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlDisconnected stop" | |
::= { alarmNotification 56 } | |
MySqlDisconnected NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlDisconnected raise" | |
::= { alarmNotification 57 } | |
NdbNodeStartFailedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbNodeStartFailed stop" | |
::= { alarmNotification 58 } | |
NdbNodeStartFailed NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbNodeStartFailed raise" | |
::= { alarmNotification 59 } | |
NdbClusterFailureEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbClusterFailure stop" | |
::= { alarmNotification 60 } | |
NdbClusterFailure NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbClusterFailure raise" | |
::= { alarmNotification 61 } | |
NdbMgmdFailureEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbMgmdFailure stop" | |
::= { alarmNotification 62 } | |
NdbMgmdFailure NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbMgmdFailure raise" | |
::= { alarmNotification 63 } | |
NdbDataMemoryEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbDataMemory stop" | |
::= { alarmNotification 64 } | |
NdbDataMemory NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbDataMemory raise" | |
::= { alarmNotification 65 } | |
NdbIndexMemoryEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbIndexMemory stop" | |
::= { alarmNotification 66 } | |
NdbIndexMemory NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbIndexMemory raise" | |
::= { alarmNotification 67 } | |
NdbRedoBufferEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbRedoBuffer stop" | |
::= { alarmNotification 68 } | |
NdbRedoBuffer NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbRedoBuffer raise" | |
::= { alarmNotification 69 } | |
NdbRedoLogEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbRedoLog stop" | |
::= { alarmNotification 70 } | |
NdbRedoLog NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbRedoLog raise" | |
::= { alarmNotification 71 } | |
MySqlClusterNotConnectedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlClusterNotConnected stop" | |
::= { alarmNotification 72 } | |
MySqlClusterNotConnected NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlClusterNotConnected raise" | |
::= { alarmNotification 73 } | |
NdbApiDisconnectedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbApiDisconnected stop" | |
::= { alarmNotification 74 } | |
NdbApiDisconnected NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm NdbApiDisconnected raise" | |
::= { alarmNotification 75 } | |
MySqlReplicationBrokenEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationBroken stop" | |
::= { alarmNotification 76 } | |
MySqlReplicationBroken NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationBroken raise" | |
::= { alarmNotification 77 } | |
MySqlReplicationLagEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationLag stop" | |
::= { alarmNotification 78 } | |
MySqlReplicationLag NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationLag raise" | |
::= { alarmNotification 79 } | |
MySqlReplicationMasterFailEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationMasterFail stop" | |
::= { alarmNotification 80 } | |
MySqlReplicationMasterFail NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationMasterFail raise" | |
::= { alarmNotification 81 } | |
MySqlReplicationMultiMasterEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationMultiMaster stop" | |
::= { alarmNotification 82 } | |
MySqlReplicationMultiMaster NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationMultiMaster raise" | |
::= { alarmNotification 83 } | |
MySqlReplicationAllReadOnlyEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationAllReadOnly stop" | |
::= { alarmNotification 84 } | |
MySqlReplicationAllReadOnly NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationAllReadOnly raise" | |
::= { alarmNotification 85 } | |
MySqlOnlineAndUnreachableEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlOnlineAndUnreachable stop" | |
::= { alarmNotification 86 } | |
MySqlOnlineAndUnreachable NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlOnlineAndUnreachable raise" | |
::= { alarmNotification 87 } | |
MySqlReplicationFilterMismatchMasterEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationFilterMismatchMaster stop" | |
::= { alarmNotification 88 } | |
MySqlReplicationFilterMismatchMaster NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationFilterMismatchMaster raise" | |
::= { alarmNotification 89 } | |
MySqlReplicationFilterMismatchSlaveEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationFilterMismatchSlave stop" | |
::= { alarmNotification 90 } | |
MySqlReplicationFilterMismatchSlave NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationFilterMismatchSlave raise" | |
::= { alarmNotification 91 } | |
ReplicationFailoverBlacklistErrorEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ReplicationFailoverBlacklistError stop" | |
::= { alarmNotification 92 } | |
ReplicationFailoverBlacklistError NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ReplicationFailoverBlacklistError raise" | |
::= { alarmNotification 93 } | |
MySqlReplicationLooseServerEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationLooseServer stop" | |
::= { alarmNotification 94 } | |
MySqlReplicationLooseServer NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationLooseServer raise" | |
::= { alarmNotification 95 } | |
MySqlReplicationConfigProblemEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationConfigProblem stop" | |
::= { alarmNotification 96 } | |
MySqlReplicationConfigProblem NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlReplicationConfigProblem raise" | |
::= { alarmNotification 97 } | |
ReplicationLagEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ReplicationLag stop" | |
::= { alarmNotification 98 } | |
ReplicationLag NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ReplicationLag raise" | |
::= { alarmNotification 99 } | |
GenericLockFileEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GenericLockFile stop" | |
::= { alarmNotification 100 } | |
GenericLockFile NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm GenericLockFile raise" | |
::= { alarmNotification 101 } | |
HostSwappingEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSwapping stop" | |
::= { alarmNotification 102 } | |
HostSwapping NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSwapping raise" | |
::= { alarmNotification 103 } | |
HostDiskUsageEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostDiskUsage stop" | |
::= { alarmNotification 104 } | |
HostDiskUsage NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostDiskUsage raise" | |
::= { alarmNotification 105 } | |
HostRamUsageEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostRamUsage stop" | |
::= { alarmNotification 106 } | |
HostRamUsage NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostRamUsage raise" | |
::= { alarmNotification 107 } | |
HostSshAuthEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSshAuth stop" | |
::= { alarmNotification 108 } | |
HostSshAuth NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSshAuth raise" | |
::= { alarmNotification 109 } | |
HostFirewallEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostFirewall stop" | |
::= { alarmNotification 110 } | |
HostFirewall NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostFirewall raise" | |
::= { alarmNotification 111 } | |
HostUnreachableEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostUnreachable stop" | |
::= { alarmNotification 112 } | |
HostUnreachable NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostUnreachable raise" | |
::= { alarmNotification 113 } | |
HostCpuUsageEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostCpuUsage stop" | |
::= { alarmNotification 114 } | |
HostCpuUsage NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostCpuUsage raise" | |
::= { alarmNotification 115 } | |
HostSshFailedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSshFailed stop" | |
::= { alarmNotification 116 } | |
HostSshFailed NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSshFailed raise" | |
::= { alarmNotification 117 } | |
HostSudoErrorEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSudoError stop" | |
::= { alarmNotification 118 } | |
HostSudoError NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSudoError raise" | |
::= { alarmNotification 119 } | |
HostSwapV2End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSwapV2 stop" | |
::= { alarmNotification 120 } | |
HostSwapV2 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSwapV2 raise" | |
::= { alarmNotification 121 } | |
ProcessCpuUsageEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ProcessCpuUsage stop" | |
::= { alarmNotification 122 } | |
ProcessCpuUsage NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ProcessCpuUsage raise" | |
::= { alarmNotification 123 } | |
HostSshSlowEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSshSlow stop" | |
::= { alarmNotification 124 } | |
HostSshSlow NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostSshSlow raise" | |
::= { alarmNotification 125 } | |
ProcFailedRestartEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ProcFailedRestart stop" | |
::= { alarmNotification 126 } | |
ProcFailedRestart NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ProcFailedRestart raise" | |
::= { alarmNotification 127 } | |
StorageMyIsamEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm StorageMyIsam stop" | |
::= { alarmNotification 128 } | |
StorageMyIsam NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm StorageMyIsam raise" | |
::= { alarmNotification 129 } | |
ClusterTimeDriftEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterTimeDrift stop" | |
::= { alarmNotification 130 } | |
ClusterTimeDrift NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterTimeDrift raise" | |
::= { alarmNotification 131 } | |
ClusterLicenseExpireEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterLicenseExpire stop" | |
::= { alarmNotification 132 } | |
ClusterLicenseExpire NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterLicenseExpire raise" | |
::= { alarmNotification 133 } | |
ClusterFailureEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterFailure stop" | |
::= { alarmNotification 134 } | |
ClusterFailure NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterFailure raise" | |
::= { alarmNotification 135 } | |
ClusterSystemCheckEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterSystemCheck stop" | |
::= { alarmNotification 136 } | |
ClusterSystemCheck NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterSystemCheck raise" | |
::= { alarmNotification 137 } | |
ClusterLicenseCountEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterLicenseCount stop" | |
::= { alarmNotification 138 } | |
ClusterLicenseCount NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm ClusterLicenseCount raise" | |
::= { alarmNotification 139 } | |
StorageUtilizationPredictionEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm StorageUtilizationPrediction stop" | |
::= { alarmNotification 140 } | |
StorageUtilizationPrediction NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm StorageUtilizationPrediction raise" | |
::= { alarmNotification 141 } | |
MemoryPredictionEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MemoryPrediction stop" | |
::= { alarmNotification 142 } | |
MemoryPrediction NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MemoryPrediction raise" | |
::= { alarmNotification 143 } | |
SwapPredictionEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm SwapPrediction stop" | |
::= { alarmNotification 144 } | |
SwapPrediction NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm SwapPrediction raise" | |
::= { alarmNotification 145 } | |
MySqlLogFileAnalyzer0End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer0 stop" | |
::= { alarmNotification 146 } | |
MySqlLogFileAnalyzer0 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer0 raise" | |
::= { alarmNotification 147 } | |
MySqlLogFileAnalyzer1End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer1 stop" | |
::= { alarmNotification 148 } | |
MySqlLogFileAnalyzer1 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer1 raise" | |
::= { alarmNotification 149 } | |
MySqlLogFileAnalyzer2End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer2 stop" | |
::= { alarmNotification 150 } | |
MySqlLogFileAnalyzer2 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer2 raise" | |
::= { alarmNotification 151 } | |
MySqlLogFileAnalyzer3End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer3 stop" | |
::= { alarmNotification 152 } | |
MySqlLogFileAnalyzer3 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer3 raise" | |
::= { alarmNotification 153 } | |
MySqlLogFileAnalyzer4End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer4 stop" | |
::= { alarmNotification 154 } | |
MySqlLogFileAnalyzer4 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer4 raise" | |
::= { alarmNotification 155 } | |
MySqlLogFileAnalyzer5End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer5 stop" | |
::= { alarmNotification 156 } | |
MySqlLogFileAnalyzer5 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer5 raise" | |
::= { alarmNotification 157 } | |
MySqlLogFileAnalyzer6End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer6 stop" | |
::= { alarmNotification 158 } | |
MySqlLogFileAnalyzer6 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer6 raise" | |
::= { alarmNotification 159 } | |
MySqlLogFileAnalyzer7End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer7 stop" | |
::= { alarmNotification 160 } | |
MySqlLogFileAnalyzer7 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer7 raise" | |
::= { alarmNotification 161 } | |
MySqlLogFileAnalyzer8End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer8 stop" | |
::= { alarmNotification 162 } | |
MySqlLogFileAnalyzer8 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer8 raise" | |
::= { alarmNotification 163 } | |
MySqlLogFileAnalyzer9End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer9 stop" | |
::= { alarmNotification 164 } | |
MySqlLogFileAnalyzer9 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer9 raise" | |
::= { alarmNotification 165 } | |
MySqlLogFileAnalyzer10End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer10 stop" | |
::= { alarmNotification 166 } | |
MySqlLogFileAnalyzer10 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer10 raise" | |
::= { alarmNotification 167 } | |
MySqlLogFileAnalyzer11End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer11 stop" | |
::= { alarmNotification 168 } | |
MySqlLogFileAnalyzer11 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer11 raise" | |
::= { alarmNotification 169 } | |
MySqlLogFileAnalyzer12End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer12 stop" | |
::= { alarmNotification 170 } | |
MySqlLogFileAnalyzer12 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer12 raise" | |
::= { alarmNotification 171 } | |
MySqlLogFileAnalyzer13End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer13 stop" | |
::= { alarmNotification 172 } | |
MySqlLogFileAnalyzer13 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer13 raise" | |
::= { alarmNotification 173 } | |
MySqlLogFileAnalyzer14End NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer14 stop" | |
::= { alarmNotification 174 } | |
MySqlLogFileAnalyzer14 NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLogFileAnalyzer14 raise" | |
::= { alarmNotification 175 } | |
MySqlLongRunningQueryEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLongRunningQuery stop" | |
::= { alarmNotification 176 } | |
MySqlLongRunningQuery NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm MySqlLongRunningQuery raise" | |
::= { alarmNotification 177 } | |
SslConnectFailEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm SslConnectFail stop" | |
::= { alarmNotification 178 } | |
SslConnectFail NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm SslConnectFail raise" | |
::= { alarmNotification 179 } | |
HostCpuStealPercentHighEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostCpuStealPercentHigh stop" | |
::= { alarmNotification 180 } | |
HostCpuStealPercentHigh NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostCpuStealPercentHigh raise" | |
::= { alarmNotification 181 } | |
HostCpuIoWaitPercentHighEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostCpuIoWaitPercentHigh stop" | |
::= { alarmNotification 182 } | |
HostCpuIoWaitPercentHigh NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm HostCpuIoWaitPercentHigh raise" | |
::= { alarmNotification 183 } | |
BackupFailedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm BackupFailed stop" | |
::= { alarmNotification 184 } | |
BackupFailed NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm BackupFailed raise" | |
::= { alarmNotification 185 } | |
BackupVerificationFailedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm BackupVerificationFailed stop" | |
::= { alarmNotification 186 } | |
BackupVerificationFailed NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm BackupVerificationFailed raise" | |
::= { alarmNotification 187 } | |
BackupUploadToCloudFailedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm BackupUploadToCloudFailed stop" | |
::= { alarmNotification 188 } | |
BackupUploadToCloudFailed NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm BackupUploadToCloudFailed raise" | |
::= { alarmNotification 189 } | |
CertificateExpirationEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm CertificateExpiration stop" | |
::= { alarmNotification 190 } | |
CertificateExpiration NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm CertificateExpiration raise" | |
::= { alarmNotification 191 } | |
LbBackendDisconnectedEnd NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm LbBackendDisconnected stop" | |
::= { alarmNotification 192 } | |
LbBackendDisconnected NOTIFICATION-TYPE | |
OBJECTS { clusterId, severity, hostname, message, recommendation } | |
STATUS current | |
DESCRIPTION | |
"Notification of alarm LbBackendDisconnected raise" | |
::= { alarmNotification 193 } | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment