Sha256: 1705ed05126fcaa2e9250f8c1673f8a96e8bb51fdcd606d61b9b5dcf2c2359ec

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
  spec.name    = "fluent-plugin-node-exporter-metrics"
  spec.version = "0.2.2"
  spec.authors = ["Kentaro Hayashi"]
  spec.email   = ["hayashi@clear-code.com"]

  spec.summary       = %q{Input plugin which collects metrics similar to Prometheus Node Exporter}
  spec.description   = %q{node exporter metrics input plugin implements 11 node exporter collectors}
  spec.homepage      = "https://github.com/fluent-plugins-nursery/fluent-plugin-node-exporter-metrics"
  spec.license       = "Apache-2.0"

  test_files, files  = `git ls-files -z`.split("\x0").partition do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.files         = files
  spec.executables   = files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = test_files
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "cmetrics", "~> 0.3.3"
  spec.add_runtime_dependency "capng_c", "~> 0.2.2"

  spec.add_development_dependency "bundler", "~> 2.2.0"
  spec.add_development_dependency "rake", "~> 13.0.6"
  spec.add_development_dependency "test-unit", "~> 3.4.4"
  spec.add_development_dependency "test-unit-rr", "~> 1.0.5"
  spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-node-exporter-metrics-0.2.2 fluent-plugin-node-exporter-metrics.gemspec