JVM Tools Extension for VS Code
Перейти к файлу
Martijn Verburg c12a273804
Merge pull request #14 from microsoft/dependabot/npm_and_yarn/braces-3.0.3
Bump braces from 3.0.2 to 3.0.3
2024-06-17 10:05:09 +12:00
.vscode final bits 2020-05-15 02:14:17 -07:00
jfr-lib Example of starting JFR recording (#4) 2020-07-28 15:51:03 -07:00
jvm-monitor-server jvm management server 2020-07-28 10:50:27 -07:00
resources new tweaks 2020-05-16 16:27:19 -07:00
src simplified structure for listing jvms 2020-07-28 11:36:46 -07:00
.eslintrc.json final bits 2020-05-15 02:14:17 -07:00
.gitignore project renamed 2020-07-27 15:43:27 -07:00
.vscodeignore final bits 2020-05-15 02:14:17 -07:00
CHANGELOG.md new tweaks 2020-05-16 16:27:19 -07:00
CODE_OF_CONDUCT.md Initial CODE_OF_CONDUCT.md commit 2020-05-15 02:03:51 -07:00
LICENSE Initial LICENSE commit 2020-05-15 02:03:49 -07:00
README.md merged conflicts 2020-05-16 16:28:35 -07:00
SECURITY.md Initial SECURITY.md commit 2020-05-15 02:03:53 -07:00
package-lock.json Bump braces from 3.0.2 to 3.0.3 2024-06-16 11:46:37 +00:00
package.json jvm thread stacktrace dump which is opened as a file in vscode (#3) 2020-07-28 10:49:26 -07:00
tsconfig.json final bits 2020-05-15 02:14:17 -07:00
vsc-extension-quickstart.md final bits 2020-05-15 02:14:17 -07:00

README.md

JVM Tools for VS Code

This is the very first preview release of JVM Tools for VS Code.

Features

  1. List running JVMs with jps.
  2. Starts jconsole on the selected JVM.

Requirements

You must have a JDK installed.

Extension Settings

No settings at this stage.

Known Issues

Not really.

Release Notes

See CHANGELOG for details.

Roadmap

What else will this extension eventually do?

  1. Get snapshot of JVM status
  2. Start debugging selected JVM
  3. Start/Stop/Dump JDK Flight Recorder
  4. Perform a Thread Dump
  5. Start/Stop recording GC log

Useful resources

Start JFR

java -XX:StartFlightRecording=duration=30s,settings=profile,filename=leak.jfr MemoryLeak

jcmd 1 JFR.start duration=30s settings=profile filename=path/filename.jfr

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.