File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
internal/buildscripts/packaging Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ RUN if [[ "$ARCH" = "amd64" || "$ARCH" = "arm64" ]]; then \
38
38
FROM ${DOCKER_REPO}/alpine:3.17.0 AS jmx
39
39
ARG JMX_METRIC_GATHERER_RELEASE
40
40
RUN JMX_METRICS_JAR=opentelemetry-jmx-metrics.jar && \
41
- URL=https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/v ${JMX_METRIC_GATHERER_RELEASE}/${JMX_METRICS_JAR} && \
41
+ URL=https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/${JMX_METRIC_GATHERER_RELEASE}/${JMX_METRICS_JAR} && \
42
42
cd /tmp && wget "$URL" ;
43
43
44
44
FROM ${DOCKER_REPO}/debian:11.5 as journalctl
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN Remove-Item agent-bundle_windows_amd64.zip -force
28
28
# Download JMX Metric Gatherer
29
29
ARG JMX_METRIC_GATHERER_RELEASE
30
30
RUN New-Item -Path "C:\\" -Name "opt" -ItemType "directory"
31
- RUN Invoke-WebRequest -Uri "https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/v ${env:JMX_METRIC_GATHERER_RELEASE}/opentelemetry-jmx-metrics.jar" -Outfile "c:\opt\opentelemetry-java-contrib-jmx-metrics.jar"
31
+ RUN Invoke-WebRequest -Uri "https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/${env:JMX_METRIC_GATHERER_RELEASE}/opentelemetry-jmx-metrics.jar" -Outfile "c:\opt\opentelemetry-java-contrib-jmx-metrics.jar"
32
32
33
33
ARG JDK_VERSION="11.0.23_9"
34
34
ARG OPENJDK_BASE_URL="https://github.com/adoptium/temurin11-binaries/releases/download"
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ download_jmx_metric_gatherer() {
71
71
local version=" $1 "
72
72
local buildroot=" $2 "
73
73
74
- JMX_METRIC_GATHERER_RELEASE_DL_URL=" https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/v $version /opentelemetry-jmx-metrics.jar"
74
+ JMX_METRIC_GATHERER_RELEASE_DL_URL=" https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/$version /opentelemetry-jmx-metrics.jar"
75
75
mkdir -p " $buildroot /opt"
76
76
77
77
echo " Downloading ${JMX_METRIC_GATHERER_RELEASE_DL_URL} "
Original file line number Diff line number Diff line change 1
- 1.32 .0
1
+ v1.35 .0
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ download_jmx_metric_gatherer() {
198
198
local version=" $1 "
199
199
local build_dir=" $2 "
200
200
jmx_filename=" opentelemetry-java-contrib-jmx-metrics.jar"
201
- JMX_METRIC_GATHERER_RELEASE_DL_URL=" https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/v $version /opentelemetry-jmx-metrics.jar"
201
+ JMX_METRIC_GATHERER_RELEASE_DL_URL=" https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/$version /opentelemetry-jmx-metrics.jar"
202
202
echo " Downloading ${JMX_METRIC_GATHERER_RELEASE_DL_URL} "
203
203
204
204
mkdir -p " ${build_dir} "
You can’t perform that action at this time.
0 commit comments