Skip to content

Commit aa700c6

Browse files
committed
Upgrade journald client
Use the latest debian image to build the journald client with the latest libraries. Otherwise, journald receiver doesn't work on nodes with latests OSs like Amazon Linux 2023.
1 parent 5ec4a74 commit aa700c6

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
2+
23
## Unreleased
34

5+
### 🧰 Bug fixes 🧰
6+
7+
- (Splunk) `receiver/journald`: Upgrade journald client libraries in the Collector docker image by taking them from latest Debian image.
8+
This fixes journald receiver on kubernetes nodes with recent versions of systemd ([#5664](https://github.com/signalfx/splunk-otel-collector/pull/5664)).
9+
410
## v0.113.0
511

612
This Splunk OpenTelemetry Collector release includes changes from the opentelemetry-collector v0.113.0 and the opentelemetry-collector-contrib v0.113.0 releases where appropriate.

cmd/otelcol/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN JMX_METRICS_JAR=opentelemetry-jmx-metrics.jar && \
3939
URL=https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/${JMX_METRIC_GATHERER_RELEASE}/${JMX_METRICS_JAR} && \
4040
cd /tmp && wget "$URL";
4141

42-
FROM ${DOCKER_REPO}/debian:11.5 as journalctl
42+
FROM ${DOCKER_REPO}/debian:12.8 as journalctl
4343
RUN apt update
4444
RUN apt install -y systemd
4545
COPY dist/collect-libs.sh /collect-libs.sh

tests/receivers/smartagent/telegraf-exec/testdata/exec/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG SPLUNK_OTEL_COLLECTOR_IMAGE
22
ARG IMAGE_PLATFORM
3-
FROM --platform=${IMAGE_PLATFORM} golang:1.19 as golang
3+
FROM --platform=${IMAGE_PLATFORM} golang:1.23 as golang
44

55
RUN mkdir -p /some/path
66

0 commit comments

Comments
 (0)