https://github.com/joeferner/java-process-information
Use java command line tools to get java process information
https://github.com/joeferner/java-process-information
Last synced: 5 months ago
JSON representation
Use java command line tools to get java process information
- Host: GitHub
- URL: https://github.com/joeferner/java-process-information
- Owner: joeferner
- Created: 2020-02-03T12:17:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T06:24:26.000Z (over 3 years ago)
- Last Synced: 2025-09-10T13:28:34.495Z (10 months ago)
- Language: TypeScript
- Size: 685 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Install
```bash
npm install java-process-information
```
## CLI
```bash
jmap -histo 123 | jmap-histo-parse
```
## API
#### JMap
```javascript
import { parseJmapHisto } from 'jmap-parse';
const results = parseJmapHisto(jmapStdout, jmapStderr);
```