File tree 5 files changed +6
-6
lines changed
docs/sources/configure-client/language-sdks
examples/language-sdk-instrumentation/java
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:
51
51
<dependency>
52
52
<groupId>io.pyroscope</groupId>
53
53
<artifactId>agent</artifactId>
54
- <version>0.16 .0</version>
54
+ <version>0.17 .0</version>
55
55
</dependency>
56
56
```
57
57
58
58
``` gradle
59
- implementation("io.pyroscope:agent:0.16 .0")
59
+ implementation("io.pyroscope:agent:0.17 .0")
60
60
```
61
61
62
62
{{< /code >}}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ WORKDIR /opt/app
4
4
5
5
RUN apt-get update && apt-get install ca-certificates -y && update-ca-certificates && apt-get install -y git
6
6
7
- ADD https://github.com/grafana/pyroscope-java/releases/download/v0.16 .0/pyroscope.jar /opt/app/pyroscope.jar
7
+ ADD https://github.com/grafana/pyroscope-java/releases/download/v0.17 .0/pyroscope.jar /opt/app/pyroscope.jar
8
8
9
9
COPY Main.java ./
10
10
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
37
37
38
38
WORKDIR /opt/app
39
39
40
- ADD https://github.com/grafana/pyroscope-java/releases/download/v0.16 .0/pyroscope.jar /opt/app/pyroscope.jar
40
+ ADD https://github.com/grafana/pyroscope-java/releases/download/v0.17 .0/pyroscope.jar /opt/app/pyroscope.jar
41
41
42
42
CMD 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 {
12
12
}
13
13
14
14
dependencies {
15
- implementation(" io.pyroscope:agent:0.16 .0" )
15
+ implementation(" io.pyroscope:agent:0.17 .0" )
16
16
implementation(" org.springframework.boot:spring-boot-starter-web" )
17
17
testImplementation(" org.junit.jupiter:junit-jupiter-api:5.8.2" )
18
18
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
2
2
3
3
WORKDIR /opt/app
4
4
5
- ADD https://github.com/grafana/pyroscope-java/releases/download/v0.16 .0/pyroscope.jar /opt/app/pyroscope.jar
5
+ ADD https://github.com/grafana/pyroscope-java/releases/download/v0.17 .0/pyroscope.jar /opt/app/pyroscope.jar
6
6
7
7
COPY Main.java ./Main.java
8
8
RUN javac Main.java
You can’t perform that action at this time.
0 commit comments