Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.management.runtime
Interface WTCStatisticsRuntimeMBean

All Superinterfaces:
DynamicMBean, MBeanRegistration, NotificationBroadcaster, RuntimeMBean, WebLogicMBean

public interface WTCStatisticsRuntimeMBean
extends RuntimeMBean

This class is used to 1. query statistics of WTC connections. 2. query statistics of WTC imported and exported services.


Method Summary
 TabularData getConnectionStatistics()
          Returns all statistics data for all configured WTC connections.
 TabularData getExportedServiceStatistics()
          Returns all statistics data for all exported services.
 TabularData getImportedServiceStatistics()
          Returns all statistics data for all imported services.
 long getInboundFailReqTotalCount(String svcName, String lDomAccessPointId, boolean isImport)
          Returns the total number of inbound non-conversational, non-CORBA request that return failure by specific exported service.
 long getInboundMessageTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of inbound non-conversational, non-CORBA request messages received by this WTC connection.
 long getInboundMessageTotalCount(String svcName, String lDomAccessPointId, boolean isImport)
          Returns the total number of inbound non-conversational, non-CORBA request messages received by this exported Service.
 long getInboundNWMessageTotalSize(String LDomAccessPointId, String RDomAccessPointId)
          Returns the total message size of inbound non-conversational, non-CORBA messages received on this WTC connection.
 long getInboundNWMessageTotalSize(String svcName, String lDomAccessPointId, boolean isImport)
          Returns the total size of inbound non-conversational, non-CORBA messages received by this exported Service.
 long getInboundSuccessReqTotalCount(String svcName, String lDomAccessPointId, boolean isImport)
          Returns the total number of inbound non-conversational, non-CORBA request that successfully handled by specific exported service.
 long getInTransactionCommittedTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of inbound transactions committed on this WTC connection.
 long getInTransactionRolledBackTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of inbound transactions rolled back on this WTC connection.
 long getOutboundFailReqTotalCount(String svcName, String lDomAccessPointId, String rDomAccessPointIdList)
          Returns the total number of outbound non-conversational, non-CORBA requests return failure by specific imported service.
 long getOutboundMessageTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of outbound non-conversational, non-CORBA messages received by this WTC connection.
 long getOutboundMessageTotalCount(String svcName, String lDomAccessPointId, String rDomAccessPointIdList)
          Returns the total number of outbound non-conversational, non-CORBA messages send to this imported Service.
 long getOutboundNWMessageTotalSize(String LDomAccessPointId, String RDomAccessPointId)
          Returns the total size of outbound non-conversational, non-CORBA messages received on this WTC connection.
 long getOutboundNWMessageTotalSize(String svcName, String lDomAccessPointId, String rDomAccessPointIdList)
          Returns the total size of outbound non-conversational, non-CORBA messages send to this imported Service.
 long getOutboundSuccessReqTotalCount(String svcName, String lDomAccessPointId, String rDomAccessPointIdList)
          Returns the total number of outbound non-conversational, non-CORBA requests successfully handled by specific imported service.
 long getOutstandingNWReqCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the current number of outstanding inbound non-conversational, non-CORBA requests received on this WTC connection.
 long getOutstandingNWReqCount(String svcName, String lDomAccessPointId, String rDomAccessPointIdList)
          Returns the current number of outstanding non-conversational, non-CORBA requests for specific imported/exported service.
 long getOutTransactionCommittedTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of outbound transaction commited on this WTC connection.
 long getOutTransactionRolledBackTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of outbound trsactions rolled backed on this WTC connection.
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 

Method Detail

getInboundMessageTotalCount

long getInboundMessageTotalCount(String lDomAccessPointId,
                                 String rDomAccessPointId)
Returns the total number of inbound non-conversational, non-CORBA request messages received by this WTC connection. The WTC connection is identified by lDomAccessPointId and rDomAccessPointId pair.

Parameters:
lDomAccessPointId - The local domain access point id.
rDomAccessPointId - The remote domain access point id.
Returns:
The InboundMessageTotalCount value

getInboundMessageTotalCount

long getInboundMessageTotalCount(String svcName,
                                 String lDomAccessPointId,
                                 boolean isImport)
Returns the total number of inbound non-conversational, non-CORBA request messages received by this exported Service. If specified service is imported, the return value should be 0.

Parameters:
svcName - The service resource name.
lDomAccessPointId - The local access point ID for this exported service.
isImport - Should be false to get value for exported service.
Returns:
The InboundMessageTotalCount value

getInboundSuccessReqTotalCount

long getInboundSuccessReqTotalCount(String svcName,
                                    String lDomAccessPointId,
                                    boolean isImport)
Returns the total number of inbound non-conversational, non-CORBA request that successfully handled by specific exported service. If specified service is imported, the return value should be 0.

Parameters:
svcName - The service resource name.
lDomAccessPointId - The local access point ID for this exported service.
isImport - Should be false to get value for exported service.
Returns:
The InboundSuccessReqTotalCount value

getInboundFailReqTotalCount

long getInboundFailReqTotalCount(String svcName,
                                 String lDomAccessPointId,
                                 boolean isImport)
Returns the total number of inbound non-conversational, non-CORBA request that return failure by specific exported service. If specified service is imported, the return value should be 0.

Parameters:
svcName - The service resource name.
lDomAccessPointId - The local access point ID for this exported service.
isImport - Should be false to get value for exported service.
Returns:
The InboundFailReqTotalCount value

getOutboundMessageTotalCount

long getOutboundMessageTotalCount(String lDomAccessPointId,
                                  String rDomAccessPointId)
Returns the total number of outbound non-conversational, non-CORBA messages received by this WTC connection. The WTC connection is identified by lDomAccessPointId and rDomAccessPointId pair.

Parameters:
lDomAccessPointId - The local domain access point id.
rDomAccessPointId - The remote domain access point id.
Returns:
The OutboundMessageTotalCount value

getOutboundMessageTotalCount

long getOutboundMessageTotalCount(String svcName,
                                  String lDomAccessPointId,
                                  String rDomAccessPointIdList)
Returns the total number of outbound non-conversational, non-CORBA messages send to this imported Service. If specified service is exported, the return value should be 0.

Parameters:
svcName - The service name.
lDomAccessPointId - The local access point ID.
rDomAccessPointIdList - The remote access point ID list.
Returns:
The OutboundMessageTotalCount value

getOutboundSuccessReqTotalCount

long getOutboundSuccessReqTotalCount(String svcName,
                                     String lDomAccessPointId,
                                     String rDomAccessPointIdList)
Returns the total number of outbound non-conversational, non-CORBA requests successfully handled by specific imported service. If specified service is exported, the return value should be 0.

Parameters:
svcName - The service name.
lDomAccessPointId - The local access point ID.
rDomAccessPointIdList - The remote access point ID list.
Returns:
The OutboundSuccessReqTotalCount value

getOutboundFailReqTotalCount

long getOutboundFailReqTotalCount(String svcName,
                                  String lDomAccessPointId,
                                  String rDomAccessPointIdList)
Returns the total number of outbound non-conversational, non-CORBA requests return failure by specific imported service. If specified service is exported, the return value should be 0.

Parameters:
svcName - The service name.
lDomAccessPointId - The local access point ID.
rDomAccessPointIdList - The remote access point ID list.
Returns:
The OutboundFailReqTotalCount value

getInboundNWMessageTotalSize

long getInboundNWMessageTotalSize(String LDomAccessPointId,
                                  String RDomAccessPointId)
Returns the total message size of inbound non-conversational, non-CORBA messages received on this WTC connection. The WTC connection is defined by LDomAccessPointId and RDomAccessPointId pair.

Parameters:
LDomAccessPointId - The local domain access point id.
RDomAccessPointId - The remote domain access point id.
Returns:
The InboundNWMessageTotalSize value

getInboundNWMessageTotalSize

long getInboundNWMessageTotalSize(String svcName,
                                  String lDomAccessPointId,
                                  boolean isImport)
Returns the total size of inbound non-conversational, non-CORBA messages received by this exported Service. If specified service is imported, the return value should be 0.

Parameters:
svcName - The service resource name.
lDomAccessPointId - The local access point ID for this exported service.
isImport - Should be false to get value for exported service.
Returns:
The InboundNWMessageTotalSize value

getOutboundNWMessageTotalSize

long getOutboundNWMessageTotalSize(String LDomAccessPointId,
                                   String RDomAccessPointId)
Returns the total size of outbound non-conversational, non-CORBA messages received on this WTC connection. The WTC connection is defined by LDomAccessPointId and RDomAccessPointId pair.

Parameters:
LDomAccessPointId - The local domain access point id.
RDomAccessPointId - The remote domain access point id.
Returns:
The OutboundNWMessageTotalSize value

getOutboundNWMessageTotalSize

long getOutboundNWMessageTotalSize(String svcName,
                                   String lDomAccessPointId,
                                   String rDomAccessPointIdList)
Returns the total size of outbound non-conversational, non-CORBA messages send to this imported Service. If specified service is exported, the return value should be 0.

Parameters:
svcName - The service name.
lDomAccessPointId - The local access point ID.
rDomAccessPointIdList - The remote access point ID list.
Returns:
The OutboundNWMessageTotalSize value

getOutstandingNWReqCount

long getOutstandingNWReqCount(String lDomAccessPointId,
                              String rDomAccessPointId)
Returns the current number of outstanding inbound non-conversational, non-CORBA requests received on this WTC connection. The WTC connection is defined by LDomAccessPointId and RDomAccessPointId pair.

Parameters:
lDomAccessPointId - The local domain access point id.
rDomAccessPointId - The remote domain access point id.
Returns:
The OutstandingNWReqCount value

getOutstandingNWReqCount

long getOutstandingNWReqCount(String svcName,
                              String lDomAccessPointId,
                              String rDomAccessPointIdList)
Returns the current number of outstanding non-conversational, non-CORBA requests for specific imported/exported service.

Parameters:
svcName - The service name.
lDomAccessPointId - Local access point.
rDomAccessPointIdList - Remote Access Point ID List. If null, then the service is an exported service.
Returns:
The OutstandingNWReqCounts value

getInTransactionCommittedTotalCount

long getInTransactionCommittedTotalCount(String lDomAccessPointId,
                                         String rDomAccessPointId)
Returns the total number of inbound transactions committed on this WTC connection. The WTC connection is defined by lDomAccessPointId and rDomAccessPointId pair.

Parameters:
lDomAccessPointId - The local domain access point id.
rDomAccessPointId - The remote domain access point id.
Returns:
The InTransactionCommittedTotalCount value

getInTransactionRolledBackTotalCount

long getInTransactionRolledBackTotalCount(String lDomAccessPointId,
                                          String rDomAccessPointId)
Returns the total number of inbound transactions rolled back on this WTC connection. The WTC connection is defined by lDomAccessPointId and rDomAccessPointId pair.

Parameters:
lDomAccessPointId - The local domain access point id.
rDomAccessPointId - The remote domain access point id.
Returns:
The InTransactionRolledBackTotalCount value

getOutTransactionCommittedTotalCount

long getOutTransactionCommittedTotalCount(String lDomAccessPointId,
                                          String rDomAccessPointId)
Returns the total number of outbound transaction commited on this WTC connection. The WTC connection is defined by lDomAccessPointId and rDomAccessPointId pair.

Parameters:
lDomAccessPointId - The local domain access point id.
rDomAccessPointId - The remote domain access point id.
Returns:
The OutTransactionCommittedTotalCount value

getOutTransactionRolledBackTotalCount

long getOutTransactionRolledBackTotalCount(String lDomAccessPointId,
                                           String rDomAccessPointId)
Returns the total number of outbound trsactions rolled backed on this WTC connection. The WTC connection is defined by lDomAccessPointId and rDomAccessPointId pair.

Parameters:
lDomAccessPointId - The local domain access point id.
rDomAccessPointId - The remote domain access point id.
Returns:
The OutTransactionRolledBackTotalCount value

getConnectionStatistics

TabularData getConnectionStatistics()
Returns all statistics data for all configured WTC connections.

Returns:
The pre-defined TabularData.

getImportedServiceStatistics

TabularData getImportedServiceStatistics()
Returns all statistics data for all imported services.

Returns:
The pre-defined TabularData.

getExportedServiceStatistics

TabularData getExportedServiceStatistics()
Returns all statistics data for all exported services.

Returns:
The pre-defined TabularData.

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02