Skip navigation links

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

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.management.runtime
Interface WTCStatisticsRuntimeMBean

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

public interface WTCStatisticsRuntimeMBean
extends RuntimeMBean

This class is used to:


Method Summary
abstract  TabularData getConnectionStatistics()
          Returns all statistics data for all configured WTC connections.
abstract  TabularData getExportedServiceStatistics()
          Returns all statistics data for all exported services.
abstract  TabularData getImportedServiceStatistics()
          Returns all statistics data for all imported services.
abstract  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.
abstract  long getInboundMessageTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of inbound non-conversational, non-CORBA request messages received by this WTC connection.
abstract  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.
abstract  long getInboundNWMessageTotalSize(String LDomAccessPointId, String RDomAccessPointId)
          Returns the total message size of inbound non-conversational, non-CORBA messages received on this WTC connection.
abstract  long getInboundNWMessageTotalSize(String svcName, String lDomAccessPointId, boolean isImport)
          Returns the total size of inbound non-conversational, non-CORBA messages received by this exported Service.
abstract  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.
abstract  long getInTransactionCommittedTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of inbound transactions committed on this WTC connection.
abstract  long getInTransactionRolledBackTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of inbound transactions rolled back on this WTC connection.
abstract  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.
abstract  long getOutboundMessageTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of outbound non-conversational, non-CORBA messages received by this WTC connection.
abstract  long getOutboundMessageTotalCount(String svcName, String lDomAccessPointId, String rDomAccessPointIdList)
          Returns the total number of outbound non-conversational, non-CORBA messages send to this imported Service.
abstract  long getOutboundNWMessageTotalSize(String LDomAccessPointId, String RDomAccessPointId)
          Returns the total size of outbound non-conversational, non-CORBA messages received on this WTC connection.
abstract  long getOutboundNWMessageTotalSize(String svcName, String lDomAccessPointId, String rDomAccessPointIdList)
          Returns the total size of outbound non-conversational, non-CORBA messages send to this imported Service.
abstract  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.
abstract  long getOutstandingNWReqCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the current number of outstanding inbound non-conversational, non-CORBA requests received on this WTC connection.
abstract  long getOutstandingNWReqCount(String svcName, String lDomAccessPointId, String rDomAccessPointIdList)
          Returns the current number of outstanding non-conversational, non-CORBA requests for specific imported/exported service.
abstract  long getOutTransactionCommittedTotalCount(String lDomAccessPointId, String rDomAccessPointId)
          Returns the total number of outbound transaction commited on this WTC connection.
abstract  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.runtime.RuntimeMBean
addPropertyChangeListener, removePropertyChangeListener

 

Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, 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.

Skip navigation links

Copyright 1996, 2015, 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.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09