Jvmstat

Uses of Interface
sun.jvmstat.monitor.MonitoredVm

Packages that use MonitoredVm
sun.jvmstat.monitor Provides classes for monitoring instrumented HotSpot Java Virtual Machines. 
sun.jvmstat.monitor.event Provides classes for event types and event listeners for MonitoredHost and MonitoredVm events.. 
sun.jvmstat.monitor.remote Provides interfaces supporting remote monitoring for instrumented HotSpot Java Virtual Machines. 
sun.jvmstat.perfdata.monitor Provides the monitoring implementation classes that utilize the HotSpot PerfData shared memory instrumentation buffer for discovery and monitoring of instrumentation exported by a HotSpot Java Virtual Machine. 
sun.jvmstat.perfdata.monitor.protocol.file Provides the implementation classes for the file: protocol for the HotSpot PerfData instrumentation buffer monitoring implementation. 
sun.jvmstat.perfdata.monitor.protocol.local Provides the implementation classes for the local: protocol for the HotSpot PerfData instrumentation buffer monitoring implementation. 
sun.jvmstat.perfdata.monitor.protocol.rmi Provides the implementation classes for the rmi: protocol for the HotSpot PerfData instrumentation buffer monitoring implementation. 
 

Uses of MonitoredVm in sun.jvmstat.monitor
 

Methods in sun.jvmstat.monitor that return MonitoredVm
abstract  MonitoredVm MonitoredHost.getMonitoredVm(VmIdentifier id)
          Get the MonitoredVm for the given Java Virtual Machine.
abstract  MonitoredVm MonitoredHost.getMonitoredVm(VmIdentifier id, int interval)
          Get the MonitoredVm for the given Java Virtual Machine.
 

Methods in sun.jvmstat.monitor with parameters of type MonitoredVm
static String MonitoredVmUtil.commandLine(MonitoredVm vm)
          Return the command line for the target Java application.
abstract  void MonitoredHost.detach(MonitoredVm vm)
          Detach from the indicated MonitoredVm.
static boolean MonitoredVmUtil.isAttachable(MonitoredVm vm)
          Returns true if the VM supports attach-on-demand.
static String MonitoredVmUtil.jvmArgs(MonitoredVm vm)
          Return the JVM arguments for the target Java application.
static String MonitoredVmUtil.jvmFlags(MonitoredVm vm)
          Return the JVM flags for the target Java application.
static String MonitoredVmUtil.mainArgs(MonitoredVm vm)
          Return the arguments to the main class for the target Java application.
static String MonitoredVmUtil.mainClass(MonitoredVm vm, boolean fullPath)
          Return the main class for the target Java application.
static String MonitoredVmUtil.vmVersion(MonitoredVm vm)
          Return the Java Virtual Machine Version.
 

Uses of MonitoredVm in sun.jvmstat.monitor.event
 

Methods in sun.jvmstat.monitor.event that return MonitoredVm
 MonitoredVm VmEvent.getMonitoredVm()
          Return the MonitoredVm source of this event.
 

Constructors in sun.jvmstat.monitor.event with parameters of type MonitoredVm
MonitorStatusChangeEvent(MonitoredVm vm, List inserted, List removed)
          Construct a new MonitorStatusChangeEvent.
VmEvent(MonitoredVm vm)
          Construct a new VmEvent instance.
 

Uses of MonitoredVm in sun.jvmstat.monitor.remote
 

Subinterfaces of MonitoredVm in sun.jvmstat.monitor.remote
 interface BufferedMonitoredVm
          Interface to support asynchronous polling of the exported instrumentation of a target Java Virtual Machine.
 

Uses of MonitoredVm in sun.jvmstat.perfdata.monitor
 

Classes in sun.jvmstat.perfdata.monitor that implement MonitoredVm
 class AbstractMonitoredVm
          Base class for all MonitoredVm implementations that utilize the HotSpot PerfData instrumentation buffer as the communications mechanism to the target Java Virtual Machine.
 

Uses of MonitoredVm in sun.jvmstat.perfdata.monitor.protocol.file
 

Classes in sun.jvmstat.perfdata.monitor.protocol.file that implement MonitoredVm
 class FileMonitoredVm
          Concrete implementation of the AbstractMonitoredVm class for the file: protcol for the HotSpot PerfData monitoring implementation.
 

Methods in sun.jvmstat.perfdata.monitor.protocol.file that return MonitoredVm
 MonitoredVm MonitoredHostProvider.getMonitoredVm(VmIdentifier vmid)
          Get the MonitoredVm for the given Java Virtual Machine.
 MonitoredVm MonitoredHostProvider.getMonitoredVm(VmIdentifier vmid, int interval)
          Get the MonitoredVm for the given Java Virtual Machine.
 

Methods in sun.jvmstat.perfdata.monitor.protocol.file with parameters of type MonitoredVm
 void MonitoredHostProvider.detach(MonitoredVm vm)
          Detach from the indicated MonitoredVm.
 

Uses of MonitoredVm in sun.jvmstat.perfdata.monitor.protocol.local
 

Classes in sun.jvmstat.perfdata.monitor.protocol.local that implement MonitoredVm
 class LocalMonitoredVm
          Concrete implementation of the AbstractMonitoredVm class for the local: protocol for the HotSpot PerfData monitoring implementation.
 

Methods in sun.jvmstat.perfdata.monitor.protocol.local that return MonitoredVm
 MonitoredVm MonitoredHostProvider.getMonitoredVm(VmIdentifier vmid)
          Get the MonitoredVm for the given Java Virtual Machine.
 MonitoredVm MonitoredHostProvider.getMonitoredVm(VmIdentifier vmid, int interval)
          Get the MonitoredVm for the given Java Virtual Machine.
 

Methods in sun.jvmstat.perfdata.monitor.protocol.local with parameters of type MonitoredVm
 void MonitoredHostProvider.detach(MonitoredVm vm)
          Detach from the indicated MonitoredVm.
 

Uses of MonitoredVm in sun.jvmstat.perfdata.monitor.protocol.rmi
 

Classes in sun.jvmstat.perfdata.monitor.protocol.rmi that implement MonitoredVm
 class RemoteMonitoredVm
          Concrete implementation of the AbstractMonitoredVm class for the rmi: protocol for the HotSpot PerfData monitoring implementation.
 

Methods in sun.jvmstat.perfdata.monitor.protocol.rmi that return MonitoredVm
 MonitoredVm MonitoredHostProvider.getMonitoredVm(VmIdentifier vmid)
          Get the MonitoredVm for the given Java Virtual Machine.
 MonitoredVm MonitoredHostProvider.getMonitoredVm(VmIdentifier vmid, int interval)
          Get the MonitoredVm for the given Java Virtual Machine.
 

Methods in sun.jvmstat.perfdata.monitor.protocol.rmi with parameters of type MonitoredVm
 void MonitoredHostProvider.detach(MonitoredVm vm)
          Detach from the indicated MonitoredVm.
 


Jvmstat