https://github.com/sourceplusplus/probe-jvm
Continuous feedback probe for JVM applications
https://github.com/sourceplusplus/probe-jvm
jvm
Last synced: 5 months ago
JSON representation
Continuous feedback probe for JVM applications
- Host: GitHub
- URL: https://github.com/sourceplusplus/probe-jvm
- Owner: sourceplusplus
- License: apache-2.0
- Created: 2021-10-26T01:47:11.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-08-05T17:30:13.000Z (5 months ago)
- Last Synced: 2025-08-05T19:25:29.120Z (5 months ago)
- Topics: jvm
- Language: Kotlin
- Homepage: https://sourceplus.plus
- Size: 20 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 
[](LICENSE)

[](https://github.com/sourceplusplus/probe-jvm/actions/workflows/build.yml)
# What is this?
This project provides JVM support to the [Source++](https://github.com/sourceplusplus/sourceplusplus) open-source live coding platform.
# How to use?
## Gradle Plugin
1. Configure the [Gradle Application Plugin](https://docs.gradle.org/current/userguide/application_plugin.html)
1. Add the following to the `build.gradle` file:
```groovy
plugins {
id("com.ryandens.javaagent-application") version "0.3.2"
}
repositories {
maven { url "https://pkg.sourceplus.plus/sourceplusplus/probe-jvm" }
}
dependencies {
javaagent("plus.sourceplus.probe:probe-jvm:0.7.7.1")
}
```
## Standalone Agent
1. Add `spp-probe-*.jar` and `spp-probe.yml` to the same directory
- E.g. [spp-probe-0.7.7.1.jar](https://github.com/sourceplusplus/probe-jvm/releases/download/0.7.7.1/spp-probe-0.7.7.1.jar) & [spp-probe.yml](https://docs.sourceplusplus.com/implementation/tools/probe/configuration/)
1. Boot application with `-javaagent:spp-probe-*.jar` parameter
- E.g. `java -javaagent:/opt/spp-platform/spp-probe-0.7.7.1.jar -jar MyApp.jar`
## Apache SkyWalking Plugin
1. Add `spp-probe-*.jar` and `spp-skywalking-services-*.jar` to `skywalking-agent/plugins` directory
- E.g. [spp-probe-0.7.7.1.jar](https://github.com/sourceplusplus/probe-jvm/releases/download/0.7.7.1/spp-probe-0.7.7.1.jar) & [spp-skywalking-services-0.7.7.1.jar](https://github.com/sourceplusplus/probe-jvm/releases/download/0.7.7.1/spp-skywalking-services-0.7.7.1.jar)
1. Add `spp-probe.yml` to `skywalking-agent/config` directory
- E.g. [spp-probe.yml](https://docs.sourceplusplus.com/implementation/tools/probe/configuration/)
1. Reboot Apache SkyWalking agent