Management Events  Locate

Each logging event has the following attributes:

Event typeEach generated event has a type attribute.
Message parametersUsed for formatting the message
eventParametersA map of custom event parameters that can be used by custom event listeners
throwableException associated with an event
severity(OFF, FATAL, ERROR, WARN, INFO, FINE) - Severity of the event
Category nameSpecifies logger (used by logging frameworks such as java.util.logging or Log4J).
Message textUser message

LogEvent severities:

LevelExplanation
OFFThe OFF level is intended to turn off logging.
FINEFINE designates fine-grained informational events that are most useful for debugging an application.
INFOINFO designates informational messages that highlight the progress of the application at the coarse-grained level.
WARNThe WARN level designates potentially harmful situations.
ERRORThe ERROR severity designates error events that may allow the application to continue running.
FATALThe FATAL level designates very severe error events that will presumably cause the application to abort.

Each WSO2 SOA Enablement Server log event is extended from com.systinet.wasp.monitoring.events.WaspLogEvent. All custom log events must either extend this class or implement org.systinet.monitoring.Event.

List of default events in WSO2 SOA Enablement Server:

Default event (com.systinet.monitoring.events)Event typeDescription
LogEventServerStartID - WSP4001Fired after successful startup of server.
LogEventServerStopID - WSP4002Fired during server shutdown as first action in shutdown process.
LogEventServiceStartID - WSP4003Fired in WSO2 SOA Enablement Server Runtime API during service state management.
LogEventServiceStopID - WSP4004Fired in WSO2 SOA Enablement Server Runtime API during service state management.
LogEventServerLogID - WSP4005

Fired in WSO2 SOA Enablement Server logging API (com.idoox.debug.Category). The severity of this event depends on the priority of the logged message.

LogEventServerLog event is fired only if the log message has priority com.idoox.debug.Category.INFO, com.idoox.debug.Category.WARN, or com.idoox.debug.Category.ERROR.

LogEventUserLogID - USR4005Fired in WSO2 SOA Enablement Server logging API (org.systinet.logging.Category). The severity ranking of this event is the same as for the LogEventServerLog event.
LogEventAuthFailedID - WSP5001Fired in WSO2 SOA Enablement Server security subsystem after failed authentication.
LogEventAuthSuccessID - WSP5002Fired in WSO2 SOA Enablement Server security subsystem after successful authentication.
LogEventAZFailedID - WSP5003Fired in WSO2 SOA Enablement Server security subsystem after failed authorization check.
LogEventAZSuccessID - WSP5004Fired in WSO2 SOA Enablement Server security subsystem after successful authorization check.