Selective Tracking

You can create a Request Monitoring Exits that can selectively track requests by implementing the TrackingTokenInterface Interface.

A stakeholder token contains a monitoring product's stakeholder identifier, which is a single character in the range A-Z or a-z. Monitoring products are encouraged to register their chosen identifier with IBM(CICS Transaction Gateway) to ensure it is unique.

Use TrackingTokenInterface Interface to implement Selective Tracking.

Create a Request Monitoring Exit that implements the TrackingTokenInterface interface and return your stakeholder identifier on calling the TrackingTokenInterface.getStakeholderIdentifier() method.

The format of the stakeholder token is shown in the following table.
Bytes Field Type Description
0 Stakeholder identifier Character Character in the range A-Z or a-z, registered as the stakeholder's identifier.

Registered Stake Holder Identifiers

The following products are registered stake holder identifiers.
Stakeholder Identifier Product
Z IBM Z APM Connect

To register your product for a stakeholder identifier, contact an IBM representative(CICS TG) or submit a request in the RFE community.

Samples

Sample for Implementing the TrackingTokenInterface Interface in Request Monitoring Exits.

public class BasicMonitor implements RequestExit, TrackingTokenInterface {

@Override
	public Character getStakeholderIdentifier() {
	// TODO Auto-generated method stub
		return 'Z';
	}

}