In this section:

Command Syntax

> show status alarms
	currentStatus <alarm Id> 
		clearType
        desc
        reporter
        severity
        timestamp
		localTimeStamp
		localInitialTimeStamp
    historyStatus <alarm Id>
        desc
        reporter
        severity
        state
        timestamp
		localTimeStamp

Command Parameters

Parameter

Description

currentStatus

Displays status of current outstanding alarms.

  • <alarm Id> – Alarm identifier.
  • clearType – Type of clear: AUTOMATIC or MANUAL.
  • desc – Alarm description.
  • reporter – Name of the task reporting this Alarm.
  • severity – Alarm severity.
  • timestamp – Time when the alarm was raised.
  • localTimeStamp –  The last time the alarm was raised in local time zone format.
  • localInitialTimeStamp – The first time the alarm was raised in local time zone format.
historyStatus

Displays history of alarms depending upon options selected.

  • <alarm Id> – Alarm identifier.
  • desc – Alarm description.
  • reporter – Name of task reporting alarm.
  • severity – Alarm severity.
  • state – Alarm state (SET, CLEAR OR MAN CLR).
  • timestamp – Timestamp when the alarm was raised.
  • localTimeStamp –  The last time the alarm was raised in local time zone format.

Command Example

admin@VM01> show status alarms currentStatus  
currentStatus 461 {
    clearType             AUTOMATIC;
    timestamp             2021-04-22T05:32:42-00:00;
    initialTimestamp      2021-04-22T05:32:42-00:00;
    localTimestamp        2021-04-22T11:02:42;
    localInitialTimestamp 2021-04-22T11:02:42;
    count                 1;
    desc                  "The number of log files of type 'ACT' has reached 78 percent of the configured maximum (25/32). Please process and remove files!";
    reporter              ENM;
    severity              Major;
    acknowledgeState      unAcknowledge;
    comment               "";
}
currentStatus 462 {
    clearType             AUTOMATIC;
    timestamp             2021-04-22T05:32:42-00:00;
    initialTimestamp      2021-04-22T05:32:42-00:00;
    localTimestamp        2021-04-22T11:02:42;
    localInitialTimestamp 2021-04-22T11:02:42;
    count                 1;
    desc                  "The number of log files of type 'MEM' has reached 100 percent of the configured maximum (32/32). Please process and remove files!";
    reporter              ENM;
    severity              Major;
    acknowledgeState      unAcknowledge;
    comment               "";
}

admin@VM01> show status alarms historyStatus 
historyStatus 461 {
    timestamp        2021-04-22T05:32:42-00:00;
    localTimestamp   2021-04-22T11:02:42;
    state            SET;
    desc             "The number of log files of type 'ACT' has reached 78 percent of the configured maximum (25/32). Please process and remove files!";
    reporter         ENM;
    severity         Major;
    initialTimestamp 2021-04-22T05:32:42-00:00;
    count            1;
    acknowledgeState unAcknowledge;
    comment          "";
}
historyStatus 462 {
    timestamp        2021-04-22T05:32:42-00:00;
    localTimestamp   2021-04-22T11:02:42;
    state            SET;
    desc             "The number of log files of type 'MEM' has reached 100 percent of the configured maximum (32/32). Please process and remove files!";
    reporter         ENM;
    severity         Major;
    initialTimestamp 2021-04-22T05:32:42-00:00;
    count            1;
    acknowledgeState unAcknowledge;
    comment          "";
}