Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 17 jdk.jcmd.jmod - JCmd Tool
JDK 17 jdk.jcmd.jmod is the JMOD file for JDK 17 JCmd tool, which can be invoked by the "jcmd" command.
JDK 17 JCmd tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jcmd.jmod.
JDK 17 JCmd tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JCmd source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.jcmd.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/tools/jstat/Jstat.java
/* * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.tools.jstat; import java.util.*; import sun.jvmstat.monitor.*; import sun.jvmstat.monitor.event.*; /** * Application to output jvmstat statistics exported by a target Java * Virtual Machine. The jstat tool gets its inspiration from the suite * of 'stat' tools, such as vmstat, iostat, mpstat, etc., available in * various UNIX platforms. * * @author Brian Doherty * @since 1.5 */ public class Jstat { private static Arguments arguments; public static void main(String[] args) { try { arguments = new Arguments(args); } catch (IllegalArgumentException e) { System.err.println(e.getMessage()); Arguments.printUsage(System.err); System.exit(1); } if (arguments.isHelp()) { Arguments.printUsage(System.out); System.exit(0); } if (arguments.isOptions()) { OptionLister ol = new OptionLister(arguments.optionsSources()); ol.print(System.out); System.exit(0); } try { if (arguments.isList()) { logNames(); } else if (arguments.isSnap()) { logSnapShot(); } else { logSamples(); } } catch (MonitorException e) { e.printStackTrace(); System.exit(1); } System.exit(0); } static void logNames() throws MonitorException { VmIdentifier vmId = arguments.vmId(); int interval = arguments.sampleInterval(); MonitoredHost monitoredHost = MonitoredHost.getMonitoredHost(vmId); MonitoredVm monitoredVm = monitoredHost.getMonitoredVm(vmId, interval); JStatLogger logger = new JStatLogger(monitoredVm); logger.printNames(arguments.counterNames(), arguments.comparator(), arguments.showUnsupported(), System.out); monitoredHost.detach(monitoredVm); } static void logSnapShot() throws MonitorException { VmIdentifier vmId = arguments.vmId(); int interval = arguments.sampleInterval(); MonitoredHost monitoredHost = MonitoredHost.getMonitoredHost(vmId); MonitoredVm monitoredVm = monitoredHost.getMonitoredVm(vmId, interval); JStatLogger logger = new JStatLogger(monitoredVm); logger.printSnapShot(arguments.counterNames(), arguments.comparator(), arguments.isVerbose(), arguments.showUnsupported(), System.out); monitoredHost.detach(monitoredVm); } static void logSamples() throws MonitorException { final VmIdentifier vmId = arguments.vmId(); int interval = arguments.sampleInterval(); final MonitoredHost monitoredHost = MonitoredHost.getMonitoredHost(vmId); MonitoredVm monitoredVm = monitoredHost.getMonitoredVm(vmId, interval); final JStatLogger logger = new JStatLogger(monitoredVm); OutputFormatter formatter = null; if (arguments.isSpecialOption()) { OptionFormat format = arguments.optionFormat(); formatter = new OptionOutputFormatter(monitoredVm, format); } else { List<Monitor> logged = monitoredVm.findByPattern(arguments.counterNames()); Collections.sort(logged, arguments.comparator()); List<Monitor> constants = new ArrayList<Monitor>(); for (Iterator<Monitor> i = logged.iterator(); i.hasNext(); /* empty */) { Monitor m = i.next(); if (!(m.isSupported() || arguments.showUnsupported())) { i.remove(); continue; } if (m.getVariability() == Variability.CONSTANT) { i.remove(); if (arguments.printConstants()) constants.add(m); } else if ((m.getUnits() == Units.STRING) && !arguments.printStrings()) { i.remove(); } } if (!constants.isEmpty()) { logger.printList(constants, arguments.isVerbose(), arguments.showUnsupported(), System.out); if (!logged.isEmpty()) { System.out.println(); } } if (logged.isEmpty()) { monitoredHost.detach(monitoredVm); return; } formatter = new RawOutputFormatter(logged, arguments.printStrings()); } // handle user termination requests by stopping sampling loops Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { logger.stopLogging(); } }); // handle target termination events for targets other than ourself HostListener terminator = new HostListener() { public void vmStatusChanged(VmStatusChangeEvent ev) { Integer lvmid = vmId.getLocalVmId(); if (ev.getTerminated().contains(lvmid)) { logger.stopLogging(); } else if (!ev.getActive().contains(lvmid)) { logger.stopLogging(); } } public void disconnected(HostEvent ev) { if (monitoredHost == ev.getMonitoredHost()) { logger.stopLogging(); } } }; if (vmId.getLocalVmId() != 0) { monitoredHost.addHostListener(terminator); } logger.logSamples(formatter, arguments.headerRate(), arguments.sampleInterval(), arguments.sampleCount(), System.out); // detach from host events and from the monitored target jvm if (terminator != null) { monitoredHost.removeHostListener(terminator); } monitoredHost.detach(monitoredVm); } }
⏎ sun/tools/jstat/Jstat.java
Or download all of them as a single archive file:
File name: jdk.jcmd-17.0.5-src.zip File size: 51997 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jconsole.jmod - JConsole Tool
2023-08-17, 2824👍, 0💬
Popular Posts:
Jettison is a collection of Java APIs (like STaX and DOM) which read and write JSON. This allows nea...
What Is javaws.jar in JRE (Java Runtime Environment) 8? javaws.jar in JRE (Java Runtime Environment)...
XML Serializer, Release 2.7.1, allows you to write out XML, HTML etc. as a stream of characters from...
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...