Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itcraft-cn/jvm_agent_mem2csv
jvmti agent, to map memory objects to csv
https://github.com/itcraft-cn/jvm_agent_mem2csv
Last synced: 11 days ago
JSON representation
jvmti agent, to map memory objects to csv
- Host: GitHub
- URL: https://github.com/itcraft-cn/jvm_agent_mem2csv
- Owner: itcraft-cn
- License: mit
- Created: 2023-11-02T16:25:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-08T06:49:24.000Z (11 months ago)
- Last Synced: 2024-01-08T07:52:00.245Z (11 months ago)
- Language: C
- Size: 50.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jvmti agent
jvmti agent, to map memory objects to csv
## doc
- [oracle jdk jvmti doc](https://docs.oracle.com/javase/8/docs/platform/jvmti/jvmti.html)
- [ibm jdk jvmti doc](https://www.ibm.com/docs/en/sdk-java-technology/8?topic=interfaces-jvmti)## build
need to install xmake first.
- build
```shell
xmake
```- build debug
```shell
xmake config -m debug
xmake
```- build release
```shell
xmake config -m release
xmake
```