Journey Manager (JM) The transaction engine for the platform. | System Manager / DevOps | All versions This feature is related to all versions.
Manager allows you to view events related to each collaboration job. Events are added when the job actions are executed or processed, including:
Various services, invoked during a collaboration job execution, can write to the event log using the following Groovy code:
// logEvent closure
def logEvent = { msg ->
if ( isLogEvents ) {
// Logs to Job Action Event Tab
jobEventLogService.loglnfoEventWithAction((String) msg, jobAction)
}
}
To view the events related to a collaboration job:
The list displays the following details:
Manager stores collaboration job events in a separate table, so you can't find them in the event log.
You can also see errors that occurred during a collaboration job execution. Generally, errors are of greater severity than events.
Next, learn how to view collaboration job errors.