Sha256: c0450aaafc3bd83d2a768fadfbba617652c470009f12abb12d4895f6d6100e9b
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| s.name = "fluent-plugin-rewrite-tag-filter" s.version = "1.5.1" s.license = "Apache 2.0" s.authors = ["Kentaro Yoshida"] s.email = ["y.ken.studio@gmail.com"] s.homepage = "https://github.com/y-ken/fluent-plugin-rewrite-tag-filter" s.summary = %q{Fluentd Output filter plugin. It has designed to rewrite tag like mod_rewrite. Re-emmit a record with rewrited tag when a value matches/unmatches with the regular expression. Also you can change a tag from apache log by domain, status-code(ex. 500 error), user-agent, request-uri, regex-backreference and so on with regular expression.} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency "rake" s.add_runtime_dependency "fluentd" s.add_runtime_dependency "string-scrub", "= 0.0.3" if RUBY_VERSION.to_f < 2.1 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-rewrite-tag-filter-1.5.1 | fluent-plugin-rewrite-tag-filter.gemspec |