Skip to content

Commit

Permalink
use Fluentd for the feature
Browse files Browse the repository at this point in the history
Signed-off-by: Daijiro Fukuda <[email protected]>
  • Loading branch information
daipom committed Oct 30, 2024
1 parent 9c4ef1a commit c1d3de0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion fluent-package/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ gem "cool.io", "1.8.1", platforms: no_fat_gem
gem "sigdump", "0.2.5"
gem "http_parser.rb", "0.8.0"
gem "yajl-ruby", "1.4.3"
gem "serverengine", '2.3.2'
gem "serverengine", '2.4.0'
gem "msgpack", "1.7.2"
gem "oj", "3.16.4"
gem "tzinfo", "2.0.6"
Expand Down
10 changes: 5 additions & 5 deletions fluent-package/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ GIT

GIT
remote: https://github.com/fluent/fluentd
revision: e763c0761c44d9734b6aa374371387a2e8406522
ref: e763c0761c44d9734b6aa374371387a2e8406522
revision: 1cbbd9a81b8576374bcc32454e959c42075bb399
ref: 1cbbd9a81b8576374bcc32454e959c42075bb399
specs:
fluentd (1.17.0)
fluentd (1.17.1)
base64 (~> 0.2)
bundler
certstore_c (~> 0.1.7)
Expand Down Expand Up @@ -236,7 +236,7 @@ GEM
digest-crc
ruby-progressbar (1.13.0)
rubyzip (1.3.0)
serverengine (2.3.2)
serverengine (2.4.0)
sigdump (~> 0.2.2)
sigdump (0.2.5)
strptime (0.2.5)
Expand Down Expand Up @@ -337,7 +337,7 @@ DEPENDENCIES
rake
rdkafka (= 0.16.1)
ruby-kafka (= 1.5.0)
serverengine (= 2.3.2)
serverengine (= 2.4.0)
sigdump (= 0.2.5)
systemd-journal (= 1.4.2)
td (= 0.17.1)
Expand Down
2 changes: 1 addition & 1 deletion fluent-package/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def extract_fluentd_version(archive_path)
File.basename(archive_path, ".tar.gz"))
Dir.chdir(archive_dir) do
IO.popen("git tag --contains #{FLUENTD_REVISION}") do |tags|
fluentd_version = tags.readlines.last.chomp.delete_prefix("v")
fluentd_version = tags.readlines.last&.chomp&.delete_prefix("v") || ""
end
end
puts "::endgroup::" if ENV["CI"]
Expand Down
2 changes: 1 addition & 1 deletion fluent-package/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
PACKAGE_DIR = "fluent"
COMPAT_PACKAGE_DIR = COMPAT_SERVICE_NAME

FLUENTD_REVISION = 'e763c0761c44d9734b6aa374371387a2e8406522' # v1.17.0
FLUENTD_REVISION = '1cbbd9a81b8576374bcc32454e959c42075bb399' # test no-downtime (TODO fix later)
FLUENTD_LOCAL_GEM_REPO = "file://" + File.expand_path(File.join(__dir__, "local_gem_repo"))

# https://github.com/jemalloc/jemalloc/releases
Expand Down

0 comments on commit c1d3de0

Please sign in to comment.