From 221c1343155d8e0753901c202f4e318512c431bb Mon Sep 17 00:00:00 2001 From: daipom Date: Mon, 21 Feb 2022 12:23:18 +0900 Subject: [PATCH] Fix minimum version of depencency on Fluentd Confirmed this did not work with Fluentd v1.8.1. Signed-off-by: daipom --- README.md | 8 ++++---- fluent-plugin-sigdump.gemspec | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e94727c..79af271 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ [Fluentd](https://fluentd.org/) plugin to collect debug information of Fluentd. - | Platform | Support Version | - | -------- | --------------------- | - | Fluentd | Fluentd v1.x | - | Ruby | Ruby 2.7.x / 3.1.x | + | Platform | Support Version | + |----------|--------------------| + | Fluentd | >= Fluentd v1.9.3 | + | Ruby | Ruby 2.7.x / 3.1.x | This plugin periodically dumps backtrace and memory profile of Fluentd by using [sigdump](https://github.com/fluent/sigdump). diff --git a/fluent-plugin-sigdump.gemspec b/fluent-plugin-sigdump.gemspec index db9105b..b00dd9a 100644 --- a/fluent-plugin-sigdump.gemspec +++ b/fluent-plugin-sigdump.gemspec @@ -19,5 +19,5 @@ Gem::Specification.new do |s| s.add_development_dependency "test-unit", "~> 3.3" s.add_runtime_dependency "sigdump", "~> 0.2.2" - s.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"] + s.add_runtime_dependency "fluentd", [">= 1.9.3", "< 2"] end