View Collaboration Job Events

   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:

  • Info events are generated when the action proceeds normally. The action status is Completed, Invoked, Assigned, Pending, and so on.
  • Error events are generated where and exception is thrown by the action processing or the result of the action processing is determined to be an error. Errors will also appear in the Errors tab.
  • Custom Groovy Job Actions can write either an error or info event to the JobEventLog Server.

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:

  1. Select Operations > Collaboration Jobs.
  2. Locate a collaboration job and click View.
  3. Select the Events tab to see the collaboration job's events and their basic information such as:
    • ID is the event ID. Click ID to see the job event details.
    • Type is the type of the event, which can be info or error.
    • Message is a meaningful description of the event.
    • Created is a times tamp of the event.
    • Username is a user of the event.
  4. Click View to see the job event details.
  5. Click Close.
Note

Manager stores collaboration job events in a separate table, so you can't find them in the event log.

Note

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.