Package org.opennms.netmgt.notifd.jmx
Interface NotifdMBean
-
- All Superinterfaces:
BaseOnmsMBean
- All Known Implementing Classes:
Notifd
public interface NotifdMBean extends BaseOnmsMBean
NotifdMBean interface.
- Version:
- $Id: $
- Author:
- ranger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getBinaryNoticesAttempted()
long
getBinaryNoticesFailed()
long
getBinaryNoticesInterrupted()
long
getBinaryNoticesSucceeded()
long
getJavaNoticesAttempted()
long
getJavaNoticesFailed()
long
getJavaNoticesInterrupted()
long
getJavaNoticesSucceeded()
long
getNotificationTasksQueued()
long
getUnknownNoticesInterrupted()
-
Methods inherited from interface org.opennms.netmgt.daemon.BaseOnmsMBean
getStatus, getStatusText, init, start, status, stop
-
-
-
-
Method Detail
-
getNotificationTasksQueued
long getNotificationTasksQueued()
- Returns:
- The total number of notification tasks enqueued since Notifd was last started
-
getBinaryNoticesAttempted
long getBinaryNoticesAttempted()
- Returns:
- The total number of binary notifications attempted since Notifd was last started
-
getJavaNoticesAttempted
long getJavaNoticesAttempted()
- Returns:
- The total number of Java notifications attempted since Notifd was last started
-
getBinaryNoticesSucceeded
long getBinaryNoticesSucceeded()
- Returns:
- The total number of attempted binary notifications that succeeded since Notifd was last started
-
getJavaNoticesSucceeded
long getJavaNoticesSucceeded()
- Returns:
- The total number of attempted Java notifications that succeeded since Notifd was last started
-
getBinaryNoticesFailed
long getBinaryNoticesFailed()
- Returns:
- The total number of attempted binary notifications that failed (returned a non-zero exit code) since Notifd was last started
-
getJavaNoticesFailed
long getJavaNoticesFailed()
- Returns:
- The total number of attempted Java notifications that failed (returned a non-zero value) since Notifd was last started
-
getBinaryNoticesInterrupted
long getBinaryNoticesInterrupted()
- Returns:
- The total number of attempted binary notifications that were interrupted (threw an exception) since Notifd was last started.
-
getJavaNoticesInterrupted
long getJavaNoticesInterrupted()
- Returns:
- The total number of attempted Java notifications that were interrupted (threw an exception) since Notifd was last started
-
getUnknownNoticesInterrupted
long getUnknownNoticesInterrupted()
- Returns:
- The total number of unknown notifications that were interrupted (threw an exception) since Notifd was last started.
-
-