Chapter 15 Administration : tibemsDetailedDestStat

tibemsDetailedDestStat
Type
Purpose
Represents detailed destination statistics about objects such as topics, message consumers, or message producers.
Remarks
Detailed statistics are optionally collected by the server for wildcarded consumers, unidentified producers and routes.
 
Related Types
tibemsStatData on page 491
See Also
tibemsMsg_GetDestination on page 40
 
tibemsDetailedDestStat_GetDestinationName
Function
Purpose
Get the name of the destination.
C Declaration
tibems_status tibemsDetailedDestStat_GetDestinationName(
    tibemsDetailedDestStat detailedDestStat,
    char* name,
    tibems_int name_len);
COBOL Call
CALL "tibemsDetailedDestStat_GetDestinationName"
 USING BY VALUE detailedDestStat,
       BY REFERENCE destName,
       BY VALUE name_len,
       RETURNING tibems-status
END-CALL.
Parameters
 
Length of the name buffer.
See Also
tibemsDestinationType on page 143
 
tibemsDetailedDestStat_GetDestinationType
Function
Purpose
Get the type of the destination.
C Declaration
tibems_status tibemsDetailedDestStat_GetDestinationType(
    tibemsDetailedDestStat detailedDestStat,
    tibemsDestinationType* destType);
COBOL Call
CALL "tibemsDetailedDestStat_GetDestinationType"
 USING BY VALUE detailedDestStat,
       BY REFERENCE destType,
       RETURNING tibems-status
END-CALL.
Parameters
 
See Also
tibemsDestinationType on page 143
 
tibemsDetailedDestStat_GetStatData
Function
Purpose
Get statistics for a unidirectional destination.
C Declaration
tibems_status tibemsDetailedDestStat_GetStatData(
    tibemsDetailedDestStat detailDestStat,
    tibemsStatData* statData);
COBOL Call
CALL "tibemsDetailedDestStat_GetStatData"
 USING BY VALUE detailedDestStat,
       BY REFERENCE stat,
       RETURNING tibems-status
END-CALL.
Parameters
 
Remarks
This function retrieves unidirectional destination statistics. Unidirectional destinations statistics are collected for both producers and consumers.