Viewing Send Master Processing Performance Statistics

When working with Integration Broker MIME projects, you can gather processing performance statistics.

To enable the Send Master processing performance feature, select Gather Statistics on the Headers Cont. tab.

When the Gather Statistics feature is enabled, Send Master returns processing statistics in the Output Information section after a Post.

To access statistics information , from the View drop-down list, select Meta Data and then click the If Valid XML, Format button.

The data is contained in the following tag:

<IBProfileInformation>

Send Master returns statistics relating to processing on the application server and gateway, as well as response processing.

Note: All values returned are expressed in milliseconds.

This table describes the statistics that Send Master returns related to processing on the application server.

Statistic

Description

TransformInbound

Time to process any inbound transformations.

OnRoutePeopleCode

Time to execute OnRoute PeopleCode.

OnRequestPeopleCode

Time to execute OnRequest PeopleCode.

TransformOutbound

Time to process any outbound transformations.

DataBase

Time for processing on the database.

AppServerSendTime

Time to send the request to the application server. This value is not applicable in Send Master, because Send Master (not the application) is sending the request.

AppServerRecvTime

Processing time on the application server.

This table describes the statistics that Send Master returns related to processing on the integration gateway.

Statistics

Description

Connector

Time that processing took place on the connector.

Transform

Time to perform gateway transformations.

GatewayTime

Processing time on the integration gateway.

This table describes the statistics that Send Master returns related to processing the response service operation.

Statistics

Description

Transform

Time to perform transformation on the response.

GatewayTime

Total time for processing the response on the integration gateway.

The following example shows a sample of statistics that Send Master returns.

<?xml version="1.0"?>
<IBInfo>
    <TransactionID>
        <![CDATA[QE_UNDERDOG.QE_SALES_ORDER_SYNC_CHNL.af21859e-f5e7-11d7-
        b7f0-88b716eecd9a]]>
    </TransactionID>
    <Status>
        <StatusCode>0</StatusCode>
        <MsgSet>158</MsgSet>
        <MsgID>10000</MsgID>
    </Status>
    <ContentSections>
        <ContentSection>
            <ID>ContentSection0</ID>
            <NonRepudiation>N</NonRepudiation>
            <Headers>
                <version>
                    <![CDATA[VERSION_1]]>
                </version>
            </Headers>
        </ContentSection>
    </ContentSections>
    <IBProfileInformation>
        <keyword><AppServer></keyword>
            <keyword><TransformInbound>0</TransformInbound></keyword>
            <keyword><OnRoutePeopleCode>0</OnRoutePeopleCode></keyword>
            <keyword><OnRequestPeopleCode>0</OnRequestPeopleCode></keyword>
            <keyword><TransformOutbound>0</TransformOutbound></keyword>
            <keyword><DataBase>0</DataBase></keyword>
            <keyword><AppServerSendTime>0</AppServerSendTime></keyword>
            <keyword><AppServerRecvTime>0</AppServerRecvTime></keyword>
        <keyword></AppServer></keyword>
        <keyword><GatewayRequest></keyword>
            <keyword><Connector>24844</Connector></keyword>
            <keyword><Transform>0</Transform></keyword>
            <keyword><GatewayTime>651</GatewayTime></keyword>
        <keyword></GatewayRequest></keyword>
        <keyword><GatewayResponse></keyword>
            <keyword><Transform>0</Transform></keyword>
            <keyword><GatewayTime>211</GatewayTime></keyword>
        <keyword></GatewayResponse></keyword>
    <keyword></IBProfileInformation></keyword>

</IBInfo>