Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
11g Release 1 (10.3.6)

Part Number E13945-06

weblogic.management.runtime
Interface EntityCacheCumulativeRuntimeMBean

All Superinterfaces:
EntityCacheRuntimeMBean

public interface EntityCacheCumulativeRuntimeMBean
extends EntityCacheRuntimeMBean

This class is used for monitoring an XML Cache.

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime. For more information, see "Developing Manageable Applications with JMX" on http://www.oracle.com/technology/products/weblogic/index.html.


Method Summary
 double getAvgEntrySizeDiskPurged()
          Provides the cumulative average size of entries that have been purged from the disk cache.
 double getAvgEntrySizeMemoryPurged()
          Provides the average size of the all the entries that have been purged from the memory.
 double getDiskPurgesPerHour()
          Provides cumulative average number of purges from the disk cache per hour.
 double getMemoryPurgesPerHour()
          Provides the cumulative average number of entries that have been purged from the entity cache.
 Date getMostRecentDiskPurge()
          Provides the date of the most recent purge from the disk cache.
 Date getMostRecentMemoryPurge()
          Provides the date of the most recent purge of the entity cache.
 double getPercentRejected()
          Provides the cumulative percent of the potential entries to the entity cache that have been rejected.
 long getTotalItemsDiskPurged()
          Provides the total number of items that have been purged from the disk cache.
 long getTotalItemsMemoryPurged()
          Provides the cumulative number of items that have been purged from the entity cache.
 long getTotalNumberDiskPurges()
          Provides a count of the total number of entries that have been purged from the disk cache.
 long getTotalNumberMemoryPurges()
          Provides the cumulative number of entries that have been purged from the entity cache.
 long getTotalNumberOfRejections()
          Provides the cumulative total number of rejections of entries from the entity cache for the current session.
 long getTotalNumberOfRenewals()
          Provides a count of the cumulative number of entries that have been refreshed in the entity cache.
 long getTotalSizeOfRejections()
          Provides the cumulative total size of the rejections from the entity cache.
 
Methods inherited from interface weblogic.management.runtime.EntityCacheRuntimeMBean
getAvgPercentPersistent, getAvgPercentTransient, getAvgPerEntryDiskSize, getAvgPerEntryMemorySize, getAvgTimeout, getMaxEntryMemorySize, getMaxEntryTimeout, getMinEntryMemorySize, getMinEntryTimeout, getTotalCurrentEntries, getTotalPersistentCurrentEntries, getTotalTransientCurrentEntries
 

Method Detail

getTotalNumberMemoryPurges

long getTotalNumberMemoryPurges()

Provides the cumulative number of entries that have been purged from the entity cache.

Returns:
The totalNumberMemoryPurges value

getTotalItemsMemoryPurged

long getTotalItemsMemoryPurged()

Provides the cumulative number of items that have been purged from the entity cache.

Returns:
The totalItemsMemoryPurged value

getAvgEntrySizeMemoryPurged

double getAvgEntrySizeMemoryPurged()

Provides the average size of the all the entries that have been purged from the memory.

Returns:
The avgEntrySizeMemoryPurged value

getMostRecentMemoryPurge

Date getMostRecentMemoryPurge()

Provides the date of the most recent purge of the entity cache.

Returns:
The mostRecentMemoryPurge value

getMemoryPurgesPerHour

double getMemoryPurgesPerHour()

Provides the cumulative average number of entries that have been purged from the entity cache.

Returns:
The memoryPurgesPerHour value

getTotalNumberDiskPurges

long getTotalNumberDiskPurges()

Provides a count of the total number of entries that have been purged from the disk cache.

Returns:
The totalNumberDiskPurges value

getTotalItemsDiskPurged

long getTotalItemsDiskPurged()

Provides the total number of items that have been purged from the disk cache.

Returns:
The totalItemsDiskPurged value

getAvgEntrySizeDiskPurged

double getAvgEntrySizeDiskPurged()

Provides the cumulative average size of entries that have been purged from the disk cache.

Returns:
The avgEntrySizeDiskPurged value

getMostRecentDiskPurge

Date getMostRecentDiskPurge()

Provides the date of the most recent purge from the disk cache.

Returns:
The mostRecentDiskPurge value

getDiskPurgesPerHour

double getDiskPurgesPerHour()

Provides cumulative average number of purges from the disk cache per hour.

Returns:
The diskPurgesPerHour value

getTotalNumberOfRejections

long getTotalNumberOfRejections()

Provides the cumulative total number of rejections of entries from the entity cache for the current session.

Returns:
The totalNumberOfRejections value

getTotalSizeOfRejections

long getTotalSizeOfRejections()

Provides the cumulative total size of the rejections from the entity cache.

Returns:
The totalSizeOfRejections value

getPercentRejected

double getPercentRejected()

Provides the cumulative percent of the potential entries to the entity cache that have been rejected.

Returns:
The percentRejected value

getTotalNumberOfRenewals

long getTotalNumberOfRenewals()

Provides a count of the cumulative number of entries that have been refreshed in the entity cache.

Returns:
The totalNumberOfRenewals value

Copyright 1996, 2011, 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
Oracle WebLogic Server MBean Javadoc
11g Release 1 (10.3.6)

Part Number E13945-06