This class is not part of the public API.

Interface: sun.management.HotspotRuntimeMBean

  • public interface HotspotRuntimeMBean
Hotspot internal management interface for the runtime system. This management interface is internal and uncommitted and subject to change without notice.

Methods

  • getInternalRuntimeCounterstop

    public List<Counter> getInternalRuntimeCounters()
    Returns a list of internal counters maintained in the Java virtual machine for the runtime system.
    Return:
    @return a List of internal counters maintained in the VM for the runtime system.
    Google Code Search
    Stack Overflow
  • getSafepointCounttop

    public long getSafepointCount()
    Returns the number of safepoints taken place since the Java virtual machine started.
    Return:
    @return the number of safepoints taken place since the Java virtual machine started.
    Google Code Search
    Stack Overflow
  • getSafepointSyncTimetop

    public long getSafepointSyncTime()
    Returns the accumulated time spent getting to safepoints in milliseconds.
    Return:
    @return the accumulated time spent getting to safepoints in milliseconds.
    Google Code Search
    Stack Overflow
  • getTotalSafepointTimetop

    public long getTotalSafepointTime()
    Returns the accumulated time spent at safepoints in milliseconds. This is the accumulated elapsed time that the application has been stopped for safepoint operations.
    Return:
    @return the accumulated time spent at safepoints in milliseconds.
    Google Code Search
    Stack Overflow