Monitoring basics
You can configure message flows to emit events, which can then be read and used by other applications for transaction monitoring and auditing. Monitoring events are also used by the built-in business transaction monitoring capability that is provided by IBM® App Connect Enterprise, and by the record and replay capability.
The following sections introduce the concepts of monitoring:
- Monitoring events
- Event sources
- Transaction events
- Event output options
- Publishing monitoring events
For more information about business transaction monitoring, see Monitoring business transactions and Business transaction monitoring overview.
Monitoring events
- Transaction, including Transaction Started, Transaction Completed.
- Terminal, when a message flow node terminal propagates.
- The source of the event.
- The name of the event.
- A sequence number and creation time.
- A correlation ID for events that are emitted by the same transaction or unit of work.
- Application data that is extracted from the message.
- Part or all of the message bit stream.
- Click File.
- Click New.
- Select Message Model.
- Select IBM supplied.
- Click Next.
- Select Create an XML schema file by importing an IBM supplied definition.
- Click Next.
- Select an existing Application or Library, or create a new one.
- Select IBM App Connect Enterprise Monitoring Event from the list of IBM supplied messages.
- Click Finish.
You can also find the monitoring event schema at: install_location/server/sample/Monitoring/MonitoringEventV2.xsd or install_location/server/sample/Monitoring/MonitoringEventV1.json.
Event sources
An individual message flow can emit transaction events, terminal events, or both kinds of event. You can configure, enable, and disable both types of event by using the monitoring properties of the message flow, or by using a monitoring profile.
An event source address identifies an event source in a message flow.
Terminal events can be emitted from any node in a message flow. Therefore, these events can be used as an alternative to dedicated event-emitting nodes or subflows, such as the example supplied in SupportPac IA9V.
Event sources emit events only if monitoring is activated for the message flow.
Transaction events
Event source | Event source address | Description |
---|---|---|
Transaction start | Nodename.transaction.Start | The event is emitted when the message is read from the transport. |
Transaction end | Nodename.transaction.End | The event is emitted when IBM App Connect Enterprise completes all processing of the message. |
Transaction rollback | Nodename.transaction.Rollback | The event is emitted instead of transaction end if the message flow issues an exception that is not caught and processed in the flow. |
Events are emitted subject to the evaluation of the eventFilter
expression, as
described in Event output options.
If a message flow handles its own exceptions, a transaction end event is issued instead of a transaction rollback event because the flow takes control of the error and terminates normally. In this case, if you need to distinguish errors, you can configure terminal events at appropriate nodes in the flow.
Terminal events
Any terminal in a message flow can be an event source. If the event source is active, it emits an
event each time a message passes through the terminal, subject to the evaluation of the
eventFilter
expression. This expression is described in Event output options.
Event output options
$Body/StockTrade/Details/Value > 10000
The use of a filter can reduce the number of events that are emitted, and reduce the workload on
your monitoring application.3 >= $Root/MQMD/BackoutCount
Publishing monitoring events
- For events published on the IBM MQ pub/sub broker:
- XML:
$SYS/Broker/integrationNodeName/Monitoring/integrationServerName/flow_name
- JSON:
$SYS/Broker/integrationNodeName/MonitoringEvents/JSON/integrationServerName/flow_name
- XML:
- For events published on the MQTT pub/sub broker:
- XML:
IBM/IntegrationBus/integrationNodeName/Monitoring/integrationServerName/flow_name
- JSON:
IBM/IntegrationBus/integrationNodeName/MonitoringEvents/JSON/integrationServerName/flow_name
- XML:
Events can also be written to the file system in rotatable log files. The default path where the monitoring events are written to is the workDir/Common/MonitoringEvents subdirectory.
Monitoring events can also be published to a Logstash input plug-in in an Elasticsearch, Logstash, and Kibana (ELK) stack, so that you can display the reported information in a Kibana dashboard. For more information, see Reporting logs and monitoring events to a Logstash input in an ELK stack.
For more information about configuring the publication of event messages, see Configuring the publication of event messages.
The hierarchical structure allows subscribers to filter the events that they receive. One subscriber can receive events from all message flows in the integration node, while another receives only the events from a single integration server. For more information about publishing and subscribing to events, see Publish/subscribe overview.
- If you want an event to be emitted only if the message flow transaction commits, configure the event source to coordinate the events with the message flow transaction.
- If you want an event to be emitted regardless of whether the message flow transaction commits or rolls back, configure the event source to emit events out of sync point. Such events are available immediately.
- A group of events can be emitted together regardless of whether the message flow transaction commits or rolls back. If you want this option, you must configure the event source to emit events in an independent unit of work.
- Constructing the monitoring event from the Event Name, Event Filter, or Event Payload.
- Including the bit stream in the payload.