Package org.frankframework.monitoring
Class Monitor
java.lang.Object
org.frankframework.monitoring.Monitor
- All Implemented Interfaces:
FrankElement
,HasApplicationContext
,HasName
,IConfigurable
,IScopeProvider
,NameAware
,ConfigurableLifecycle
,org.springframework.beans.factory.Aware
,org.springframework.beans.factory.DisposableBean
,org.springframework.context.ApplicationContextAware
,org.springframework.context.Lifecycle
,org.springframework.context.Phased
,org.springframework.context.SmartLifecycle
@FrankDocGroup(MONITORING)
public class Monitor
extends Object
implements ConfigurableLifecycle, NameAware, org.springframework.beans.factory.DisposableBean, FrankElement
Example configuration:
<Monitor name="Receiver Shutdown" destinations="MONITOR_LOG">
<AlarmTrigger severity="WARNING">
<Event>Receiver Shutdown</Event>
</AlarmTrigger>
<ClearingTrigger severity="WARNING">
<Event>Receiver Shutdown</Event>
</ClearingTrigger>
</Monitor>
- Since:
- 4.9
- Version:
- 2.0
- Author:
- Gerrit van Brakel, Niels Meijer
-
Field Summary
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addTrigger
(ITrigger trigger) void
changeMonitorState
(EventType eventType, Severity severity, String eventCode, MonitorEvent event) void
changeState
(ITrigger.TriggerType type, Severity severity, MonitorEvent event) protected void
clearEvents
(ITrigger.TriggerType alarm) void
Configure this component.void
destroy()
Destroy the monitor and all registered triggersint
org.springframework.context.ApplicationContext
This ClassLoader is set upon creation of the object, used to retrieve resources configured by the Ibis application.getName()
getTrigger
(int index) getType()
boolean
isRaised()
boolean
void
removeTrigger
(ITrigger trigger) void
setAdditionalHitCount
(int i) void
setAlarmSeverity
(Severity alarmSeverity) void
setApplicationContext
(org.springframework.context.ApplicationContext applicationContext) void
setDestinations
(String newDestinations) void
setDestinationSet
(Set<String> newDestinations) void
void
setRaised
(boolean b) void
void
start()
void
stop()
toXml()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.frankframework.lifecycle.ConfigurableLifecycle
getPhase, isAutoStartup
Methods inherited from interface org.springframework.context.SmartLifecycle
stop
-
Constructor Details
-
Monitor
public Monitor()
-
-
Method Details
-
setApplicationContext
public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext) - Specified by:
setApplicationContext
in interfaceorg.springframework.context.ApplicationContextAware
-
getApplicationContext
public org.springframework.context.ApplicationContext getApplicationContext()- Specified by:
getApplicationContext
in interfaceHasApplicationContext
-
configure
Description copied from interface:IConfigurable
Configure this component.configure()
is called once at startup of the framework in the configure method of the owner of thisIConfigurable
. Purpose of this method is to check whether the static configuration of the object is correct. As much as possible class-instantiating should take place in theconfigure()
, to improve performance.In the case of a container, this will propagate the configure signal to all components that apply.
- Specified by:
configure
in interfaceIConfigurable
- Throws:
ConfigurationException
- in case it was not able to configure the component.
-
changeState
public void changeState(ITrigger.TriggerType type, Severity severity, MonitorEvent event) throws MonitorException - Throws:
MonitorException
-
changeMonitorState
public void changeMonitorState(EventType eventType, Severity severity, String eventCode, MonitorEvent event) throws MonitorException - Throws:
MonitorException
-
clearEvents
-
toXml
-
getDestinationsAsString
-
setDestinations
-
getDestinationSet
-
setDestinationSet
-
addTrigger
-
removeTrigger
-
getLogPrefix
-
getTriggers
-
getTrigger
-
setName
-
setRaised
public void setRaised(boolean b) -
isRaised
public boolean isRaised() -
setAdditionalHitCount
public void setAdditionalHitCount(int i) -
getAdditionalHitCount
public int getAdditionalHitCount() -
destroy
public void destroy()Destroy the monitor and all registered triggers- Specified by:
destroy
in interfaceorg.springframework.beans.factory.DisposableBean
-
start
public void start()- Specified by:
start
in interfaceorg.springframework.context.Lifecycle
-
stop
public void stop()- Specified by:
stop
in interfaceorg.springframework.context.Lifecycle
-
isRunning
public boolean isRunning()- Specified by:
isRunning
in interfaceorg.springframework.context.Lifecycle
-
getConfigurationClassLoader
Description copied from interface:IScopeProvider
This ClassLoader is set upon creation of the object, used to retrieve resources configured by the Ibis application.- Specified by:
getConfigurationClassLoader
in interfaceHasApplicationContext
- Specified by:
getConfigurationClassLoader
in interfaceIScopeProvider
- Returns:
- returns the ClassLoader created by the
ClassLoaderManager
.
-
getName
-
getType
-
setType
-
getStateChanged
-
getLastHit
-
getAlarmSeverity
-
setAlarmSeverity
-
getRaisedBy
-