Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use latest systemd-journal #111

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fluent-plugin-systemd.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rubocop', '1.13.0'

spec.add_runtime_dependency 'fluentd', ['>= 0.14.11', '< 2']
spec.add_runtime_dependency 'systemd-journal', '~> 1.4.2'
spec.add_runtime_dependency 'systemd-journal', '~> 2.0.0'
end
4 changes: 2 additions & 2 deletions test/docker/Dockerfile.tdagent-ubuntu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:focal
FROM ubuntu:jammy

RUN apt-get update -q \
&& apt-get install -qy --no-install-recommends \
Expand All @@ -8,7 +8,7 @@ RUN apt-get update -q \
gnupg \
libsystemd0 \
&& curl https://packages.treasuredata.com/GPG-KEY-td-agent | apt-key add - \
&& echo "deb http://packages.treasuredata.com/4/ubuntu/focal/ focal contrib" > /etc/apt/sources.list.d/treasure-data.list \
&& echo "deb http://packages.treasuredata.com/4/ubuntu/jammy/ jammy contrib" > /etc/apt/sources.list.d/treasure-data.list \
&& apt-get update \
&& apt-get install -y td-agent \
&& apt-get clean \
Expand Down
2 changes: 1 addition & 1 deletion test/docker/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:focal
FROM ubuntu:jammy

RUN apt-get update -q && apt-get install -qy --no-install-recommends \
build-essential \
Expand Down
Loading