File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
docs/sources/configure-client/language-sdks
examples/language-sdk-instrumentation/java Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ First, add the Pyroscope dependency:
5151<dependency>
5252 <groupId>io.pyroscope</groupId>
5353 <artifactId>agent</artifactId>
54- <version>0.17 .0</version>
54+ <version>0.18 .0</version>
5555</dependency>
5656```
5757
5858``` gradle
59- implementation("io.pyroscope:agent:0.17 .0")
59+ implementation("io.pyroscope:agent:0.18 .0")
6060```
6161
6262{{< /code >}}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ WORKDIR /opt/app
44
55RUN apt-get update && apt-get install ca-certificates -y && update-ca-certificates && apt-get install -y git
66
7- ADD https://github.com/grafana/pyroscope-java/releases/download/v0.17 .0/pyroscope.jar /opt/app/pyroscope.jar
7+ ADD https://github.com/grafana/pyroscope-java/releases/download/v0.18 .0/pyroscope.jar /opt/app/pyroscope.jar
88
99COPY Main.java ./
1010
Original file line number Diff line number Diff line change @@ -37,6 +37,6 @@ COPY --from=builder /opt/app/build/libs/rideshare-1.0-SNAPSHOT.jar /opt/app/buil
3737
3838WORKDIR /opt/app
3939
40- ADD https://github.com/grafana/pyroscope-java/releases/download/v0.17 .0/pyroscope.jar /opt/app/pyroscope.jar
40+ ADD https://github.com/grafana/pyroscope-java/releases/download/v0.18 .0/pyroscope.jar /opt/app/pyroscope.jar
4141
4242CMD sh -c "exec java -Dserver.port=${RIDESHARE_LISTEN_PORT} -javaagent:pyroscope.jar -jar ./build/libs/rideshare-1.0-SNAPSHOT.jar"
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ repositories {
1212}
1313
1414dependencies {
15- implementation(" io.pyroscope:agent:0.17 .0" )
15+ implementation(" io.pyroscope:agent:0.18 .0" )
1616 implementation(" org.springframework.boot:spring-boot-starter-web" )
1717 testImplementation(" org.junit.jupiter:junit-jupiter-api:5.8.2" )
1818 testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.8.2" )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM openjdk:11.0.11-jdk
22
33WORKDIR /opt/app
44
5- ADD https://github.com/grafana/pyroscope-java/releases/download/v0.17 .0/pyroscope.jar /opt/app/pyroscope.jar
5+ ADD https://github.com/grafana/pyroscope-java/releases/download/v0.18 .0/pyroscope.jar /opt/app/pyroscope.jar
66
77COPY Main.java ./Main.java
88RUN javac Main.java
You can’t perform that action at this time.
0 commit comments