Skip to content

Instantly share code, notes, and snippets.

@okkez
Last active March 24, 2020 23:00
Show Gist options
  • Save okkez/4f14ec49e7f01a237fda7f7ac075704b to your computer and use it in GitHub Desktop.
Save okkez/4f14ec49e7f01a237fda7f7ac075704b to your computer and use it in GitHub Desktop.
Fluentd v0.14 対応済みのプラグインリスト
require "octokit"
require "pp"
require "gems"
require "json"
require "open-uri"
require "dotenv/load"
Gems.configure do |config|
config.key = ENV["RUBYGEMS_API_KEY"]
end
def latest_gem_info(name)
begin
latest_version = Gems.versions(name).max_by do |version|
Gem::Version.new(version["number"])
end
open("https://rubygems.org/api/v2/rubygems/#{name}/versions/#{latest_version["number"]}.json") do |io|
JSON.parse(io.read)
end
rescue JSON::ParserError
Gems.info(name)
end
end
plugins = nil
unless File.exist?("./plugins.json")
open("https://rubygems.org/names.json") do |io|
plugins = io.readlines(chomp: true).grep(/\Afluent-plugin-/).map do |name|
print "."
begin
latest_gem_info(name)
rescue => ex
warn "#{ex.class}:#{ex.message}:#{name}"
nil
end
end
end
File.open("./plugins.json", "w+") do |file|
file.write(plugins.compact.to_json)
end
end
plugins = JSON.parse(File.read("./plugins.json"))
puts "Plugins are loaded!"
client = Octokit::Client.new(access_token: ENV["GITHUB_ACCESS_TOKEN"])
def fluentd_v014_native?(client, plugin)
support_fluentd_v014_or_later?(client, plugin) && use_fluentd_v014_api?(client, plugin)
end
def support_fluentd_v014_or_later?(client, plugin)
runtime_dependencies = plugin.dig("dependencies", "runtime")
runtime_dependencies.any? do |s|
begin
s["name"] == "fluentd" && satisfied_requirements?(s["requirements"]).tap do |r|
unless r
mark = send_pull_request?(client, plugin) ? "+" : ""
puts "using old fluentd: #{plugin['name']}#{mark}"
end
end
rescue Gem::Requirement::BadRequirementError => _
puts "bad requirements:#{plugin['name']}:#{s["requirements"]}"
false
end
end
end
def satisfied_requirements?(requirements)
r = case requirements
when Array
Gem::Requirement.new(requirements)
when String
Gem::Requirement.new(requirements.split(","))
end
return false if (0..33).any? {|teeny| r.satisfied_by?(Gem::Version.new("0.12.#{teeny}")) }
return true if (0..99).any? {|teeny| r.satisfied_by?(Gem::Version.new("0.14.#{teeny}")) }
end
def retrieve_repository(plugin)
repository = nil
uri = plugin["homepage_uri"]
repository = uri[%r{https?://github.com/([^/]+?/[^/]+)}, 1] if uri
unless repository
uri = plugin["source_code_uri"]
repository = uri[%r{https?://github.com/([^/]+?/[^/]+)}, 1] if uri
end
unless repository
puts "no repository: #{plugin['name']}"
return nil
end
repository
end
def send_pull_request?(client, plugin)
repository = retrieve_repository(plugin)
return false unless repository
pull_requests = client.pull_requests(repository, state: "open")
pull_requests.any? {|pull_request| (/\AMigrate.*14.*/i).match?(pull_request.title) }
rescue Octokit::NotFound => _
puts "no Github:#{plugin["name"]}"
false
end
def use_fluentd_v014_api?(client, plugin)
repository = retrieve_repository(plugin)
return false unless repository
response = client.contents(repository, path: "lib/fluent/plugin")
files = response.map(&:path).select do |path|
File.extname(path) == ".rb"
end
sources = files.map do |file|
response = client.contents(repository, path: file)
Base64.decode64(response.content)
end
%r{\s*require ["']fluent/plugin/(?:input|(?:bare_)?output|filter|parser(?:_regexp)?|formatter|storage)["']}.match?(sources.join).tap do |r|
unless r
puts "no v0.14 API:#{plugin['name']}"
end
end
rescue Octokit::NotFound => _
puts "bad directory structure:#{plugin['name']}"
false
rescue Octokit::InvalidRepository => _
puts "no GitHub:#{plugin['name']}"
false
rescue => ex
puts "#{ex.class}: #{ex.message}"
puts plugin["name"]
puts plugin["homepage_uri"]
puts ex.backtrace
exit(false)
end
result = plugins.select do |plugin|
next unless plugin
fluentd_v014_native?(client, plugin)
end
File.open("./result.json", "w+") do |file|
file.write(result.to_json)
end
result.each do |plugin|
prerelease = plugin["prerelease"] ? "*" : ""
puts plugin["name"] + prerelease
end
source "https://rubygems.org"
gem "gems"
gem "octokit"
gem "dotenv"
GEM
remote: https://rubygems.org/
specs:
addressable (2.5.1)
public_suffix (~> 2.0, >= 2.0.2)
dotenv (2.2.1)
faraday (0.12.0.1)
multipart-post (>= 1.2, < 3)
gems (1.0.0)
json
json (2.1.0)
multipart-post (2.0.0)
octokit (4.6.2)
sawyer (~> 0.8.0, >= 0.5.3)
public_suffix (2.0.5)
sawyer (0.8.1)
addressable (>= 2.3.5, < 2.6)
faraday (~> 0.8, < 1.0)
PLATFORMS
ruby
DEPENDENCIES
dotenv
gems
octokit
BUNDLED WITH
1.14.6
Plugins are loaded!
no repository: fluent-plugin-5rocks
using old fluentd: fluent-plugin-5rocks
using old fluentd: fluent-plugin-access
using old fluentd: fluent-plugin-add+
no repository: fluent-plugin-add_empty_array
using old fluentd: fluent-plugin-add_empty_array
no repository: fluent-plugin-aerospike
using old fluentd: fluent-plugin-aerospike
using old fluentd: fluent-plugin-aerospike-cluster
using old fluentd: fluent-plugin-aes-forward
using old fluentd: fluent-plugin-airbrake-logger
using old fluentd: fluent-plugin-airbrake-python
using old fluentd: fluent-plugin-aliyun-odps
using old fluentd: fluent-plugin-amazon_sns
using old fluentd: fluent-plugin-amplitude
using old fluentd: fluent-plugin-amqp2
using old fluentd: fluent-plugin-anomalydetect
using old fluentd: fluent-plugin-anonymizer+
using old fluentd: fluent-plugin-apache_modstatus
using old fluentd: fluent-plugin-appdynamics
no Github:fluent-plugin-append-kubernetes-labels-to-tag
using old fluentd: fluent-plugin-append-kubernetes-labels-to-tag
using old fluentd: fluent-plugin-arango
no repository: fluent-plugin-arduino
using old fluentd: fluent-plugin-arduino
using old fluentd: fluent-plugin-assert
using old fluentd: fluent-plugin-aurora-slowquerylog
using old fluentd: fluent-plugin-avro+
using old fluentd: fluent-plugin-aws-elasticsearch-service
using old fluentd: fluent-plugin-aws-elasticsearch-service-hotfix
using old fluentd: fluent-plugin-axlsx
using old fluentd: fluent-plugin-azurefunctions
using old fluentd: fluent-plugin-azure-loganalytics
using old fluentd: fluent-plugin-azuresearch
using old fluentd: fluent-plugin-azuretables
using old fluentd: fluent-plugin-backlog
using old fluentd: fluent-plugin-base64-parser
using old fluentd: fluent-plugin-beats
using old fluentd: fluent-plugin-better-timestamp
using old fluentd: fluent-plugin-better-timestamp-timekey
using old fluentd: fluent-plugin-bigobject
using old fluentd: fluent-plugin-bigobject_avro
no v0.14 API:fluent-plugin-bigquery
using old fluentd: fluent-plugin-bigquery-custom
using old fluentd: fluent-plugin-bigquery-patched-retry-insert-502
no repository: fluent-plugin-bin
using old fluentd: fluent-plugin-boundio
no repository: fluent-plugin-buffered-filter
using old fluentd: fluent-plugin-buffered-filter
using old fluentd: fluent-plugin-buffered-hipchat
using old fluentd: fluent-plugin-buffered-resque
using old fluentd: fluent-plugin-buffered-stdout
no repository: fluent-plugin-buffer-ephemeral
using old fluentd: fluent-plugin-buffer-ephemeral
using old fluentd: fluent-plugin-buffer-event_limited
no v0.14 API:fluent-plugin-bufferize
using old fluentd: fluent-plugin-buffer-lightening
using old fluentd: fluent-plugin-buffer-pullpool
using old fluentd: fluent-plugin-bugsnag
using old fluentd: fluent-plugin-burrow
using old fluentd: fluent-plugin-calc
using old fluentd: fluent-plugin-cassandra
using old fluentd: fluent-plugin-cassandra-cql
using old fluentd: fluent-plugin-cassandra-driver
using old fluentd: fluent-plugin-cat-sweep
using old fluentd: fluent-plugin-chatwork
using old fluentd: fluent-plugin-chef-api
using old fluentd: fluent-plugin-chef-client
using old fluentd: fluent-plugin-chriak2
using old fluentd: fluent-plugin-cloud-feeds
using old fluentd: fluent-plugin-cloudfront-log
using old fluentd: fluent-plugin-cloud-pubsub
using old fluentd: fluent-plugin-cloudsearch
using old fluentd: fluent-plugin-cloudstack
using old fluentd: fluent-plugin-cloudtrail
using old fluentd: fluent-plugin-cloudwatch
using old fluentd: fluent-plugin-cloudwatch-logs
using old fluentd: fluent-plugin-cloudwatch-transform
using old fluentd: fluent-plugin-collectd-influxdb
using old fluentd: fluent-plugin-collectd-nest
using old fluentd: fluent-plugin-collectd-unroll
using old fluentd: fluent-plugin-color-stripper
using old fluentd: fluent-plugin-combiner
using old fluentd: fluent-plugin-conditional_filter
using old fluentd: fluent-plugin-config_pit
using old fluentd: fluent-plugin-config_reloader
using old fluentd: fluent-plugin-consul
no repository: fluent-plugin-container_logs_filter
using old fluentd: fluent-plugin-container_logs_filter
no repository: fluent-plugin-convert-value-to-sha
using old fluentd: fluent-plugin-convert-value-to-sha
using old fluentd: fluent-plugin-copy_ex
using old fluentd: fluent-plugin-couch+
using old fluentd: fluent-plugin-couchbase
using old fluentd: fluent-plugin-couch-sharded
using old fluentd: fluent-plugin-cratedb
no repository: fluent-plugin-dag
using old fluentd: fluent-plugin-dag
using old fluentd: fluent-plugin-dashing
using old fluentd: fluent-plugin-datacalculator
using old fluentd: fluent-plugin-datadog_event
no repository: fluent-plugin-datahub
using old fluentd: fluent-plugin-datahub
using old fluentd: fluent-plugin-data-rejecter
using old fluentd: fluent-plugin-dbi
using old fluentd: fluent-plugin-dd
using old fluentd: fluent-plugin-debug
no repository: fluent-plugin-decode_location
using old fluentd: fluent-plugin-decode_location
using old fluentd: fluent-plugin-dedot_filter
using old fluentd: fluent-plugin-dedup
using old fluentd: fluent-plugin-deis-graphite
using old fluentd: fluent-plugin-delay-inspector
using old fluentd: fluent-plugin-derive
using old fluentd: fluent-plugin-deskcom
using old fluentd: fluent-plugin-detect-exceptions
no repository: fluent-plugin-detect-exceptions-with-error
using old fluentd: fluent-plugin-detect-exceptions-with-error
using old fluentd: fluent-plugin-detect-memb-exceptions
using old fluentd: fluent-plugin-df
using old fluentd: fluent-plugin-dio
using old fluentd: fluent-plugin-diskusage
using old fluentd: fluent-plugin-dockerevents
using old fluentd: fluent-plugin-docker-format
using old fluentd: fluent-plugin-docker-format_nebo15
using old fluentd: fluent-plugin-docker-inspect
using old fluentd: fluent-plugin-docker_metadata_filter+
using old fluentd: fluent-plugin-docker-metrics+
using old fluentd: fluent-plugin-docker-tag-resolver
using old fluentd: fluent-plugin-documentdb+
using old fluentd: fluent-plugin-dogstatsd+
using old fluentd: fluent-plugin-dogstatsd-mediba
no Github:fluent-plugin-downcase-keys
using old fluentd: fluent-plugin-downcase-keys
using old fluentd: fluent-plugin-droonga
using old fluentd: fluent-plugin-dstat+
using old fluentd: fluent-plugin-dummydata-producer
using old fluentd: fluent-plugin-dynamodb
using old fluentd: fluent-plugin-dynamodb-alt
using old fluentd: fluent-plugin-dynamodb-drc
using old fluentd: fluent-plugin-dynamodb-streams
using old fluentd: fluent-plugin-ecs-filter
using old fluentd: fluent-plugin-ecs-metadata-filter
using old fluentd: fluent-plugin-elapsed-time
using old fluentd: fluent-plugin-elasticsearch
no Github:fluent-plugin-elasticsearch-check-size
using old fluentd: fluent-plugin-elasticsearch-check-size
no Github:fluent-plugin-elasticsearch-cluster
using old fluentd: fluent-plugin-elasticsearch-cluster
no Github:fluent-plugin-elasticsearchfork
using old fluentd: fluent-plugin-elasticsearchfork
using old fluentd: fluent-plugin-elasticsearch-patch
using old fluentd: fluent-plugin-elasticsearch-sm
using old fluentd: fluent-plugin-elasticsearch-ssl-verify
using old fluentd: fluent-plugin-elb-access-log
no v0.14 API:fluent-plugin-elb-log
no Github:fluent-plugin-embedded-elasticsearch
using old fluentd: fluent-plugin-embedded-elasticsearch
using old fluentd: fluent-plugin-encrypt
using old fluentd: fluent-plugin-encryption-filter
using old fluentd: fluent-plugin-es-mohit
using old fluentd: fluent-plugin-esslowquery
using old fluentd: fluent-plugin-eval-filter
using old fluentd: fluent-plugin-eventcounter
using old fluentd: fluent-plugin-eventlastvalue
using old fluentd: fluent-plugin-event-sniffer
using old fluentd: fluent-plugin-event-tail
using old fluentd: fluent-plugin-exec_placeholder
using old fluentd: fluent-plugin-exec-sudo
using old fluentd: fluent-plugin-explode_filter
using old fluentd: fluent-plugin-feedly
using old fluentd: fluent-plugin-field-flatten-json
using old fluentd: fluent-plugin-field-multiregex
using old fluentd: fluent-plugin-fields-autotype
using old fluentd: fluent-plugin-fields-parser
using old fluentd: fluent-plugin-file-alternative
using old fluentd: fluent-plugin-filter
using old fluentd: fluent-plugin-filter-base64-decode+
no Github:fluent-plugin-filter-geo
using old fluentd: fluent-plugin-filter-geo
using old fluentd: fluent-plugin-filter-geoip
using old fluentd: fluent-plugin-filter-jq
using old fluentd: fluent-plugin-filter_linefeeder
using old fluentd: fluent-plugin-filter-object-flatten
using old fluentd: fluent-plugin-filter-parse-postfix
using old fluentd: fluent-plugin-filter-record-map
using old fluentd: fluent-plugin-filter_typecast
using old fluentd: fluent-plugin-filter-urldecode
using old fluentd: fluent-plugin-finagle
no repository: fluent-plugin-firehose
using old fluentd: fluent-plugin-firehose
no v0.14 API:fluent-plugin-flatten
using old fluentd: fluent-plugin-flowcounter+
using old fluentd: fluent-plugin-flowcounter-simple+
using old fluentd: fluent-plugin-flume+
using old fluentd: fluent-plugin-fnordmetric
using old fluentd: fluent-plugin-forest
using old fluentd: fluent-plugin-fork
using old fluentd: fluent-plugin-format
using old fluentd: fluent-plugin-formatter_pretty_json
using old fluentd: fluent-plugin-formatter_sprintf+
using old fluentd: fluent-plugin-formatter_tsv
using old fluentd: fluent-plugin-fortigate-log-parser
using old fluentd: fluent-plugin-forward-aws
using old fluentd: fluent-plugin-free
using old fluentd: fluent-plugin-ftp
using old fluentd: fluent-plugin-gamobile
using old fluentd: fluent-plugin-ganglia
using old fluentd: fluent-plugin-gc
using old fluentd: fluent-plugin-gcloud-pubsub
using old fluentd: fluent-plugin-gcloud-pubsub-custom
using old fluentd: fluent-plugin-gcloud-storage
using old fluentd: fluent-plugin-gcs
no v0.14 API:fluent-plugin-gcs-dustinblackman
using old fluentd: fluent-plugin-gelf-hs
using old fluentd: fluent-plugin-genhashvalue
using old fluentd: fluent-plugin-geoblipper
using old fluentd: fluent-plugin-geoip+
using old fluentd: fluent-plugin-geoip-filter
using old fluentd: fluent-plugin-glusterfs
using old fluentd: fluent-plugin-google-cloud
using old fluentd: fluent-plugin-google-cloud-storage
using old fluentd: fluent-plugin-google-cloud-storage-out
using old fluentd: fluent-plugin-google-sheets
using old fluentd: fluent-plugin-graphite
using old fluentd: fluent-plugin-grassland
no repository: fluent-plugin-graylog
using old fluentd: fluent-plugin-graylog
using old fluentd: fluent-plugin-gree_community
using old fluentd: fluent-plugin-grep+
using old fluentd: fluent-plugin-grepcounter
using old fluentd: fluent-plugin-grepcount-filter
using old fluentd: fluent-plugin-grok_pure-parser
using old fluentd: fluent-plugin-groonga-query-log
using old fluentd: fluent-plugin-groupcounter
using old fluentd: fluent-plugin-growl
using old fluentd: fluent-plugin-gsvsoc_pubsub
no repository: fluent-plugin-haproxy_stats
using old fluentd: fluent-plugin-haproxy_stats
using old fluentd: fluent-plugin-hash-forward
using old fluentd: fluent-plugin-has-keys
using old fluentd: fluent-plugin-hatohol
using old fluentd: fluent-plugin-hbase
using old fluentd: fluent-plugin-hekk_redshift
using old fluentd: fluent-plugin-heroku-postgres
using old fluentd: fluent-plugin-heroku-syslog
using old fluentd: fluent-plugin-honeycomb
using old fluentd: fluent-plugin-hoop
using old fluentd: fluent-plugin-hoop
using old fluentd: fluent-plugin-hostname
no repository: fluent-plugin-http
using old fluentd: fluent-plugin-http
using old fluentd: fluent-plugin-http-enhanced
using old fluentd: fluent-plugin-http-ex
using old fluentd: fluent-plugin-http_file_upload
using old fluentd: fluent-plugin-http-heartbeat
using old fluentd: fluent-plugin-http-list
using old fluentd: fluent-plugin-http-puma
using old fluentd: fluent-plugin-https-json
using old fluentd: fluent-plugin-http-status
using old fluentd: fluent-plugin-idobata
using old fluentd: fluent-plugin-ignore-filter
using old fluentd: fluent-plugin-imagefile
using old fluentd: fluent-plugin-imkayac
no repository: fluent-plugin-in_elb_healthcheck
using old fluentd: fluent-plugin-in_elb_healthcheck
using old fluentd: fluent-plugin-influxdb
using old fluentd: fluent-plugin-influxdb_metrics
no repository: fluent-plugin-in_http_healthcheck
using old fluentd: fluent-plugin-in_http_healthcheck
using old fluentd: fluent-plugin-in-kinesis
no repository: fluent-plugin-inline-classifier
using old fluentd: fluent-plugin-inline-classifier
using old fluentd: fluent-plugin-input-gelf
using old fluentd: fluent-plugin-input-jsonstream
using old fluentd: fluent-plugin-in-udp-event
using old fluentd: fluent-plugin-in-websocket
using old fluentd: fluent-plugin-irc+
using old fluentd: fluent-plugin-ironio
using old fluentd: fluent-plugin-jabber
using old fluentd: fluent-plugin-jmx
using old fluentd: fluent-plugin-journal-parser
using old fluentd: fluent-plugin-json-api
using old fluentd: fluent-plugin-jsonbucket
using old fluentd: fluent-plugin-json_expander
using old fluentd: fluent-plugin-jsonish
using old fluentd: fluent-plugin-json-lookup
using old fluentd: fluent-plugin-json-parser
using old fluentd: fluent-plugin-json-schema-filter
no repository: fluent-plugin-json_serializer
using old fluentd: fluent-plugin-json_serializer
no repository: fluent-plugin-jsontcp
using old fluentd: fluent-plugin-jsontcp
using old fluentd: fluent-plugin-jstat
using old fluentd: fluent-plugin-jubatus
using old fluentd: fluent-plugin-juniper-telemetry
using old fluentd: fluent-plugin-jvm-gclog
no Github:fluent-plugin-jvmwatcher
using old fluentd: fluent-plugin-jvmwatcher
using old fluentd: fluent-plugin-jwt-filter
using old fluentd: fluent-plugin-kafka
using old fluentd: fluent-plugin-kafkaclient
no Github:fluent-plugin-kafka-enchanced
using old fluentd: fluent-plugin-kafka-enchanced
using old fluentd: fluent-plugin-kafka-zendesk
no Github:fluent-plugin-kanicounter
using old fluentd: fluent-plugin-kanicounter
using old fluentd: fluent-plugin-keep-forward
using old fluentd: fluent-plugin-kestrel
using old fluentd: fluent-plugin-keyvalue-parser
using old fluentd: fluent-plugin-kibana-server
no v0.14 API:fluent-plugin-kinesis
using old fluentd: fluent-plugin-kinesis-aggregation
no repository: fluent-plugin-kinesis-alt
using old fluentd: fluent-plugin-kinesis-alt
using old fluentd: fluent-plugin-kinesis-firehose
using old fluentd: fluent-plugin-kubernetes
using old fluentd: fluent-plugin-kubernetes_metadata_filter+
using old fluentd: fluent-plugin-kubernetes_metadata_filter_v0.14+
using old fluentd: fluent-plugin-kubernetes_metadata_input
using old fluentd: fluent-plugin-kubernetes_remote_syslog
using old fluentd: fluent-plugin-kv-parser
using old fluentd: fluent-plugin-lambda
using old fluentd: fluent-plugin-latency
using old fluentd: fluent-plugin-lazy-json-parser
using old fluentd: fluent-plugin-librato
no repository: fluent-plugin-librato-metrics
using old fluentd: fluent-plugin-librato-metrics
using old fluentd: fluent-plugin-line-notify
using old fluentd: fluent-plugin-loadaverage
using old fluentd: fluent-plugin-logdna
no Github:fluent-plugin-logfmt-parser
using old fluentd: fluent-plugin-logfmt-parser
using old fluentd: fluent-plugin-logsene
using old fluentd: fluent-plugin-logtank-http
using old fluentd: fluent-plugin-logtank-rethinkdb
using old fluentd: fluent-plugin-logzio
no Github:fluent-plugin-logzio-ng
using old fluentd: fluent-plugin-logzio-ng
using old fluentd: fluent-plugin-lossycount
using old fluentd: fluent-plugin-ltsv-parser
using old fluentd: fluent-plugin-mackerel+
using old fluentd: fluent-plugin-mail+
no Github:fluent-plugin-mailrelay
using old fluentd: fluent-plugin-mailrelay
using old fluentd: fluent-plugin-measure_time
using old fluentd: fluent-plugin-mecab
using old fluentd: fluent-plugin-memcached
using old fluentd: fluent-plugin-mesosphere-filter
using old fluentd: fluent-plugin-metricsense
using old fluentd: fluent-plugin-midi
using old fluentd: fluent-plugin-mixi_community
using old fluentd: fluent-plugin-mixpanel
using old fluentd: fluent-plugin-mixpanel-enchanced
using old fluentd: fluent-plugin-mobile-carrier
no repository: fluent-plugin-mongokpi
using old fluentd: fluent-plugin-mongokpi
no repository: fluent-plugin-mongostat
using old fluentd: fluent-plugin-mongostat
no repository: fluent-plugin-monolog
using old fluentd: fluent-plugin-monolog
using old fluentd: fluent-plugin-monolog-influxdb
using old fluentd: fluent-plugin-moogaiops
using old fluentd: fluent-plugin-mqtt
using old fluentd: fluent-plugin-msgpack-parser
using old fluentd: fluent-plugin-msgpack-rpc
using old fluentd: fluent-plugin-multi-format-parser
using old fluentd: fluent-plugin-multiline-extended
using old fluentd: fluent-plugin-multiline-parser
using old fluentd: fluent-plugin-multiprocess
using old fluentd: fluent-plugin-munin
using old fluentd: fluent-plugin-munin-node
using old fluentd: fluent-plugin-mutate_filter
using old fluentd: fluent-plugin-mysql-appender
using old fluentd: fluent-plugin-mysql-binlog
using old fluentd: fluent-plugin-mysql-bulk
using old fluentd: fluent-plugin-mysql_explain
using old fluentd: fluent-plugin-mysql-load
using old fluentd: fluent-plugin-mysql-prepared-statement
using old fluentd: fluent-plugin-mysql-query+
no repository: fluent-plugin-mysqlrecord
using old fluentd: fluent-plugin-mysqlrecord
using old fluentd: fluent-plugin-mysql-replicator
using old fluentd: fluent-plugin-mysqlslowquery
using old fluentd: fluent-plugin-mysqlslowquerylog
using old fluentd: fluent-plugin-mysql-status
using old fluentd: fluent-plugin-namedpipe
using old fluentd: fluent-plugin-named_pipe
using old fluentd: fluent-plugin-nata2
using old fluentd: fluent-plugin-nats
using old fluentd: fluent-plugin-nested-hash-filter
using old fluentd: fluent-plugin-netflow-multiplier
using old fluentd: fluent-plugin-network-probe
using old fluentd: fluent-plugin-newrelic-summary
no Github:fluent-plugin-newrelictransform
using old fluentd: fluent-plugin-newrelictransform
using old fluentd: fluent-plugin-newsyslog
using old fluentd: fluent-plugin-nginx-status
no repository: fluent-plugin-nicorepo
using old fluentd: fluent-plugin-nicorepo
using old fluentd: fluent-plugin-norikra
using old fluentd: fluent-plugin-norikra-patched-7
using old fluentd: fluent-plugin-nostat
using old fluentd: fluent-plugin-nsca
using old fluentd: fluent-plugin-nsq
using old fluentd: fluent-plugin-onlineuser
using old fluentd: fluent-plugin-oomkiller
using old fluentd: fluent-plugin-openldap-monitor
using old fluentd: fluent-plugin-openshift_metadata_input
using old fluentd: fluent-plugin-opentsdb
using old fluentd: fluent-plugin-osmocom-spectrum-sense
using old fluentd: fluent-plugin-osquery
no repository: fluent-plugin-out_apache_log_format
using old fluentd: fluent-plugin-out_apache_log_format
using old fluentd: fluent-plugin-out-falcon
no Github:fluent-plugin-out-file-with-fix-path
using old fluentd: fluent-plugin-out-file-with-fix-path
using old fluentd: fluent-plugin-out_hosted_graphite
using old fluentd: fluent-plugin-out-http
using old fluentd: fluent-plugin-out-http-buffered
no repository: fluent-plugin-out-http-ext
using old fluentd: fluent-plugin-out-http-ext
no repository: fluent-plugin-out-http-ext-ignore-ssl-errors
using old fluentd: fluent-plugin-out-http-ext-ignore-ssl-errors
using old fluentd: fluent-plugin-out-kafka-rest
no Github:fluent-plugin-out_rawtcp
using old fluentd: fluent-plugin-out_rawtcp
using old fluentd: fluent-plugin-out-solr
no Github:fluent-plugin-out-upsolver
using old fluentd: fluent-plugin-out-upsolver
using old fluentd: fluent-plugin-pagerduty
using old fluentd: fluent-plugin-parameterized-path
no repository: fluent-plugin-parse_cookie
using old fluentd: fluent-plugin-parse_cookie
no repository: fluent-plugin-parse_multiple_value_query
using old fluentd: fluent-plugin-parse_multiple_value_query
using old fluentd: fluent-plugin-parser
using old fluentd: fluent-plugin-parser_cef
no Github:fluent-plugin-parserequestbody
using old fluentd: fluent-plugin-parserequestbody
using old fluentd: fluent-plugin-path2tag
using old fluentd: fluent-plugin-pgdist
using old fluentd: fluent-plugin-pgjson+
using old fluentd: fluent-plugin-pg_stat
using old fluentd: fluent-plugin-postgres
using old fluentd: fluent-plugin-postgres-replicator
using old fluentd: fluent-plugin-prometheus+
using old fluentd: fluent-plugin-prometheus-thread
using old fluentd: fluent-plugin-protocols-filter
using old fluentd: fluent-plugin-pull_forward
using old fluentd: fluent-plugin-pushover
using old fluentd: fluent-plugin-qqwry
using old fluentd: fluent-plugin-querycombiner
using old fluentd: fluent-plugin-rabbitmq-json-trace-parser
using old fluentd: fluent-plugin-rackspace-cloud-files
no Github:fluent-plugin-rambler
using old fluentd: fluent-plugin-rambler
using old fluentd: fluent-plugin-rancher
using old fluentd: fluent-plugin-raven-decoder
using old fluentd: fluent-plugin-rawexec
using old fluentd: fluent-plugin-rds-genlog
using old fluentd: fluent-plugin-rds-log
using old fluentd: fluent-plugin-rds-pgsql-log
using old fluentd: fluent-plugin-rds-pgsql-slow-query-log
using old fluentd: fluent-plugin-rds-slowlog
using old fluentd: fluent-plugin-rds-slowlog-patched-encoding
using old fluentd: fluent-plugin-reassemble
using old fluentd: fluent-plugin-record-modifier+
using old fluentd: fluent-plugin-record-reformer
using old fluentd: fluent-plugin-record-serializer
using old fluentd: fluent-plugin-record_splitter
no repository: fluent-plugin-redeliver
using old fluentd: fluent-plugin-redeliver
using old fluentd: fluent-plugin-redis-counter
using old fluentd: fluent-plugin-redislist
using old fluentd: fluent-plugin-redis-list
using old fluentd: fluent-plugin-redis-multi-type-counter
using old fluentd: fluent-plugin-redis-publish
using old fluentd: fluent-plugin-redis-pubsub
using old fluentd: fluent-plugin-redis-slowlog
using old fluentd: fluent-plugin-redisstore
using old fluentd: fluent-plugin-redis-store
using old fluentd: fluent-plugin-redis-store-seldon
using old fluentd: fluent-plugin-redis-store-wejick
using old fluentd: fluent-plugin-redis-url-tracker
no v0.14 API:fluent-plugin-redmine
no Github:fluent-plugin-redoop
using old fluentd: fluent-plugin-redoop
using old fluentd: fluent-plugin-redshift
using old fluentd: fluent-plugin-redshift-anton
using old fluentd: fluent-plugin-redshift-auto
using old fluentd: fluent-plugin-redshift-aws-v1
using old fluentd: fluent-plugin-redshift-kwarter
using old fluentd: fluent-plugin-redshift-out
using old fluentd: fluent-plugin-reemit
using old fluentd: fluent-plugin-referer-parser
using old fluentd: fluent-plugin-remote_syslog
using old fluentd: fluent-plugin-remove-empty
using old fluentd: fluent-plugin-resolv
using old fluentd: fluent-plugin-resque
using old fluentd: fluent-plugin-resque-ex
using old fluentd: fluent-plugin-resque_stat
using old fluentd: fluent-plugin-retag
using old fluentd: fluent-plugin-rethink
using old fluentd: fluent-plugin-rewriteimage
using old fluentd: fluent-plugin-rewrite-tag-filter+
using old fluentd: fluent-plugin-riak
using old fluentd: fluent-plugin-riak2
using old fluentd: fluent-plugin-riak2f
using old fluentd: fluent-plugin-riemann
using old fluentd: fluent-plugin-riemann-tulos
using old fluentd: fluent-plugin-rss
using old fluentd: fluent-plugin-rtail
no repository: fluent-plugin-rtf-dash
using old fluentd: fluent-plugin-rtf-dash
using old fluentd: fluent-plugin-ruby-kafka
using old fluentd: fluent-plugin-ruby-memory-usage-profiler
using old fluentd: fluent-plugin-ruby_one_liner
no Github:fluent-plugin-s3-fork
using old fluentd: fluent-plugin-s3-fork
using old fluentd: fluent-plugin-s3in
using old fluentd: fluent-plugin-s3-input
using old fluentd: fluent-plugin-sadf
using old fluentd: fluent-plugin-samefile
using old fluentd: fluent-plugin-sar
using old fluentd: fluent-plugin-say
using old fluentd: fluent-plugin-scribe
using old fluentd: fluent-plugin-script
using old fluentd: fluent-plugin-script_append
using old fluentd: fluent-plugin-secure-forward
using old fluentd: fluent-plugin-secure-forward-addproxy
no Github:fluent-plugin-secure-tcp
using old fluentd: fluent-plugin-secure-tcp
using old fluentd: fluent-plugin-sendgrid-event
using old fluentd: fluent-plugin-sendmail
using old fluentd: fluent-plugin-sensu
using old fluentd: fluent-plugin-sentry
using old fluentd: fluent-plugin-sentry-http
using old fluentd: fluent-plugin-ses
using old fluentd: fluent-plugin-sforce
using old fluentd: fluent-plugin-sidekiq
using old fluentd: fluent-plugin-simplearithmetic
no repository: fluent-plugin-simplefile
using old fluentd: fluent-plugin-simplefile
using old fluentd: fluent-plugin-sixpack
using old fluentd: fluent-plugin-slack+
using old fluentd: fluent-plugin-slackrtm
using old fluentd: fluent-plugin-slfparser
using old fluentd: fluent-plugin-sndacs
using old fluentd: fluent-plugin-snmp
using old fluentd: fluent-plugin-snmptrap
using old fluentd: fluent-plugin-sns
using old fluentd: fluent-plugin-solr
using old fluentd: fluent-plugin-sort
using old fluentd: fluent-plugin-specinfra_inventory
using old fluentd: fluent-plugin-spectrum
using old fluentd: fluent-plugin-split-array
using old fluentd: fluent-plugin-splunk
using old fluentd: fluent-plugin-splunkapi
using old fluentd: fluent-plugin-splunkapi-ssln
using old fluentd: fluent-plugin-splunk-ex
using old fluentd: fluent-plugin-splunkhec
using old fluentd: fluent-plugin-splunk-http-eventcollector
using old fluentd: fluent-plugin-sql+
no Github:fluent-plugin-sql-enchanced
using old fluentd: fluent-plugin-sql-enchanced
using old fluentd: fluent-plugin-sql_fingerprint
no Github:fluent-plugin-sqlite3
using old fluentd: fluent-plugin-sqlite3
no repository: fluent-plugin-sqlquery-ssh
using old fluentd: fluent-plugin-sqlquery-ssh
using old fluentd: fluent-plugin-sqs
no Github:fluent-plugin-sqs-check-size
using old fluentd: fluent-plugin-sqs-check-size
using old fluentd: fluent-plugin-sstp
using old fluentd: fluent-plugin-stackdriver-monitoring
using old fluentd: fluent-plugin-stackdriver-v1-metrics
using old fluentd: fluent-plugin-stats
using old fluentd: fluent-plugin-statsd
using old fluentd: fluent-plugin-statsd_event
using old fluentd: fluent-plugin-statsd-event
using old fluentd: fluent-plugin-statsd-output
using old fluentd: fluent-plugin-statsite
using old fluentd: fluent-plugin-stats-notifier
no repository: fluent-plugin-std-formatter
using old fluentd: fluent-plugin-std-formatter
using old fluentd: fluent-plugin-stdin
using old fluentd: fluent-plugin-stdout_ex
using old fluentd: fluent-plugin-stdout-pp+
using old fluentd: fluent-plugin-storm
no repository: fluent-plugin-straight-file
using old fluentd: fluent-plugin-straight-file
using old fluentd: fluent-plugin-sumologic
using old fluentd: fluent-plugin-sumologic-2
using old fluentd: fluent-plugin-sumologic-carsonoid
using old fluentd: fluent-plugin-sumologic-caugustus
using old fluentd: fluent-plugin-sumologic-cloud-syslog
using old fluentd: fluent-plugin-sumologic-mattk42
using old fluentd: fluent-plugin-sumologic_output
using old fluentd: fluent-plugin-suppress
using old fluentd: fluent-plugin-swift
using old fluentd: fluent-plugin-swift-sweep
no v0.14 API:fluent-plugin-syslog-tls
using old fluentd: fluent-plugin-tagdata
using old fluentd: fluent-plugin-tagfile
using old fluentd: fluent-plugin-tagged_copy
using old fluentd: fluent-plugin-tagged_udp
no repository: fluent-plugin-tag-ignore
using old fluentd: fluent-plugin-tag-ignore
using old fluentd: fluent-plugin-tai64n_parser
using old fluentd: fluent-plugin-tail-asis
no repository: fluent-plugin-tailer
using old fluentd: fluent-plugin-tailer
using old fluentd: fluent-plugin-tail-ex
using old fluentd: fluent-plugin-tail-ex-asis
using old fluentd: fluent-plugin-tail-ex-rotate
using old fluentd: fluent-plugin-tail-lite
using old fluentd: fluent-plugin-tail-multiline
using old fluentd: fluent-plugin-tail-multiline-ex
using old fluentd: fluent-plugin-tailpath
using old fluentd: fluent-plugin-tail_path
using old fluentd: fluent-plugin-td-monitoring
using old fluentd: fluent-plugin-threshold
using old fluentd: fluent-plugin-time_parser
no repository: fluent-plugin-time-sliced-filter
using old fluentd: fluent-plugin-time-sliced-filter
using old fluentd: fluent-plugin-timestamper
using old fluentd: fluent-plugin-to_js
using old fluentd: fluent-plugin-top
using old fluentd: fluent-plugin-to_s
using old fluentd: fluent-plugin-tumblr
using old fluentd: fluent-plugin-twilio
using old fluentd: fluent-plugin-twittersearch
using old fluentd: fluent-plugin-typecast+
using old fluentd: fluent-plugin-typetalk
using old fluentd: fluent-plugin-ua-parser
using old fluentd: fluent-plugin-udp
using old fluentd: fluent-plugin-unique-counter
no repository: fluent-plugin-unit-time-filter
using old fluentd: fluent-plugin-unit-time-filter
using old fluentd: fluent-plugin-unwind
no v0.14 API:fluent-plugin-uri_decoder
using old fluentd: fluent-plugin-uri-parser
using old fluentd: fluent-plugin-validate-tag-filter
using old fluentd: fluent-plugin-vertica
using old fluentd: fluent-plugin-vertica-query
using old fluentd: fluent-plugin-viaq_data_model
no Github:fluent-plugin-viki
using old fluentd: fluent-plugin-viki
no Github:fluent-plugin-warp10
using old fluentd: fluent-plugin-warp10
using old fluentd: fluent-plugin-watch-process
using old fluentd: fluent-plugin-weather
using old fluentd: fluent-plugin-webhook-github
no repository: fluent-plugin-webhook-mackerel
using old fluentd: fluent-plugin-webhook-mackerel
using old fluentd: fluent-plugin-websocket
using old fluentd: fluent-plugin-websocket-ruby-1.9
using old fluentd: fluent-plugin-websphere-iib
no repository: fluent-plugin-wendelin
using old fluentd: fluent-plugin-wendelin
no Github:fluent-plugin-werkzeug-profiler
using old fluentd: fluent-plugin-werkzeug-profiler
no repository: fluent-plugin-winevtlog
using old fluentd: fluent-plugin-winevtlog
using old fluentd: fluent-plugin-wire-protocol-compat
using old fluentd: fluent-plugin-with-extra-fields-parser
using old fluentd: fluent-plugin-xml-simple-filter
using old fluentd: fluent-plugin-xml-simple-parser
using old fluentd: fluent-plugin-xymon
using old fluentd: fluent-plugin-yammer
using old fluentd: fluent-plugin-yo
using old fluentd: fluent-plugin-yohoushi
using old fluentd: fluent-plugin-zabbix
using old fluentd: fluent-plugin-zabbix-agent
using old fluentd: fluent-plugin-zabbix-simple
using old fluentd: fluent-plugin-zabbix-simple-bufferd
using old fluentd: fluent-plugin-zmq-pub
using old fluentd: fluent-plugin-zoomdata
fluent-plugin-amplifier-filter
fluent-plugin-amqp
fluent-plugin-azurestorage
fluent-plugin-cloudwatch-ingest
fluent-plugin-cloudwatch-ingest-chaeyk
fluent-plugin-concat
fluent-plugin-config-expander
fluent-plugin-datacounter
fluent-plugin-ec2-metadata
fluent-plugin-everysense
fluent-plugin-extract_query_params
fluent-plugin-festival
fluent-plugin-flatten-hash
fluent-plugin-formatter_simple_tsv
fluent-plugin-github-activities
fluent-plugin-grok-parser
fluent-plugin-groonga
fluent-plugin-growthforecast
fluent-plugin-hipchat
fluent-plugin-http_forward
fluent-plugin-http-pull
fluent-plugin-ikachan
fluent-plugin-json-in-json-sp
fluent-plugin-kvp-filter
fluent-plugin-logentries_ssl
fluent-plugin-mongo*
fluent-plugin-mqtt-io
fluent-plugin-mysql
fluent-plugin-netflow*
fluent-plugin-netflow-enchanced*
fluent-plugin-notifier
fluent-plugin-numeric-counter
fluent-plugin-numeric-monitor
fluent-plugin-output-solr
fluent-plugin-ping-message
fluent-plugin-redis
fluent-plugin-redis_list_poller
fluent-plugin-rename-key
fluent-plugin-rewrite
fluent-plugin-route
fluent-plugin-s3*
fluent-plugin-sampling-filter
fluent-plugin-serialport
fluent-plugin-sflow
fluent-plugin-split-event
fluent-plugin-sqs-poll
fluent-plugin-storage-leveldb
fluent-plugin-storage-memcached
fluent-plugin-storage-mongo
fluent-plugin-storage-redis
fluent-plugin-systemd
fluent-plugin-tcp-client
fluent-plugin-tcp_mc
fluent-plugin-td*
fluent-plugin-terminal_notifier
fluent-plugin-twitter
fluent-plugin-twitter-enchanced
fluent-plugin-webhdfs
fluent-plugin-windows-eventlog
fluent-plugin-woothee
fluent-plugin-zulip
This file has been truncated, but you can view the full file.
[{"name":"fluent-plugin-5rocks","downloads":1173,"version":"0.0.1","version_downloads":1173,"platform":"ruby","authors":"hokuts","info":"Fluentd plugin to store data into 5Rocks","licenses":["MIT"],"metadata":{},"sha":"1c79994ecd0ac1f984ca5d37286739614e651cd22b463ecb560b887c4dcc6520","project_uri":"https://rubygems.org/gems/fluent-plugin-5rocks","gem_uri":"https://rubygems.org/gems/fluent-plugin-5rocks-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-5rocks/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-01-06T00:00:00.000Z","created_at":"2015-01-06T08:56:21.833Z","description":"","downloads_count":1173,"number":"0.0.1","summary":"Fluentd plugin to store data into 5Rocks","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-access","downloads":3537,"version":"0.0.2","version_downloads":1972,"platform":"ruby","authors":"kkaneko","info":"filtreing access log","licenses":[],"metadata":{},"sha":"854d74e8eca77450206dd25906867026abce5737722321e17d9484ace22643ec","project_uri":"https://rubygems.org/gems/fluent-plugin-access","gem_uri":"https://rubygems.org/gems/fluent-plugin-access-0.0.2.gem","homepage_uri":"https://github.com/kenjikaneko/fluent-plugin-access","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-access/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mongoid","requirements":">= 0"},{"name":"msgpack","requirements":">= 0"},{"name":"nokogiri","requirements":">= 0"}]},"built_at":"2012-11-27T00:00:00.000Z","created_at":"2012-11-27T11:05:20.610Z","description":"filtreing access log","downloads_count":1972,"number":"0.0.2","summary":"filtreing access log","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-add","downloads":47252,"version":"0.0.7","version_downloads":5875,"platform":"ruby","authors":"yu yamada","info":"Output filter plugin to add messages","licenses":["MIT"],"metadata":{},"sha":"f94b049d39dbd596051d24e040527bf120a326e240f4eee29fe89901f1f6111e","project_uri":"https://rubygems.org/gems/fluent-plugin-add","gem_uri":"https://rubygems.org/gems/fluent-plugin-add-0.0.7.gem","homepage_uri":"https://github.com/yu-yamada/fluent-plugin-add","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-add/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-04-03T00:00:00.000Z","created_at":"2017-04-03T09:04:22.207Z","description":"Output filter plugin to add messages","downloads_count":5875,"number":"0.0.7","summary":"Output filter plugin to add messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-add_empty_array","downloads":1830,"version":"0.0.2","version_downloads":1089,"platform":"ruby","authors":"Hirokazu Hata","info":"\n We can't add record has nil value which target repeated mode column to google bigquery.\n So this plugin add empty array if record has nil value or don't have key and value which target repeated mode column.\n ","licenses":["MIT"],"metadata":{},"sha":"3a177d995241c65efee92472cc82cb3f55452d37b6b8f9cff8922291d0fcd648","project_uri":"https://rubygems.org/gems/fluent-plugin-add_empty_array","gem_uri":"https://rubygems.org/gems/fluent-plugin-add_empty_array-0.0.2.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-add_empty_array/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-byebug","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-03-05T00:00:00.000Z","created_at":"2015-03-05T02:31:15.773Z","description":"\n We can't add record has nil value which target repeated mode column to google bigquery.\n So this plugin add empty array if record has nil value or don't have key and value which target repeated mode column.\n ","downloads_count":1089,"number":"0.0.2","summary":"Fluentd plugin to add empty array","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-aerospike","downloads":1391,"version":"0.0.0","version_downloads":1391,"platform":"ruby","authors":"Hatayama Hideharu","info":"Fluent BufferedOutput plugin for Aerospike","licenses":["APLv2"],"metadata":{},"sha":"2501d46a1d38fc79e3232c81879a592b5d97c41f5ef15910c2a6f4c4bd0c65fe","project_uri":"https://rubygems.org/gems/fluent-plugin-aerospike","gem_uri":"https://rubygems.org/gems/fluent-plugin-aerospike-0.0.0.gem","homepage_uri":"https://bitbucket.org/hidepiy/fluent-plugin-aerospike","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-aerospike/0.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"aerospike","requirements":"= 0.1.3"},{"name":"fluentd","requirements":"~> 0"},{"name":"uuidtools","requirements":">= 2.1.5, ~> 2.1"}]},"built_at":"2014-11-10T00:00:00.000Z","created_at":"2014-11-10T05:23:07.271Z","description":"Fluent BufferedOutput plugin for Aerospike","downloads_count":1391,"number":"0.0.0","summary":"Fluent BufferedOutput plugin for Aerospike","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-aerospike-cluster","downloads":1229,"version":"0.0.2","version_downloads":479,"platform":"ruby","authors":"kadzuya","info":"fluent plugin to insert Aerospike.","licenses":["Apache-2.0"],"metadata":{},"sha":"d1925798ce06378314a9c8a359ce506ab7e767543559803397e8f09491004687","project_uri":"https://rubygems.org/gems/fluent-plugin-aerospike-cluster","gem_uri":"https://rubygems.org/gems/fluent-plugin-aerospike-cluster-0.0.2.gem","homepage_uri":"http://github.com/kadzuya/fluent-plugin-aerospike-cluster","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-aerospike-cluster/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"aerospike","requirements":"< 2.0.0, >= 1.0.0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-06-30T00:00:00.000Z","created_at":"2016-06-30T11:26:31.805Z","description":"fluent plugin to insert Aerospike.","downloads_count":479,"number":"0.0.2","summary":"fluent plugin to insert Aerospike.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-aes-forward","downloads":2733,"version":"0.0.2","version_downloads":1562,"platform":"ruby","authors":"Keiji Matsuzaki","info":"fluent plugin aes forward","licenses":["Apache License Version 2.0."],"metadata":{},"sha":"a9946069bf9a7e3994a1b909668fa7a7eab65453532d39e6e73624dc1a8b5a94","project_uri":"https://rubygems.org/gems/fluent-plugin-aes-forward","gem_uri":"https://rubygems.org/gems/fluent-plugin-aes-forward-0.0.2.gem","homepage_uri":"https://github.com/aiming/fluent-plugin-aes-forward","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-aes-forward/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-12-12T00:00:00.000Z","created_at":"2013-12-12T07:52:32.536Z","description":"fluent plugin aes forward","downloads_count":1562,"number":"0.0.2","summary":"This plugin is encrypt data at AES while transfer data.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-airbrake-logger","downloads":3709,"version":"0.0.4","version_downloads":1098,"platform":"ruby","authors":"Shuichi Ohsawa","info":"Fluent output plugin to Airbrake(Errbit) by fluent-logger","licenses":["MIT"],"metadata":{},"sha":"93511d63702419d67d4efbe4d38525c6d4ac3affa4c405991a308054297220a0","project_uri":"https://rubygems.org/gems/fluent-plugin-airbrake-logger","gem_uri":"https://rubygems.org/gems/fluent-plugin-airbrake-logger-0.0.4.gem","homepage_uri":"https://github.com/ohsawa0515/fluent-plugin-airbrake-logger","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-airbrake-logger/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"airbrake","requirements":">= 4.3.0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-08-18T00:00:00.000Z","created_at":"2015-08-18T11:04:21.396Z","description":"Fluent output plugin to Airbrake(Errbit) by fluent-logger","downloads_count":1098,"number":"0.0.4","summary":"Fluent output plugin to Airbrake(Errbit) by fluent-logger","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-airbrake-python","downloads":4589,"version":"0.2","version_downloads":1335,"platform":"ruby","authors":"Moriyoshi Koizumi","info":"Airbrake (Python) plugin for Fluentd","licenses":[],"metadata":{},"sha":"e5a4fffaf825e22f315697a0ed6eb81d8fb620f218e9f6cd8e2ceeb0a88638a4","project_uri":"https://rubygems.org/gems/fluent-plugin-airbrake-python","gem_uri":"https://rubygems.org/gems/fluent-plugin-airbrake-python-0.2.gem","homepage_uri":"https://github.com/moriyoshi/fluent-plugin-airbrake-python","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-airbrake-python/0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"airbrake","requirements":">= 3.1"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-06-20T00:00:00.000Z","created_at":"2014-06-20T08:27:01.798Z","description":"Airbrake (Python) plugin for Fluentd","downloads_count":1335,"number":"0.2","summary":"Airbrake (Python) plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-aliyun-odps","downloads":11404,"version":"0.1.7","version_downloads":587,"platform":"ruby","authors":"Xiao Dong, Zongtao Sun","info":"Aliyun ODPS output plugin for Fluentd event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"695525980d56ea5c99bf8772bb6a3be92ea8021c609f2e9f999f8a4977064499","project_uri":"https://rubygems.org/gems/fluent-plugin-aliyun-odps","gem_uri":"https://rubygems.org/gems/fluent-plugin-aliyun-odps-0.1.7.gem","homepage_uri":"https://github.com/aliyun/aliyun-odps-fluentd-plugin","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-aliyun-odps/0.1.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.2.0, ~> 1.2"},{"name":"rake","requirements":">= 0.9.2, ~> 0.9"},{"name":"test-unit","requirements":">= 3.0.8, ~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.49"},{"name":"protobuf","requirements":">= 3.5.1, ~> 3.5"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2016-06-22T00:00:00.000Z","created_at":"2016-06-22T10:13:03.636Z","description":"Aliyun ODPS output plugin for Fluentd event collector","downloads_count":587,"number":"0.1.7","summary":"Aliyun ODPS output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-amazon_sns","downloads":11597,"version":"0.0.5","version_downloads":274,"platform":"ruby","authors":"Tatsuhiko Miyagawa","info":"Fluent output plugin to send to Amazon SNS","licenses":["MIT"],"metadata":{},"sha":"829c425fa6cb057914f7f3d21453e4739c050125617f814e066060ae0dc43b59","project_uri":"https://rubygems.org/gems/fluent-plugin-amazon_sns","gem_uri":"https://rubygems.org/gems/fluent-plugin-amazon_sns-0.0.5.gem","homepage_uri":"https://github.com/miyagawa/fluent-plugin-amazon_sns","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-amazon_sns/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"aws-sdk-v1","requirements":"~> 1.12"},{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2017-04-12T00:00:00.000Z","created_at":"2017-04-12T07:48:39.969Z","description":"","downloads_count":274,"number":"0.0.5","summary":"Fluent output plugin to send to Amazon SNS","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-amplifier-filter","downloads":20251,"version":"1.0.0","version_downloads":376,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"plugin to increase/decrease values by specified ratio (0-1 or 1-)","licenses":["Apache-2.0"],"metadata":{},"sha":"04c48225a5ff288aa40065e4358ff292230eadf46cd0ab3277f714e887b4bd65","project_uri":"https://rubygems.org/gems/fluent-plugin-amplifier-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-amplifier-filter-1.0.0.gem","homepage_uri":"http://github.com/tagomoris/fluent-plugin-amplifier-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-amplifier-filter/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-02-01T00:00:00.000Z","created_at":"2017-02-01T05:36:39.822Z","description":"plugin to increase/decrease values by specified ratio (0-1 or 1-)","downloads_count":376,"number":"1.0.0","summary":"plugin to re-emit messages with amplified values","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-amplitude","downloads":4033,"version":"0.1.0","version_downloads":1341,"platform":"ruby","authors":"Vijay Ramesh","info":"Fluentd plugin to output event data to Amplitude","licenses":[],"metadata":{},"sha":"528314531f85533a9aa189c519744e1db7c1adaa8727314969b0e9680391ec6c","project_uri":"https://rubygems.org/gems/fluent-plugin-amplitude","gem_uri":"https://rubygems.org/gems/fluent-plugin-amplitude-0.1.0.gem","homepage_uri":"https://github.com/change/fluent-plugin-amplitude","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-amplitude/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 11.3"},{"name":"rspec","requirements":"~> 3.5"},{"name":"rspec-mocks","requirements":"~> 3.5"},{"name":"rubocop","requirements":"~> 0.44.1"},{"name":"test-unit","requirements":">= 3.2.1, ~> 3.2"}],"runtime":[{"name":"amplitude-api","requirements":"~> 0.0.9"},{"name":"fluentd","requirements":">= 0.10.55"},{"name":"msgpack","requirements":"~> 0"}]},"built_at":"2017-01-03T00:00:00.000Z","created_at":"2017-01-03T18:28:26.650Z","description":"Fluentd plugin to output event data to Amplitude","downloads_count":1341,"number":"0.1.0","summary":"Fluentd plugin to output event data to Amplitude","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-amqp","downloads":18860,"version":"0.11.0","version_downloads":1022,"platform":"ruby","authors":"Hiromi Ishii, Team Giraffi, HiganWorks LLC, Toby Jackson","info":"AMQP input/output plugin for fluentd","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"e86b9ac211cc9bfccff6db5e70ee5a90ab65934e6b07c281aa11f7eb918048b8","project_uri":"https://rubygems.org/gems/fluent-plugin-amqp","gem_uri":"https://rubygems.org/gems/fluent-plugin-amqp-0.11.0.gem","homepage_uri":"http://github.com/giraffi/fluent-plugin-amqp","wiki_uri":"","documentation_uri":"https://github.com/giraffi/fluent-plugin-amqp/blob/master/README.md","mailing_list_uri":"","source_code_uri":"https://github.com/giraffi/fluent-plugin-amqp","bug_tracker_uri":"https://github.com/giraffi/fluent-plugin-amqp/issues","changelog_uri":null,"dependencies":{"development":[{"name":"bunny-mock","requirements":">= 1.0"},{"name":"minitest","requirements":"< 5.0.0"},{"name":"rake","requirements":">= 0"},{"name":"shoulda","requirements":">= 3.5.0"},{"name":"simplecov","requirements":">= 0.10"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"bunny","requirements":"< 3, >= 1.7"},{"name":"fluentd","requirements":"< 2, >= 0.14.8"}]},"built_at":"2017-03-10T00:00:00.000Z","created_at":"2017-03-10T08:32:19.450Z","description":"AMQP input/output plugin for fluentd","downloads_count":1022,"number":"0.11.0","summary":"AMQP input/output plugin or fluentd","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-amqp2","downloads":45571,"version":"0.2.0","version_downloads":4578,"platform":"ruby","authors":"Augusto Becciu, Juan Manuel Barreneche","info":"AMQP output plugin for Fluent","licenses":[],"metadata":{},"sha":"ef1f351435249c245547136fc13343327b0adb2b893ff864d0fe8763b26dbd7b","project_uri":"https://rubygems.org/gems/fluent-plugin-amqp2","gem_uri":"https://rubygems.org/gems/fluent-plugin-amqp2-0.2.0.gem","homepage_uri":"https://github.com/restorando/fluent-plugin-amqp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-amqp2/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"mocha","requirements":">= 0"},{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"bunny","requirements":">= 0.10.8"},{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2017-03-31T00:00:00.000Z","created_at":"2017-03-31T07:47:28.580Z","description":"AMQP output plugin for Fluent","downloads_count":4578,"number":"0.2.0","summary":"AMQP output plugin for Fluent","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-andon","downloads":5367,"version":"0.0.5","version_downloads":1341,"platform":"ruby","authors":"Masaki Matsushita","info":"Fluentd plugin for role based log collection","licenses":["MIT"],"metadata":{},"sha":"7ae92b1dad58d0d11dc06f6b3835c447be38830a8dbfe22233825f50e04dbd95","project_uri":"https://rubygems.org/gems/fluent-plugin-andon","gem_uri":"https://rubygems.org/gems/fluent-plugin-andon-0.0.5.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-andon/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":"~> 10.3"}],"runtime":[{"name":"fluent-plugin-multiprocess","requirements":"~> 0.1"},{"name":"metricsspec","requirements":"~> 0.0.1"},{"name":"rest-client","requirements":"~> 1.6"}]},"built_at":"2014-06-13T00:00:00.000Z","created_at":"2014-06-13T14:49:42.654Z","description":"Fluentd plugin for role based log collection","downloads_count":1341,"number":"0.0.5","summary":"Fluentd plugin for role based log collection","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-anomalydetect","downloads":16487,"version":"0.1.7","version_downloads":3294,"platform":"ruby","authors":"Muddy Dixon","info":"detect anomal sequential input casually","licenses":[],"metadata":{},"sha":"be3c1f44ac5e1648630e90c2b2cf114a993f2baa42826b766d0f9f9db0bd420b","project_uri":"https://rubygems.org/gems/fluent-plugin-anomalydetect","gem_uri":"https://rubygems.org/gems/fluent-plugin-anomalydetect-0.1.7.gem","homepage_uri":"https://github.com/muddydixon/fluent-plugin-anomalydetect","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-anomalydetect/0.1.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"octorelease","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-09-17T00:00:00.000Z","created_at":"2014-09-17T05:49:00.217Z","description":"detect anomal sequential input casually","downloads_count":3294,"number":"0.1.7","summary":"detect anomal sequential input casually","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-anonymizer","downloads":14817,"version":"0.5.1","version_downloads":400,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd filter output plugin to anonymize records with HMAC of MD5/SHA1/SHA256/SHA384/SHA512 algorithms. This data masking plugin protects privacy data such as UserID, Email, Phone number, IPv4/IPv6 address and so on.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"b66b40c3661b2ba663ec77fbe8ae7051803e9f5e21cbbc665d1787bdb9f3f4aa","project_uri":"https://rubygems.org/gems/fluent-plugin-anonymizer","gem_uri":"https://rubygems.org/gems/fluent-plugin-anonymizer-0.5.1.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-anonymizer","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-anonymizer/0.5.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-rewrite-tag-name","requirements":">= 0"}]},"built_at":"2017-02-28T00:00:00.000Z","created_at":"2017-02-28T01:59:27.623Z","description":"","downloads_count":400,"number":"0.5.1","summary":"Fluentd filter output plugin to anonymize records with HMAC of MD5/SHA1/SHA256/SHA384/SHA512 algorithms. This data masking plugin protects privacy data such as UserID, Email, Phone number, IPv4/IPv6 address and so on.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-apache_modstatus","downloads":1848,"version":"0.0.5","version_downloads":442,"platform":"ruby","authors":"Jason Westbrook","info":"Gather the status from the Apache mod_status Module","licenses":["MIT"],"metadata":{},"sha":"16f543eda3e10f77f714626b060bf7c3b020f0546999936f5ba293646cdd2f37","project_uri":"https://rubygems.org/gems/fluent-plugin-apache_modstatus","gem_uri":"https://rubygems.org/gems/fluent-plugin-apache_modstatus-0.0.5.gem","homepage_uri":"https://github.com/jwestbrook/fluent-plugin-apache_modstatus","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-apache_modstatus/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.30"}]},"built_at":"2016-08-18T00:00:00.000Z","created_at":"2016-08-18T20:13:07.555Z","description":"","downloads_count":442,"number":"0.0.5","summary":"Gather the status from the Apache mod_status Module","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-appdynamics","downloads":4680,"version":"0.0.6","version_downloads":1029,"platform":"ruby","authors":"chandrashekar Tippur","info":"FLuentd plugin for appdynamics alerts... WIP","licenses":["MIT"],"metadata":{},"sha":"83475383b923c26ee5781bab3b2812616aad62753fb1469b7f6cc02545e3c0fd","project_uri":"https://rubygems.org/gems/fluent-plugin-appdynamics","gem_uri":"https://rubygems.org/gems/fluent-plugin-appdynamics-0.0.6.gem","homepage_uri":"https://github.com/ctippur/fluent-plugin-appdynamics","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-appdynamics/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.6, ~> 0.9"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.52, ~> 0.10"},{"name":"json","requirements":">= 1.8.2, ~> 1.1"},{"name":"rest-client","requirements":">= 1.7.3, ~> 1.7"}]},"built_at":"2015-03-02T00:00:00.000Z","created_at":"2015-04-06T23:17:53.475Z","description":"FLuentd plugin for appdynamics alerts... WIP","downloads_count":1029,"number":"0.0.6","summary":"Fluentd input plugin for appdynamics alerts","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-append-kubernetes-labels-to-tag","downloads":526,"version":"0.0.3.pre.alpha5","version_downloads":112,"platform":"ruby","authors":"Redbubble Delivery Engineering Team","info":"Filter plugin to append certain Kubernetes labels to the Fluentd tag","licenses":["MIT"],"metadata":{},"sha":"253d90144223d15b2f09f053f8f06c5e221a3bd90b5caf944271d51edf70dcdc","project_uri":"https://rubygems.org/gems/fluent-plugin-append-kubernetes-labels-to-tag","gem_uri":"https://rubygems.org/gems/fluent-plugin-append-kubernetes-labels-to-tag-0.0.3.pre.alpha5.gem","homepage_uri":"https://github.com/redbubble/fluent-plugin-append_kubernetes_labels_to_tag","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-append-kubernetes-labels-to-tag/0.0.3.pre.alpha5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.0"}]},"built_at":"2017-04-12T00:00:00.000Z","created_at":"2017-04-12T01:56:29.276Z","description":"Filter plugin to append certain Kubernetes labels to the Fluentd tag","downloads_count":112,"number":"0.0.3.pre.alpha5","summary":"Filter plugin to append certain Kubernetes labels to the Fluentd tag","rubygems_version":"> 1.3.1","ruby_version":">= 2.0.0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-arango","downloads":1916,"version":"0.0.1","version_downloads":1916,"platform":"ruby","authors":"tamtam180","info":"ArangoDB plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"4ce8c703c3bd9e5bc4d72331ba0e4cc423d27315ca1f64d4b830717878ffd919","project_uri":"https://rubygems.org/gems/fluent-plugin-arango","gem_uri":"https://rubygems.org/gems/fluent-plugin-arango-0.0.1.gem","homepage_uri":"","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-arango/0.0.1","mailing_list_uri":"","source_code_uri":"https://github.com/tamtam180/fluent-plugin-arango","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"ashikawa-core","requirements":"~> 0.5.1"},{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2013-02-18T00:00:00.000Z","created_at":"2013-02-18T04:13:13.554Z","description":"ArangoDB plugin for Fluent event collector","downloads_count":1916,"number":"0.0.1","summary":"ArangoDB plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-arduino","downloads":1558,"version":"0.0.1","version_downloads":1558,"platform":"ruby","authors":"futoase","info":"Arduino connect plugin.","licenses":["MIT"],"metadata":{},"sha":"a2647500e54005af59d7b1a760ace3250759234424e08e22c6cf792b30deb9df","project_uri":"https://rubygems.org/gems/fluent-plugin-arduino","gem_uri":"https://rubygems.org/gems/fluent-plugin-arduino-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-arduino/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"serialport","requirements":">= 0"}]},"built_at":"2013-12-16T00:00:00.000Z","created_at":"2013-12-16T16:50:05.658Z","description":"Arduino connect plugin.","downloads_count":1558,"number":"0.0.1","summary":"fluent-plugin-arduino","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-assert","downloads":1437,"version":"0.0.1","version_downloads":1437,"platform":"ruby","authors":"Fukui ReTu","info":"Output Filter plugin to assertion","licenses":["APL2.0"],"metadata":{},"sha":"119e297553886680e4e13c6d7df9ceb38bd8a2617c95d56159b621bd817251ab","project_uri":"https://rubygems.org/gems/fluent-plugin-assert","gem_uri":"https://rubygems.org/gems/fluent-plugin-assert-0.0.1.gem","homepage_uri":"https://github.com/fukuiretu/fluent-plugin-assert","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-assert/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-06-22T00:00:00.000Z","created_at":"2014-06-22T14:30:38.621Z","description":"Output Filter plugin to assertion","downloads_count":1437,"number":"0.0.1","summary":"Output Filter plugin to assertion","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-aurora-slowquerylog","downloads":1194,"version":"0.0.4","version_downloads":425,"platform":"ruby","authors":"Takayuki WATANABE","info":"A fluentd plugin that collects AWS Aurora slow query logs with `log_output=FILE`","licenses":["MIT"],"metadata":{},"sha":"558567847066219bb7323348f5cce8a0a18f4bbec3f066642894227e39961592","project_uri":"https://rubygems.org/gems/fluent-plugin-aurora-slowquerylog","gem_uri":"https://rubygems.org/gems/fluent-plugin-aurora-slowquerylog-0.0.4.gem","homepage_uri":"https://github.com/takanabe/fluent-plugin-aurora-slowquerylog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-aurora-slowquerylog/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry-byebug","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.0.0"}],"runtime":[{"name":"activesupport","requirements":">= 0"},{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":">= 0"},{"name":"myslog","requirements":">= 0"}]},"built_at":"2016-10-19T00:00:00.000Z","created_at":"2016-10-19T04:34:48.830Z","description":"A fluentd plugin that collects AWS Aurora slow query logs with `log_output=FILE`","downloads_count":425,"number":"0.0.4","summary":"A fluentd plugin that collects AWS Aurora slow query logs with `log_output=FILE`","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-avro","downloads":2004,"version":"0.0.2","version_downloads":1354,"platform":"ruby","authors":"Shun Takebayashi","info":"Avro formatter plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"165ad92d51e1e7d724999e08ada61e17af1715ed23adb5d31a67988d054e1792","project_uri":"https://rubygems.org/gems/fluent-plugin-avro","gem_uri":"https://rubygems.org/gems/fluent-plugin-avro-0.0.2.gem","homepage_uri":"https://github.com/takebayashi/fluent-plugin-avro","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-avro/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"avro","requirements":">= 0"},{"name":"fluentd","requirements":"~> 0.12.0"}]},"built_at":"2015-06-13T00:00:00.000Z","created_at":"2015-06-13T11:00:01.836Z","description":"Avro formatter plugin for Fluentd","downloads_count":1354,"number":"0.0.2","summary":"Avro formatter plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-aws-elasticsearch-service","downloads":73947,"version":"0.1.6","version_downloads":41195,"platform":"ruby","authors":"atomita","info":"this is a Output plugin. Post to \"Amazon Elasticsearch Service\".","licenses":["MIT"],"metadata":{},"sha":"ea173a84e0591dc71712799736e908d60f51bd2379d83ef9016c82da21796d64","project_uri":"https://rubygems.org/gems/fluent-plugin-aws-elasticsearch-service","gem_uri":"https://rubygems.org/gems/fluent-plugin-aws-elasticsearch-service-0.1.6.gem","homepage_uri":"https://github.com/atomita/fluent-plugin-aws-elasticsearch-service","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-aws-elasticsearch-service/0.1.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"faraday_middleware-aws-signers-v4","requirements":"< 0.1.2, >= 0.1.0"},{"name":"fluentd","requirements":"~> 0"},{"name":"fluent-plugin-elasticsearch","requirements":"~> 1.0"}]},"built_at":"2016-06-23T00:00:00.000Z","created_at":"2016-06-23T01:23:01.391Z","description":"this is a Output plugin. Post to \"Amazon Elasticsearch Service\".","downloads_count":41195,"number":"0.1.6","summary":"Output plugin to post to \"Amazon Elasticsearch Service\".","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-aws-elasticsearch-service-hotfix","downloads":344,"version":"0.1.6.pre.f1","version_downloads":344,"platform":"ruby","authors":"tanaka_733","info":"this is a Output plugin. Post to \"Amazon Elasticsearch Service\".","licenses":["MIT"],"metadata":{},"sha":"f4299f8eff060bcf15412e97ccebe65944d971aa6abe45f32b6b22258fd471f1","project_uri":"https://rubygems.org/gems/fluent-plugin-aws-elasticsearch-service-hotfix","gem_uri":"https://rubygems.org/gems/fluent-plugin-aws-elasticsearch-service-hotfix-0.1.6.pre.f1.gem","homepage_uri":"https://github.com/tanaka-takayoshi/fluent-plugin-aws-elasticsearch-service","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-aws-elasticsearch-service-hotfix/0.1.6.pre.f1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"faraday_middleware-aws-signers-v4","requirements":"< 0.1.2, >= 0.1.0"},{"name":"fluentd","requirements":"~> 0"},{"name":"fluent-plugin-elasticsearch","requirements":"~> 1.0"}]},"built_at":"2017-01-18T00:00:00.000Z","created_at":"2017-01-18T07:43:18.099Z","description":"this is a Output plugin. Post to \"Amazon Elasticsearch Service\".","downloads_count":344,"number":"0.1.6.pre.f1","summary":"Output plugin to post to \"Amazon Elasticsearch Service\" with hotfix.","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-axlsx","downloads":2015,"version":"0.0.1","version_downloads":2015,"platform":"ruby","authors":"MATSUMOTO Katsuyoshi","info":"fluentd output plugin for excel","licenses":null,"metadata":{},"sha":"a2154715806d4414d2d2aea079b521260091674d08b01bb7adffa8710ffb4578","project_uri":"https://rubygems.org/gems/fluent-plugin-axlsx","gem_uri":"https://rubygems.org/gems/fluent-plugin-axlsx-0.0.1.gem","homepage_uri":"https://github.com/katsyoshi/fluent-plugin-axlsx","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-axlsx/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"axlsx","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2012-11-10T00:00:00.000Z","created_at":"2012-11-10T22:11:37.681Z","description":"fluentd output plugin for excel","downloads_count":2015,"number":"0.0.1","summary":"fluentd output plugin for excel","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-azureeventhubs","downloads":3234,"version":"0.0.5","version_downloads":143,"platform":"ruby","authors":"Hidemasa Togashi, Justin Seely","info":"Fluentd output plugin for Azure Event Hubs","licenses":["MIT"],"metadata":{},"sha":"ed752fc883f5d446063b94e47ce1da3a0055e7009931beeb5c5d08d4323b0302","project_uri":"https://rubygems.org/gems/fluent-plugin-azureeventhubs","gem_uri":"https://rubygems.org/gems/fluent-plugin-azureeventhubs-0.0.5.gem","homepage_uri":"https://github.com/htgc/fluent-plugin-azureeventhubs","wiki_uri":"","documentation_uri":"https://github.com/htgc/fluent-plugin-azureeventhubs","mailing_list_uri":"","source_code_uri":"https://github.com/htgc/fluent-plugin-azureeventhubs","bug_tracker_uri":"https://github.com/htgc/fluent-plugin-azureeventhubs/issues","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[]},"built_at":"2017-05-15T00:00:00.000Z","created_at":"2017-05-15T05:00:22.892Z","description":"Fluentd output plugin for Azure Event Hubs","downloads_count":143,"number":"0.0.5","summary":"Fluentd output plugin for Azure Event Hubs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-azurefunctions","downloads":619,"version":"0.1.1","version_downloads":356,"platform":"ruby","authors":"Yoichi Kawasaki","info":"Azure Functions output plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"5cb19a85ec7df4afe39c1dfdc47ff22640c5b426d03749cb35d302bc5491cb36","project_uri":"https://rubygems.org/gems/fluent-plugin-azurefunctions","gem_uri":"https://rubygems.org/gems/fluent-plugin-azurefunctions-0.1.1.gem","homepage_uri":"http://github.com/yokawasa/fluent-plugin-azurefunctions","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-azurefunctions/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"rest-client","requirements":">= 0"}]},"built_at":"2016-11-26T00:00:00.000Z","created_at":"2016-11-26T23:20:07.166Z","description":"Azure Functions output plugin for Fluentd","downloads_count":356,"number":"0.1.1","summary":"Azure Functions output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-azure-loganalytics","downloads":925,"version":"0.2.0","version_downloads":240,"platform":"ruby","authors":"Yoichi Kawasaki","info":"Azure Functions output plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"a28ce0a8985e8ae8561d25ee4946bcbd8a168830232c22382f607dffc59549df","project_uri":"https://rubygems.org/gems/fluent-plugin-azure-loganalytics","gem_uri":"https://rubygems.org/gems/fluent-plugin-azure-loganalytics-0.2.0.gem","homepage_uri":"http://github.com/yokawasa/fluent-plugin-azure-loganalytics","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-azure-loganalytics/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"azure-loganalytics-datacollector-api","requirements":">= 0.1.2"},{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"rest-client","requirements":">= 0"}]},"built_at":"2017-04-22T00:00:00.000Z","created_at":"2017-04-22T10:55:19.413Z","description":"Azure Functions output plugin for Fluentd","downloads_count":240,"number":"0.2.0","summary":"Azure Functions output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-azuresearch","downloads":1684,"version":"0.1.2","version_downloads":733,"platform":"ruby","authors":"Yoichi Kawasaki","info":"Azure Search output plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"49d543e35e7df2b6640c423e9fe5dca16b9f0ce1fad5bab6310f498814324bf7","project_uri":"https://rubygems.org/gems/fluent-plugin-azuresearch","gem_uri":"https://rubygems.org/gems/fluent-plugin-azuresearch-0.1.2.gem","homepage_uri":"http://github.com/yokawasa/fluent-plugin-azuresearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-azuresearch/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"rest-client","requirements":">= 0"}]},"built_at":"2016-02-20T00:00:00.000Z","created_at":"2016-02-20T04:42:25.752Z","description":"Azure Search output plugin for Fluentd","downloads_count":733,"number":"0.1.2","summary":"Azure Search output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-azurestorage","downloads":12934,"version":"0.1.0","version_downloads":152,"platform":"ruby","authors":"Hidemasa Togashi","info":"Azure Storage output plugin for Fluentd event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"1f1287d7025694248d980e5732356ad9d351ba88ab34d32bac247bc36cec1205","project_uri":"https://rubygems.org/gems/fluent-plugin-azurestorage","gem_uri":"https://rubygems.org/gems/fluent-plugin-azurestorage-0.1.0.gem","homepage_uri":"https://github.com/htgc/fluent-plugin-azurestorage","wiki_uri":"","documentation_uri":"https://github.com/htgc/fluent-plugin-azurestorage","mailing_list_uri":"","source_code_uri":"https://github.com/htgc/fluent-plugin-azurestorage","bug_tracker_uri":"https://github.com/htgc/fluent-plugin-azurestorage/issues","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.0.8"},{"name":"test-unit-rr","requirements":">= 1.0.3"}],"runtime":[{"name":"azure","requirements":"<= 0.7.7, >= 0.7.1"},{"name":"fluentd","requirements":"< 2, >= 0.14.0"},{"name":"uuidtools","requirements":">= 2.1.5"}]},"built_at":"2017-05-15T00:00:00.000Z","created_at":"2017-05-15T00:20:42.972Z","description":"Azure Storage output plugin for Fluentd event collector","downloads_count":152,"number":"0.1.0","summary":"Azure Storage output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-azuretables","downloads":961,"version":"0.0.1","version_downloads":944,"platform":"ruby","authors":"Anh Phong","info":"Fluent plugin to add event record into Azure Tables Storage.","licenses":["MIT"],"metadata":{},"sha":"24b5779a41a70da2c3e766146c106f397ccf29a4121dbd514a5e030431b80133","project_uri":"https://rubygems.org/gems/fluent-plugin-azuretables","gem_uri":"https://rubygems.org/gems/fluent-plugin-azuretables-0.0.1.gem","homepage_uri":"https://github.com/heocoi/fluent-plugin-azuretables","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-azuretables/0.0.1","mailing_list_uri":"","source_code_uri":"https://github.com/heocoi/fluent-plugin-azuretables","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"azure","requirements":"~> 0"},{"name":"fluentd","requirements":"~> 0"},{"name":"msgpack","requirements":"~> 0"}]},"built_at":"2015-09-15T00:00:00.000Z","created_at":"2015-09-15T08:00:59.392Z","description":"Fluent plugin to add event record into Azure Tables Storage.","downloads_count":944,"number":"0.0.1","summary":"Fluent plugin to add event record into Azure Tables Storage.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-backlog","downloads":2559,"version":"0.0.2","version_downloads":1481,"platform":"ruby","authors":"Hiroshi Toyama","info":"output plugin for Backlog.","licenses":["MIT"],"metadata":{},"sha":"6634a633b5bc8417fe97f4537eaf49f48ca0f8f4cda57ea45d707bc1282dce2a","project_uri":"https://rubygems.org/gems/fluent-plugin-backlog","gem_uri":"https://rubygems.org/gems/fluent-plugin-backlog-0.0.2.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-backlog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-backlog/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"spork","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-05-15T00:00:00.000Z","created_at":"2014-05-15T05:31:49.033Z","description":"output plugin for Backlog.","downloads_count":1481,"number":"0.0.2","summary":"output plugin for Backlog.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-base64-parser","downloads":2443,"version":"0.0.3","version_downloads":1171,"platform":"ruby","authors":"nori3tsu","info":"Fluentd plugin to suppor Base64 format for parsing logs.","licenses":[],"metadata":{},"sha":"c9ca300ff926df5d2435e3829835d5ae0eb0c6e14ff4b02c89a2eaf8cf303a1b","project_uri":"https://rubygems.org/gems/fluent-plugin-base64-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-base64-parser-0.0.3.gem","homepage_uri":"https://github.com/nori3tsu/fluent-plugin-base64-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-base64-parser/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"rake","requirements":"~> 10.0"},{"name":"rr","requirements":">= 1.0.0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":"~> 1.0.3"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.58"}]},"built_at":"2015-06-23T00:00:00.000Z","created_at":"2015-06-23T15:06:01.179Z","description":"","downloads_count":1171,"number":"0.0.3","summary":"Fluentd plugin to suppor Base64 format for parsing logs.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-beats","downloads":3040,"version":"0.1.2","version_downloads":1273,"platform":"ruby","authors":"Masahiro Nakagawa","info":"Elastic beats plugin for Fluentd event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"53cdb01ea93bf7026932fe44a6b497d71031d549b8b86952a8c477ab0bf82424","project_uri":"https://rubygems.org/gems/fluent-plugin-beats","gem_uri":"https://rubygems.org/gems/fluent-plugin-beats-0.1.2.gem","homepage_uri":"https://github.com/repeatedly/fluent-plugin-beats","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-beats/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.0.8"},{"name":"test-unit-rr","requirements":">= 1.0.3"}],"runtime":[{"name":"concurrent-ruby","requirements":"~> 0.9.2"},{"name":"fluentd","requirements":"< 2, >= 0.10.58"}]},"built_at":"2016-09-26T00:00:00.000Z","created_at":"2016-09-26T22:17:53.378Z","description":"Elastic beats plugin for Fluentd event collector","downloads_count":1273,"number":"0.1.2","summary":"Elastic beats plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-better-timestamp","downloads":5400,"version":"0.1.0","version_downloads":5400,"platform":"ruby","authors":"Kenichi Otsuka","info":"Output filter plugin which put timestamp","licenses":["MIT"],"metadata":{},"sha":"2ad46c8760597360affe69888395bfce65b8960b0937f7ee38cdf835daa4806d","project_uri":"https://rubygems.org/gems/fluent-plugin-better-timestamp","gem_uri":"https://rubygems.org/gems/fluent-plugin-better-timestamp-0.1.0.gem","homepage_uri":"https://github.com/shivaken/fluent-plugin-better-timestamp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-better-timestamp/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"}]},"built_at":"2014-11-16T00:00:00.000Z","created_at":"2014-11-16T13:36:00.242Z","description":"Output filter plugin which put timestamp","downloads_count":5400,"number":"0.1.0","summary":"Output filter plugin which put timestamp","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-better-timestamp-timekey","downloads":1554,"version":"0.1.2","version_downloads":876,"platform":"ruby","authors":"Kenichi Otsuka","info":"Output filter plugin which put timestamp with configurable time_key","licenses":["MIT"],"metadata":{},"sha":"0bb2a525a8757b73ac10669f357e637623b543b72640bc973b52c212ef213da9","project_uri":"https://rubygems.org/gems/fluent-plugin-better-timestamp-timekey","gem_uri":"https://rubygems.org/gems/fluent-plugin-better-timestamp-timekey-0.1.2.gem","homepage_uri":"https://github.com/spynode/fluent-plugin-better-timestamp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-better-timestamp-timekey/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"}]},"built_at":"2016-05-25T00:00:00.000Z","created_at":"2016-05-25T09:42:57.582Z","description":"Output filter plugin which put timestamp with configurable time_key","downloads_count":876,"number":"0.1.2","summary":"Output filter plugin which put timestamp with configurable time_key","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-bigobject","downloads":4651,"version":"0.0.12","version_downloads":821,"platform":"ruby","authors":"Andrea Sung","info":"Fluentd output plugin to insert/update/delete data in BIGOBJECT ","licenses":["MIT"],"metadata":{},"sha":"6e4352f0c5d664511e48b03f82e904ff552f103022a5cc0e361bb764e4f1c348","project_uri":"https://rubygems.org/gems/fluent-plugin-bigobject","gem_uri":"https://rubygems.org/gems/fluent-plugin-bigobject-0.0.12.gem","homepage_uri":"https://github.com/bigobject-inc/fluent-plugin-bigobject","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-bigobject/0.0.12","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"},{"name":"rest-client","requirements":">= 0"}]},"built_at":"2015-11-23T00:00:00.000Z","created_at":"2015-11-23T19:27:00.413Z","description":"Fluentd output plugin to insert/update/delete data in BIGOBJECT ","downloads_count":821,"number":"0.0.12","summary":"Fluentd output plugin to insert/update/delete data in BIGOBJECT","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-bigobject_avro","downloads":821,"version":"0.0.1","version_downloads":821,"platform":"ruby","authors":"Andrea Sung","info":"Fluentd output plugin to insert BIGOBJECT ","licenses":["MIT"],"metadata":{},"sha":"6c34a4b72452c2d3e6c1cf40f067f51e0d74622d83934be29968d2cf40c623ed","project_uri":"https://rubygems.org/gems/fluent-plugin-bigobject_avro","gem_uri":"https://rubygems.org/gems/fluent-plugin-bigobject_avro-0.0.1.gem","homepage_uri":"https://github.com/bigobject-inc/fluent-plugin-bigobject_avro","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-bigobject_avro/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"avro","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"}]},"built_at":"2015-11-23T00:00:00.000Z","created_at":"2015-11-23T18:08:34.107Z","description":"Fluentd output plugin to insert BIGOBJECT ","downloads_count":821,"number":"0.0.1","summary":"Fluentd output plugin to insert BIGOBJECT","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-bigquery","downloads":189388,"version":"0.5.0.beta2","version_downloads":133,"platform":"ruby","authors":"Naoya Ito, joker1007","info":"Fluentd plugin to store data on Google BigQuery, by load, or by stream inserts","licenses":["Apache-2.0"],"metadata":{},"sha":"b335aaec29ae5d2495f8e3a8b60786173fc0948c1efa5b2149fa8e53d2760217","project_uri":"https://rubygems.org/gems/fluent-plugin-bigquery","gem_uri":"https://rubygems.org/gems/fluent-plugin-bigquery-0.5.0.beta2.gem","homepage_uri":"https://github.com/kaizenplatform/fluent-plugin-bigquery","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-bigquery/0.5.0.beta2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"activesupport","requirements":"< 6, >= 3.2"},{"name":"fluentd","requirements":"~> 0.14.0"},{"name":"google-api-client","requirements":"~> 0.9.3"},{"name":"googleauth","requirements":">= 0.5.0"},{"name":"multi_json","requirements":">= 0"}]},"built_at":"2017-04-18T00:00:00.000Z","created_at":"2017-04-18T10:03:52.471Z","description":"Fluentd plugin to store data on Google BigQuery, by load, or by stream inserts","downloads_count":133,"number":"0.5.0.beta2","summary":"Fluentd plugin to store data on Google BigQuery","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-bigquery-custom","downloads":5063,"version":"0.3.10","version_downloads":840,"platform":"ruby","authors":"Tomohiro Hashidate","info":"Fluentd plugin to store data on Google BigQuery, by load, or by stream inserts","licenses":["APLv2"],"metadata":{},"sha":"1a03e044d68e2de8da3836c99b90ff0e670cf9dae120913917ef8d041c8693b1","project_uri":"https://rubygems.org/gems/fluent-plugin-bigquery-custom","gem_uri":"https://rubygems.org/gems/fluent-plugin-bigquery-custom-0.3.10.gem","homepage_uri":"https://github.com/joker1007/fluent-plugin-bigquery-custom","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-bigquery-custom/0.3.10","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluent-plugin-dummydata-producer","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"test-unit-rr","requirements":"~> 1.0.3"}],"runtime":[{"name":"activesupport","requirements":">= 3.2"},{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"fluent-mixin-plaintextformatter","requirements":">= 0.2.1"},{"name":"fluent-plugin-buffer-lightening","requirements":">= 0.0.2"},{"name":"google-api-client","requirements":"~> 0.9.3"},{"name":"googleauth","requirements":">= 0"}]},"built_at":"2016-05-31T00:00:00.000Z","created_at":"2016-05-31T18:12:45.925Z","description":"Fluentd plugin to store data on Google BigQuery, by load, or by stream inserts","downloads_count":840,"number":"0.3.10","summary":"Fluentd plugin to store data on Google BigQuery","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-bigquery-patched-retry-insert-502","downloads":319,"version":"0.4.0","version_downloads":319,"platform":"ruby","authors":"Naoya Ito, joker1007","info":"Fluentd plugin to store data on Google BigQuery, by load, or by stream inserts","licenses":["Apache-2.0"],"metadata":{},"sha":"a57322d346f62882c840a56e78ea5db89e3814a20e12bb71643324a39539e358","project_uri":"https://rubygems.org/gems/fluent-plugin-bigquery-patched-retry-insert-502","gem_uri":"https://rubygems.org/gems/fluent-plugin-bigquery-patched-retry-insert-502-0.4.0.gem","homepage_uri":"https://github.com/kaizenplatform/fluent-plugin-bigquery","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-bigquery-patched-retry-insert-502/0.4.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"activesupport","requirements":"< 6, >= 3.2"},{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"fluent-mixin-plaintextformatter","requirements":">= 0.2.1"},{"name":"fluent-plugin-buffer-lightening","requirements":">= 0.0.2"},{"name":"google-api-client","requirements":"~> 0.9.3"},{"name":"googleauth","requirements":">= 0.5.0"},{"name":"multi_json","requirements":">= 0"}]},"built_at":"2017-03-22T00:00:00.000Z","created_at":"2017-03-22T09:07:45.449Z","description":"Fluentd plugin to store data on Google BigQuery, by load, or by stream inserts","downloads_count":319,"number":"0.4.0","summary":"Fluentd plugin to store data on Google BigQuery","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-bin","downloads":1762,"version":"0.2","version_downloads":437,"platform":"ruby","authors":"Klaus Wölfel","info":"Fluentd input plugin to read binary files based on in_tail","licenses":["APLv2"],"metadata":{},"sha":"1e0051fb8440aa169a02f39b730ef754fb6c26d669828c3e4b87ebe73acac511","project_uri":"https://rubygems.org/gems/fluent-plugin-bin","gem_uri":"https://rubygems.org/gems/fluent-plugin-bin-0.2.gem","homepage_uri":"https://lab.nexedi.com/klaus/fluent-plugin-bin","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-bin/0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.14"}]},"built_at":"2016-09-23T00:00:00.000Z","created_at":"2016-09-23T08:08:09.615Z","description":"Fluentd input plugin to read binary files based on in_tail","downloads_count":437,"number":"0.2","summary":"Fluentd input plugin for binary files","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-boundio","downloads":5273,"version":"0.1.1","version_downloads":2037,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd Output plugin to make a call with boundio by KDDI. This Multilingual speech synthesis system uses VoiceText.","licenses":null,"metadata":{},"sha":"68690f617f592dc78a66faa8d94b0b66d9df10083b8465554568e690eec676e6","project_uri":"https://rubygems.org/gems/fluent-plugin-boundio","gem_uri":"https://rubygems.org/gems/fluent-plugin-boundio-0.1.1.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-boundio","wiki_uri":"","documentation_uri":"https://github.com/y-ken/fluent-plugin-boundio#readme","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2012-10-23T00:00:00.000Z","created_at":"2012-10-23T14:15:17.206Z","description":null,"downloads_count":2037,"number":"0.1.1","summary":"Fluentd Output plugin to make a call with boundio by KDDI. This Multilingual speech synthesis system uses VoiceText.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-buffered-filter","downloads":5230,"version":"0.1.0","version_downloads":5230,"platform":"ruby","authors":"Genki Sugawara","info":"Versatile filtering plugin","licenses":["MIT"],"metadata":{},"sha":"f4d9f3aa1941d1a375419da44bdcafc42b25c9af6adcde2f73cbd50e812f5ae1","project_uri":"https://rubygems.org/gems/fluent-plugin-buffered-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-buffered-filter-0.1.0.gem","homepage_uri":"https://bitbucket.org/winebarrel/fluent-plugin-buffered-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-buffered-filter/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 2.11.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-02-12T00:00:00.000Z","created_at":"2014-02-12T13:12:00.514Z","description":"Versatile filtering plugin","downloads_count":5230,"number":"0.1.0","summary":"Versatile filtering plugin","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-buffered-hipchat","downloads":1743,"version":"0.2.0","version_downloads":1733,"platform":"ruby","authors":"Keisuke SOGAWA","info":"fluent buffered HipChat plugin","licenses":[],"metadata":{},"sha":"1f296680456c7de4c4f31df2d510c13835fa017282c3720a6cfa6f93815f17f2","project_uri":"https://rubygems.org/gems/fluent-plugin-buffered-hipchat","gem_uri":"https://rubygems.org/gems/fluent-plugin-buffered-hipchat-0.2.0.gem","homepage_uri":"https://github.com/sowawa/fluent-plugin-buffered-hipchat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-buffered-hipchat/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.8"},{"name":"hipchat-api","requirements":">= 1.0.0"}]},"built_at":"2014-01-06T00:00:00.000Z","created_at":"2014-01-06T10:06:02.288Z","description":"fluent buffered HipChat plugin","downloads_count":1733,"number":"0.2.0","summary":"fluent buffered HipChat plugin","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-buffered-resque","downloads":1280,"version":"1.0.0","version_downloads":1280,"platform":"ruby","authors":"Hsiu-Fan Wang, Yuichi Tateno","info":"Resque output plugin for fluent event collector. Has extra features like buffering and setting a worker class in the config.","licenses":[],"metadata":{},"sha":"5da830bab6ad10fd911a7f9b477a8d9b6e5553cf117ba61d9b06978b6c4c4554","project_uri":"https://rubygems.org/gems/fluent-plugin-buffered-resque","gem_uri":"https://rubygems.org/gems/fluent-plugin-buffered-resque-1.0.0.gem","homepage_uri":"https://github.com/hfwang/fluent-plugin-buffered-resque","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-buffered-resque/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.8"},{"name":"multi_json","requirements":"~> 1.0"},{"name":"redis-namespace","requirements":">= 1.0.2"}]},"built_at":"2014-10-14T00:00:00.000Z","created_at":"2014-10-14T08:38:12.211Z","description":"Resque output plugin for fluent event collector. Has extra features like buffering and setting a worker class in the config.","downloads_count":1280,"number":"1.0.0","summary":"Resque output plugin for fluent event collector. Has extra features like buffering and setting a worker class in the config.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-buffered-stdout","downloads":2618,"version":"0.0.2","version_downloads":1452,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Fluentd STDOUT output plugin with buffering, for buffer plugin tests only","licenses":["APLv2"],"metadata":{},"sha":"ff1706b4fa94a7d351890b387b30bc660c9884f69b84cfaa4a34e1aca6a4715f","project_uri":"https://rubygems.org/gems/fluent-plugin-buffered-stdout","gem_uri":"https://rubygems.org/gems/fluent-plugin-buffered-stdout-0.0.2.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-buffered-stdout","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-buffered-stdout/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-03-07T00:00:00.000Z","created_at":"2014-03-07T12:00:39.327Z","description":"Fluentd STDOUT output plugin with buffering, for buffer plugin tests only","downloads_count":1452,"number":"0.0.2","summary":"Buffered stdout output plugin for Fluentd","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-buffer-ephemeral","downloads":4548,"version":"0.1.1","version_downloads":3898,"platform":"ruby","authors":"Yuki Ito","info":"This rubygem does not have a description or summary.","licenses":["MIT"],"metadata":{},"sha":"c016a092195de370365a0f7e32be1c69e30e0ca4a97577dcd9b4068eaf6e4085","project_uri":"https://rubygems.org/gems/fluent-plugin-buffer-ephemeral","gem_uri":"https://rubygems.org/gems/fluent-plugin-buffer-ephemeral-0.1.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-buffer-ephemeral/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 3.0.8"}],"runtime":[{"name":"fluentd","requirements":"< 2"}]},"built_at":"2015-09-15T00:00:00.000Z","created_at":"2015-09-15T06:54:47.601Z","description":"","downloads_count":3898,"number":"0.1.1","summary":"","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-buffer-event_limited","downloads":4104,"version":"0.1.6","version_downloads":844,"platform":"ruby","authors":"Gergo Sulymosi","info":"Fluentd memory buffer plugin with many types of chunk limits","licenses":["APLv2"],"metadata":{},"sha":"12df2118ef0886b7e1c1fdc61c5366d5b3fbbf9e0709c2e7371b9fc800d0d95f","project_uri":"https://rubygems.org/gems/fluent-plugin-buffer-event_limited","gem_uri":"https://rubygems.org/gems/fluent-plugin-buffer-event_limited-0.1.6.gem","homepage_uri":"https://github.com/trekdemo/fluent-plugin-buffer-event_limited","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-buffer-event_limited/0.1.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.42"}]},"built_at":"2015-11-27T00:00:00.000Z","created_at":"2015-11-27T14:55:36.042Z","description":"Fluentd memory buffer plugin with many types of chunk limits","downloads_count":844,"number":"0.1.6","summary":"Alternative file buffer plugin for Fluentd to limit events in a buffer not it's size","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-bufferize","downloads":7961,"version":"0.0.2","version_downloads":579,"platform":"ruby","authors":"Masahiro Sano","info":"A fluentd plugin that enhances existing non-buffered output plugin as buffered plugin.","licenses":["MIT"],"metadata":{},"sha":"103339c515f7280c683688ddcf8d771fd4067565191993ac9c50279c8e5546df","project_uri":"https://rubygems.org/gems/fluent-plugin-bufferize","gem_uri":"https://rubygems.org/gems/fluent-plugin-bufferize-0.0.2.gem","homepage_uri":"https://github.com/sabottenda/fluent-plugin-bufferize","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-bufferize/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.14.0"}]},"built_at":"2017-01-30T00:00:00.000Z","created_at":"2017-01-30T07:52:58.596Z","description":"A fluentd plugin that enhances existing non-buffered output plugin as buffered plugin.","downloads_count":579,"number":"0.0.2","summary":"A fluentd plugin that enhances existing non-buffered output plugin as buffered plugin.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-buffer-lightening","downloads":117846,"version":"0.0.2","version_downloads":116574,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Fluentd memory buffer plugin with many types of chunk limits","licenses":["APLv2"],"metadata":{},"sha":"ef464cd62ecd7b732cdb59a9a1ee01022d220ba5b0c3b1e430f8849d2028efef","project_uri":"https://rubygems.org/gems/fluent-plugin-buffer-lightening","gem_uri":"https://rubygems.org/gems/fluent-plugin-buffer-lightening-0.0.2.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-buffer-lightening","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-buffer-lightening/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.42"}]},"built_at":"2014-05-15T00:00:00.000Z","created_at":"2014-05-15T10:32:44.677Z","description":"Fluentd memory buffer plugin with many types of chunk limits","downloads_count":116574,"number":"0.0.2","summary":"Alternative memory buffer plugin for Fluentd to realize less delay","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-buffer-pullpool","downloads":1462,"version":"0.0.1","version_downloads":1462,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Alternative file buffer plugin to store data to wait to be pulled by plugin","licenses":["APLv2"],"metadata":{},"sha":"40302d9ac5b20bed6d249ac114cf7480a691c5d3deb0f1fd0d8a75e7e050c744","project_uri":"https://rubygems.org/gems/fluent-plugin-buffer-pullpool","gem_uri":"https://rubygems.org/gems/fluent-plugin-buffer-pullpool-0.0.1.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-buffer-pullpool","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-buffer-pullpool/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-07-26T00:00:00.000Z","created_at":"2014-07-26T08:30:30.495Z","description":"Alternative file buffer plugin to store data to wait to be pulled by plugin","downloads_count":1462,"number":"0.0.1","summary":"Fluentd file buffer plugin to buffer data for pullers","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-bugsnag","downloads":4607,"version":"0.1.0","version_downloads":4607,"platform":"ruby","authors":"koshigoe","info":"Fluentd output plubin for Bugsnag.","licenses":["MIT"],"metadata":{},"sha":"0e5a7f41a971021b847fabb0e1a18cb8d699201c9861bb7265de3d79b3b859ed","project_uri":"https://rubygems.org/gems/fluent-plugin-bugsnag","gem_uri":"https://rubygems.org/gems/fluent-plugin-bugsnag-0.1.0.gem","homepage_uri":"https://github.com/koshigoe/fluent-plugin-bugsnag","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-bugsnag/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-04-22T00:00:00.000Z","created_at":"2015-04-22T14:03:10.195Z","description":"Fluentd output plubin for Bugsnag.","downloads_count":4607,"number":"0.1.0","summary":"Fluentd output plubin for Bugsnag.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-burrow","downloads":5035,"version":"1.2","version_downloads":1126,"platform":"ruby","authors":"Tim Gunter","info":"Extract a single key (in formats Fluent can natively understand) from an event and re-emit a new event that replaces the entire original record with that key's values.","licenses":["MIT"],"metadata":{},"sha":"42a821efb74e6c72c6069e841cda677dc5fa9302c4bfc4da944076a37e229e59","project_uri":"https://rubygems.org/gems/fluent-plugin-burrow","gem_uri":"https://rubygems.org/gems/fluent-plugin-burrow-1.2.gem","homepage_uri":"https://github.com/vanilla/fluent-plugin-burrow","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-burrow/1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-10-14T00:00:00.000Z","created_at":"2016-10-14T15:01:52.828Z","description":"Extract a single key (in formats Fluent can natively understand) from an event and re-emit a new event that replaces the entire original record with that key's values.","downloads_count":1126,"number":"1.2","summary":"Fluentd output filter plugin. Extract a single key (in formats Fluent can natively understand) from an event and re-emit a new event that replaces the entire original record with that key's values.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cadvisor","downloads":11773,"version":"0.3.1","version_downloads":2287,"platform":"ruby","authors":"Woorank","info":"cadvisor input plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"d17bfc640b017dd4b9dff077faa3ad999a2fdecc9ea5d21daf58241284c7eadc","project_uri":"https://rubygems.org/gems/fluent-plugin-cadvisor","gem_uri":"https://rubygems.org/gems/fluent-plugin-cadvisor-0.3.1.gem","homepage_uri":"https://github.com/Woorank/fluent-plugin-cadvisor","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cadvisor/0.3.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":">= 0"},{"name":"rest-client","requirements":">= 0"}]},"built_at":"2015-03-16T00:00:00.000Z","created_at":"2015-03-16T13:15:06.108Z","description":"","downloads_count":2287,"number":"0.3.1","summary":"cadvisor input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-calc","downloads":12205,"version":"0.2.0","version_downloads":1554,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to calcucate statistics in messages","licenses":[],"metadata":{},"sha":"c004006e5b42344b1a6ebb6f4c721eff83f5bc3c55a25ef8d4a35c6a217753f2","project_uri":"https://rubygems.org/gems/fluent-plugin-calc","gem_uri":"https://rubygems.org/gems/fluent-plugin-calc-0.2.0.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-calc","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-calc/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-12-12T00:00:00.000Z","created_at":"2013-12-12T07:53:50.499Z","description":"Fluentd plugin to calcucate statistics in messages","downloads_count":1554,"number":"0.2.0","summary":"Fluentd plugin to calcucate statistics in messages","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-cassandra","downloads":4527,"version":"0.0.2","version_downloads":2601,"platform":"ruby","authors":"Kazutaka Tomita","info":"Cassandra output plugin for Fluent event collector","licenses":null,"metadata":{},"sha":"29f8af2f0b1e60a9cf896556c5f22bca5524cc844df1e6db907482266f309264","project_uri":"https://rubygems.org/gems/fluent-plugin-cassandra","gem_uri":"https://rubygems.org/gems/fluent-plugin-cassandra-0.0.2.gem","homepage_uri":"http://github.com/tomitakazutaka/fluent-plugin-cassandra","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cassandra/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.0.0"},{"name":"jeweler","requirements":"~> 1.6.4"},{"name":"rcov","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}],"runtime":[{"name":"cassandra","requirements":"~> 0.12.1"},{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2011-10-22T00:00:00.000Z","created_at":"2011-10-22T17:06:21.050Z","description":"Cassandra output plugin for Fluent event collector","downloads_count":2601,"number":"0.0.2","summary":"Cassandra output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-cassandra-cql","downloads":8700,"version":"0.0.5","version_downloads":2315,"platform":"ruby","authors":"obie quelland","info":"Fluent output plugin for Cassandra via CQL version 3.0.0","licenses":null,"metadata":{},"sha":"2830aed3e64b5cde551e0e8a9b34a974df31d310d07f9296e6b9c5cb10af1fcc","project_uri":"https://rubygems.org/gems/fluent-plugin-cassandra-cql","gem_uri":"https://rubygems.org/gems/fluent-plugin-cassandra-cql-0.0.5.gem","homepage_uri":"http://github.com/obieq/fluent-plugin-cassandra-cql","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cassandra-cql/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 1.0.0"},{"name":"jeweler","requirements":">= 1.8.4"},{"name":"rdoc","requirements":">= 3.12"},{"name":"rspec","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"}],"runtime":[{"name":"cassandra-cql","requirements":">= 1.1.3"},{"name":"fluentd","requirements":">= 0.10.28"}]},"built_at":"2012-11-12T00:00:00.000Z","created_at":"2012-11-12T02:08:03.839Z","description":"Fluent output plugin for Cassandra via CQL version 3.0.0","downloads_count":2315,"number":"0.0.5","summary":"Fluent output plugin for Cassandra","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-cassandra-driver","downloads":5093,"version":"1.0.0","version_downloads":415,"platform":"ruby","authors":"Yaroslav Lukyanov","info":"Fluent output plugin for Cassandra via Datastax Ruby Driver for Apache Cassandra","licenses":["BSD-3-Clause"],"metadata":{},"sha":"6e397007c49f4edbdcd119ff10db788f992408e38cf64900e87f6da514127e11","project_uri":"https://rubygems.org/gems/fluent-plugin-cassandra-driver","gem_uri":"https://rubygems.org/gems/fluent-plugin-cassandra-driver-1.0.0.gem","homepage_uri":"https://github.com/CSharpRU/fluent-plugin-cassandra-driver","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cassandra-driver/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 1.0.0"},{"name":"jeweler","requirements":">= 1.8.4"},{"name":"rdoc","requirements":">= 3.12"},{"name":"rspec","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"}],"runtime":[{"name":"cassandra-driver","requirements":">= 3.0.3"},{"name":"fluentd","requirements":">= 0.12.29"}]},"built_at":"2016-11-12T00:00:00.000Z","created_at":"2016-11-12T10:09:30.974Z","description":"Fluent output plugin for Cassandra via Datastax Ruby Driver for Apache Cassandra","downloads_count":415,"number":"1.0.0","summary":"Fluent output plugin for Cassandra","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cat-sweep","downloads":3836,"version":"0.1.3","version_downloads":1209,"platform":"ruby","authors":"Civitaspo(takahiro.nakayama), Naotoshi Seo","info":"Fluentd plugin to cat files and move them.","licenses":["MIT"],"metadata":{},"sha":"537079fec45f6d6da05757bb620b0eba27c1eb1ae388253e3846e1d0e1eaeed3","project_uri":"https://rubygems.org/gems/fluent-plugin-cat-sweep","gem_uri":"https://rubygems.org/gems/fluent-plugin-cat-sweep-0.1.3.gem","homepage_uri":"https://github.com/civitaspo/fluent-plugin-cat-sweep","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cat-sweep/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.45"}]},"built_at":"2016-06-21T00:00:00.000Z","created_at":"2016-06-21T08:41:39.156Z","description":"Fluentd plugin to cat files and move them.","downloads_count":1209,"number":"0.1.3","summary":"Fluentd plugin to cat files and move them.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ceph","downloads":450,"version":"0.1.0","version_downloads":450,"platform":"ruby","authors":"Avinash Jha","info":"Ceph Input plugin for Fluent event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"a5231ed1819f363a7449fe2bedbff3127a68d5ac4275722539af01b30c9e64fb","project_uri":"https://rubygems.org/gems/fluent-plugin-ceph","gem_uri":"https://rubygems.org/gems/fluent-plugin-ceph-0.1.0.gem","homepage_uri":"http://github.com/aavinashjha/fluent-plugin-ceph","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ceph/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[]},"built_at":"2016-07-26T00:00:00.000Z","created_at":"2016-07-27T08:28:10.752Z","description":"","downloads_count":450,"number":"0.1.0","summary":"Ceph Input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cf_query_filter","downloads":2419,"version":"0.1.3","version_downloads":545,"platform":"ruby","authors":"kazuki nozawa","info":"fluentd plugin to filter cs-uri-query from cloudfront log","licenses":["MIT"],"metadata":{},"sha":"f74f17588e2f0912206cef4af587526bded92e35b8770fccef5ab16ec04cb18c","project_uri":"https://rubygems.org/gems/fluent-plugin-cf_query_filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-cf_query_filter-0.1.3.gem","homepage_uri":"https://github.com/kazuki1213/fluent-plugin-cf_query_filter.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cf_query_filter/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[]},"built_at":"2016-07-12T00:00:00.000Z","created_at":"2016-07-12T07:23:57.887Z","description":"fluentd plugin to filter cs-uri-query from cloudfront log","downloads_count":545,"number":"0.1.3","summary":"fluentd plugin to filter cs-uri-query from cloudfront log","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-chatwork","downloads":1320,"version":"1.0.1","version_downloads":797,"platform":"ruby","authors":"sue445","info":"fluentd output plugin for post to chatwork","licenses":["MIT"],"metadata":{},"sha":"5193b2027c034baa04d349d34034cf7ed8118db25c447b21f9ae1d67f073a312","project_uri":"https://rubygems.org/gems/fluent-plugin-chatwork","gem_uri":"https://rubygems.org/gems/fluent-plugin-chatwork-1.0.1.gem","homepage_uri":"https://github.com/sue445/fluent-plugin-out_chatwork","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-chatwork/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"codeclimate-test-reporter","requirements":"~> 1.0.0"},{"name":"coveralls","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"chatwork","requirements":">= 0.4.0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-01-31T00:00:00.000Z","created_at":"2017-01-31T07:43:03.283Z","description":"fluentd output plugin for post to chatwork","downloads_count":797,"number":"1.0.1","summary":"fluentd output plugin for post to chatwork","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-chef-api","downloads":3669,"version":"0.4.0","version_downloads":135,"platform":"ruby","authors":"Yamashita Yuu","info":"A fluentd plugin for Chef's API.","licenses":["Apache-2.0"],"metadata":{},"sha":"6ffca0e4fe4e8dde5cc7546cca23a9f662f044e00952f403a6509d93c7dd4364","project_uri":"https://rubygems.org/gems/fluent-plugin-chef-api","gem_uri":"https://rubygems.org/gems/fluent-plugin-chef-api-0.4.0.gem","homepage_uri":"https://github.com/yyuu/fluent-plugin-chef-api","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-chef-api/0.4.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"chef-api","requirements":"~> 0.5.0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-05-16T00:00:00.000Z","created_at":"2017-05-16T04:30:06.481Z","description":"A fluentd plugin for Chef's API.","downloads_count":135,"number":"0.4.0","summary":"A fluentd plugin for Chef's API","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-chef-client","downloads":8403,"version":"0.3.2","version_downloads":5642,"platform":"ruby","authors":"Yamashita Yuu","info":"a fluent plugin for chef-client.","licenses":["Apache-2.0"],"metadata":{},"sha":"ca44f49504d871e5db39108140e8bc068a5e6a72560d84740e7107ebb860053d","project_uri":"https://rubygems.org/gems/fluent-plugin-chef-client","gem_uri":"https://rubygems.org/gems/fluent-plugin-chef-client-0.3.2.gem","homepage_uri":"https://github.com/yyuu/fluent-plugin-chef-client","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-chef-client/0.3.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"chef","requirements":"~> 11.10.4"},{"name":"fluentd","requirements":">= 0"},{"name":"ohai","requirements":"~> 6.20.0"}]},"built_at":"2015-05-07T00:00:00.000Z","created_at":"2015-05-07T04:53:36.926Z","description":"a fluent plugin for chef-client.","downloads_count":5642,"number":"0.3.2","summary":"a fluent plugin for chef-client","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-chriak2","downloads":1383,"version":"0.0.7","version_downloads":1203,"platform":"ruby","authors":"Kota UENISHI, Matt Nunogawa","info":"Riak 2 plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"665edab362ffb06f8e981446b50443a9d3fbe9af4f5e4d0a7eeb0c10b308d954","project_uri":"https://rubygems.org/gems/fluent-plugin-chriak2","gem_uri":"https://rubygems.org/gems/fluent-plugin-chriak2-0.0.7.gem","homepage_uri":"https://github.com/collectivehealth/fluent-plugin-riak","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-chriak2/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"},{"name":"riak-client","requirements":"~> 2.1.0"},{"name":"uuidtools","requirements":">= 2.1.3"}]},"built_at":"2014-11-29T00:00:00.000Z","created_at":"2014-11-29T19:47:26.207Z","description":"Riak 2 plugin for Fluent event collector","downloads_count":1203,"number":"0.0.7","summary":"Riak 2 plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloud-feeds","downloads":6693,"version":"1.3.2","version_downloads":1015,"platform":"ruby","authors":"David Kowis, Tyler Royal","info":"Fluentd output plugin (fluentd.org) for output to Rackspace Cloud Feeds","licenses":[],"metadata":{},"sha":"67181db36fd5aca209838c69d2d89a9fe8ef7de633a7d75f370b65c63ebbf7ba","project_uri":"https://rubygems.org/gems/fluent-plugin-cloud-feeds","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloud-feeds-1.3.2.gem","homepage_uri":"https://github.com/rackerlabs/fluent-plugin-cloud-feeds","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloud-feeds/1.3.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rspec","requirements":"= 3.2.0"},{"name":"simplecov","requirements":"= 0.10.0"},{"name":"webmock","requirements":"= 1.21.0"}],"runtime":[{"name":"fluentd","requirements":"= 0.12.7"},{"name":"net-http-persistent","requirements":">= 2.7"}]},"built_at":"2015-05-19T00:00:00.000Z","created_at":"2015-05-19T15:06:22.605Z","description":"Fluentd output plugin (fluentd.org) for output to Rackspace Cloud Feeds","downloads_count":1015,"number":"1.3.2","summary":"Fluentd output plugin for output to Rackspace Cloud Feeds","rubygems_version":">= 0","ruby_version":">= 1.9.3","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudfront-log","downloads":2761,"version":"0.0.5","version_downloads":577,"platform":"ruby","authors":"kubihie","info":"AWS CloudFront log input plugin for fluentd.","licenses":[],"metadata":{},"sha":"4421935868bed0d22f066f9505594cc98012bf5a9556047909e4b6008ca9feb9","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudfront-log","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudfront-log-0.0.5.gem","homepage_uri":"https://github.com/kubihie/fluent-plugin-cloudfront-log","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudfront-log/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 2"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2.1"},{"name":"fluentd","requirements":"~> 0"}]},"built_at":"2016-10-26T00:00:00.000Z","created_at":"2016-10-26T14:39:24.888Z","description":"AWS CloudFront log input plugin for fluentd.","downloads_count":577,"number":"0.0.5","summary":"AWS CloudFront log input plugin.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloud-pubsub","downloads":1536,"version":"0.0.2","version_downloads":980,"platform":"ruby","authors":"Keiji Yoshida","info":"Fluentd plugin for sending data to Cloud Pub/Sub","licenses":["MIT"],"metadata":{},"sha":"71f4dbdfa844d3735019de81ba837e490718eaab3b454356823bbc5a3135b138","project_uri":"https://rubygems.org/gems/fluent-plugin-cloud-pubsub","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloud-pubsub-0.0.2.gem","homepage_uri":"https://github.com/yosssi/fluent-plugin-cloud-pubsub","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloud-pubsub/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"gcloud","requirements":"~> 0.3.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2015-10-09T00:00:00.000Z","created_at":"2015-10-09T11:59:29.358Z","description":"Fluentd plugin for sending data to Cloud Pub/Sub","downloads_count":980,"number":"0.0.2","summary":"Fluentd plugin for sending data to Cloud Pub/Sub","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudsearch","downloads":2170,"version":"0.1.1","version_downloads":1077,"platform":"ruby","authors":"Kensaku Araga","info":"Amazon CloudSearch output plugin for Fluent event collector.","licenses":["MIT"],"metadata":{},"sha":"8895c54d865b6ee2efc1bd78760d0bf33e2643f13233931676c0239cb6ffe446","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudsearch","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudsearch-0.1.1.gem","homepage_uri":"https://github.com/ken39arg/fluent-plugin-cloudsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudsearch/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"}]},"built_at":"2016-03-28T00:00:00.000Z","created_at":"2016-03-28T10:32:17.240Z","description":"Amazon CloudSearch output plugin for Fluent event collector.","downloads_count":1077,"number":"0.1.1","summary":"Amazon CloudSearch output plugin for Fluent event collector.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudstack","downloads":14774,"version":"0.1.3","version_downloads":1509,"platform":"ruby","authors":"Yuichi UEMURA","info":"Fluentd input plugin to get usages and events from CloudStack API","licenses":[],"metadata":{},"sha":"397197effc27393a5e6b5247e22880584a8589800f9de68af5313b708b459ca1","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudstack","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudstack-0.1.3.gem","homepage_uri":"https://github.com/u-ichi/fluent-plugin-cloudstack","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudstack/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"eventmachine","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.7"},{"name":"fog","requirements":">= 0"}]},"built_at":"2014-02-17T00:00:00.000Z","created_at":"2014-02-17T15:54:35.599Z","description":"Fluentd input plugin to get usages and events from CloudStack API","downloads_count":1509,"number":"0.1.3","summary":"Fluentd input plugin to get usages and events from CloudStack API","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudtrail","downloads":566,"version":"0.0.3","version_downloads":251,"platform":"ruby","authors":"Craig Buchanan","info":"Deprecated: Consider using fluent-plugin-s3. Fluentd input plugin that inputs logs from AWS CloudTrail.","licenses":["MIT"],"metadata":{},"sha":"b7b24d04c0cc62640e03a4bf325c1aebc151008a1ea69eb033c70b462775a546","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudtrail","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudtrail-0.0.3.gem","homepage_uri":"https://github.com/blend/fluent-plugin-cloudtrail","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudtrail/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":"< 2, >= 0.10.58"}]},"built_at":"2017-01-03T00:00:00.000Z","created_at":"2017-03-17T19:56:45.683Z","description":"","downloads_count":251,"number":"0.0.3","summary":"Deprecated: Consider using fluent-plugin-s3. Fluentd input plugin that inputs logs from AWS CloudTrail.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudwatch","downloads":25942,"version":"2.0.1","version_downloads":681,"platform":"ruby","authors":"Yusuke Nomura, kenjiskywalker, FUJIWARA Shunichiro","info":"Input plugin for AWS CloudWatch.","licenses":["MIT"],"metadata":{},"sha":"6e390feff080dfbbd8876274f8c8580aad36b266c244bb6c96911e6badcefa3b","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-2.0.1.gem","homepage_uri":"https://github.com/yunomu/fluent-plugin-cloudwatch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudwatch/2.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":">= 0.10.30"}]},"built_at":"2017-03-23T00:00:00.000Z","created_at":"2017-03-23T04:06:28.005Z","description":"Input plugin for AWS CloudWatch.","downloads_count":681,"number":"2.0.1","summary":"Input plugin for AWS CloudWatch.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudwatch-ingest","downloads":7847,"version":"0.3.1","version_downloads":158,"platform":"ruby","authors":"Sam Pointer","info":"Fluentd plugin to ingest AWS Cloudwatch logs","licenses":[],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"8a8d7fc966b95e48f894469348e1c5de4f249f8fd97459b723f50513869f9ff9","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-ingest","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-ingest-0.3.1.gem","homepage_uri":"https://github.com/sampointer/fluent-plugin-cloudwatch-ingest","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudwatch-ingest/0.3.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"},{"name":"rubocop","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2.8.4"},{"name":"fluentd","requirements":"~> 0.14.13"}]},"built_at":"2017-05-12T00:00:00.000Z","created_at":"2017-05-12T14:37:56.685Z","description":"Fluentd plugin to ingest AWS Cloudwatch logs","downloads_count":158,"number":"0.3.1","summary":"Fluentd plugin to ingest AWS Cloudwatch logs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudwatch-ingest-chaeyk","downloads":155,"version":"0.3.2","version_downloads":148,"platform":"ruby","authors":"Sam Pointer","info":"Fluentd plugin to ingest AWS Cloudwatch logs","licenses":[],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"bcd1895daf1ace1967fa04d6e33a92a151c373bd9271b7bd5ac203141fd9dfff","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-ingest-chaeyk","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-ingest-chaeyk-0.3.2.gem","homepage_uri":"https://github.com/sampointer/fluent-plugin-cloudwatch-ingest","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudwatch-ingest-chaeyk/0.3.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"},{"name":"rubocop","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2.8.4"},{"name":"fluentd","requirements":"~> 0.14.13"}]},"built_at":"2017-05-13T00:00:00.000Z","created_at":"2017-05-13T17:25:36.535Z","description":"Fluentd plugin to ingest AWS Cloudwatch logs","downloads_count":148,"number":"0.3.2","summary":"Fluentd plugin to ingest AWS Cloudwatch logs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudwatch-logs","downloads":89648,"version":"0.4.0","version_downloads":24467,"platform":"ruby","authors":"Ryota Arai","info":"CloudWatch Logs Plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"5e8b8ba0416e1c99bba275363cd62c62d408d067f5a118a662b07601a4e67b51","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-logs","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-logs-0.4.0.gem","homepage_uri":"https://github.com/ryotarai/fluent-plugin-cloudwatch-logs","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudwatch-logs/0.4.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"mocha","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"aws-sdk-core","requirements":">= 2.0.7"},{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.2.0"}]},"built_at":"2017-02-14T00:00:00.000Z","created_at":"2017-02-14T04:25:11.219Z","description":"","downloads_count":24467,"number":"0.4.0","summary":"CloudWatch Logs Plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudwatch-transform","downloads":6054,"version":"0.0.8","version_downloads":1069,"platform":"ruby","authors":"Ling Zhang","info":"FLuentd plugin for transform cloudwatch alerts","licenses":["MIT"],"metadata":{},"sha":"d905b89a3b37adde6ba0800f2b7d8583fde06ebeccf7ba94d9a9b5763f959f8d","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-transform","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch-transform-0.0.8.gem","homepage_uri":"https://github.com/lingzhang-lyon/fluent-plugin-cloudwatch-transform","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cloudwatch-transform/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0.9.2, ~> 0.9"},{"name":"rspec","requirements":">= 2.11.0, ~> 2.11"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.9, ~> 0.10"},{"name":"highwatermark","requirements":">= 0.1.2, ~> 0.1"}]},"built_at":"2015-05-06T00:00:00.000Z","created_at":"2015-05-07T07:04:00.812Z","description":"FLuentd plugin for transform cloudwatch alerts","downloads_count":1069,"number":"0.0.8","summary":"Fluentd output plugin for transform cloudwatch alerts","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cloudwatch_ya","downloads":16695,"version":"0.0.2","version_downloads":15202,"platform":"ruby","authors":"suz-lab","info":"Yet Another (Input/Output) Plugin for Amazon CloudWatch","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"3db00c98396bf21a969c28fb282ea988e0787b46765071054ca83266e21bcaa9","project_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch_ya","gem_uri":"https://rubygems.org/gems/fluent-plugin-cloudwatch_ya-0.0.2.gem","homepage_uri":"http://suz-lab.github.com/fluent-plugin-cloudwatch_ya/","wiki_uri":"https://github.com/suz-lab/fluent-plugin-cloudwatch_ya/wiki","documentation_uri":"https://github.com/suz-lab/fluent-plugin-cloudwatch_ya","mailing_list_uri":"https://groups.google.com/d/forum/fluent-plugin-cloudwatch_ya","source_code_uri":"https://github.com/suz-lab/fluent-plugin-cloudwatch_ya","bug_tracker_uri":"https://github.com/suz-lab/fluent-plugin-cloudwatch_ya/issues","changelog_uri":null,"dependencies":{"development":[],"runtime":[]},"built_at":"2013-01-20T00:00:00.000Z","created_at":"2013-01-20T04:23:08.730Z","description":"Yet Another (Input/Output) Plugin for Amazon CloudWatch","downloads_count":15202,"number":"0.0.2","summary":"Yet Another (Input/Output) Plugin for Amazon CloudWatch","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-collectd-influxdb","downloads":1678,"version":"0.1.0","version_downloads":1678,"platform":"ruby","authors":"Giuseppe Iannello","info":"Output filter plugin to rewrite Collectd JSON output to be inserted into InfluxDB","licenses":["MIT"],"metadata":{},"sha":"880e61213cd592259aabb4b973990e5b9ca81784d5286ecc789a98cbd1abcd2e","project_uri":"https://rubygems.org/gems/fluent-plugin-collectd-influxdb","gem_uri":"https://rubygems.org/gems/fluent-plugin-collectd-influxdb-0.1.0.gem","homepage_uri":"https://github.com/giannello/fluent-plugin-collectd-influxdb","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-collectd-influxdb/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"}]},"built_at":"2014-10-10T00:00:00.000Z","created_at":"2014-10-10T11:46:57.677Z","description":"Output filter plugin to rewrite Collectd JSON output to be inserted into InfluxDB","downloads_count":1678,"number":"0.1.0","summary":"Output filter plugin to rewrite Collectd JSON output to be inserted into InfluxDB","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-collectd-nest","downloads":739,"version":"0.1.3","version_downloads":230,"platform":"ruby","authors":"Anton Sherkhonov","info":"Output filter plugin to rewrite Collectd JSON output to nested json","licenses":["MIT"],"metadata":{},"sha":"8a915305b399285a8928a7f7f3275dde75b6b3c4c0241eafda9c2e96c0072138","project_uri":"https://rubygems.org/gems/fluent-plugin-collectd-nest","gem_uri":"https://rubygems.org/gems/fluent-plugin-collectd-nest-0.1.3.gem","homepage_uri":"https://github.com/viaq/fluent-plugin-collectd-nest","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-collectd-nest/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.17"}]},"built_at":"2017-04-02T00:00:00.000Z","created_at":"2017-04-03T20:14:21.320Z","description":"Output filter plugin to rewrite Collectd JSON output to nested json","downloads_count":230,"number":"0.1.3","summary":"Output filter plugin to rewrite Collectd JSON output to nested json","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-collectd-unroll","downloads":2167,"version":"0.1.1","version_downloads":1426,"platform":"ruby","authors":"Manoj Sharma","info":"Output filter plugin to rewrite Collectd JSON output to flat json","licenses":["MIT"],"metadata":{},"sha":"f5fbf12feba03120d7b811da4d4986d9c97ffd9fafe52a21a24a8c5b5ece7540","project_uri":"https://rubygems.org/gems/fluent-plugin-collectd-unroll","gem_uri":"https://rubygems.org/gems/fluent-plugin-collectd-unroll-0.1.1.gem","homepage_uri":"https://github.com/CiscoZeus/fluent-plugin-collectd-unroll","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-collectd-unroll/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"}]},"built_at":"2016-04-06T00:00:00.000Z","created_at":"2016-04-06T16:22:50.548Z","description":"Output filter plugin to rewrite Collectd JSON output to flat json","downloads_count":1426,"number":"0.1.1","summary":"Output filter plugin to rewrite Collectd JSON output to flat json","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-color-stripper","downloads":3174,"version":"0.0.3","version_downloads":1673,"platform":"ruby","authors":"Matthew O'Riordan","info":"Output plugin to strip ANSI color codes in the logs.","licenses":["MIT"],"metadata":{},"sha":"64da1bbfe7c847adc1e4aac5a7b03e5907b1c8ccbecbe0f57547e9e20414fbbf","project_uri":"https://rubygems.org/gems/fluent-plugin-color-stripper","gem_uri":"https://rubygems.org/gems/fluent-plugin-color-stripper-0.0.3.gem","homepage_uri":"https://github.com/mattheworiordan/fluent-plugin-color-stripper","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-color-stripper/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"colorize","requirements":"~> 0.7.5"},{"name":"rake","requirements":"~> 10"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"}]},"built_at":"2015-02-24T00:00:00.000Z","created_at":"2015-02-24T02:00:21.615Z","description":"Output plugin to strip ANSI color codes in the logs.","downloads_count":1673,"number":"0.0.3","summary":"Output plugin to strip ANSI color codes in the logs.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-combiner","downloads":2766,"version":"0.0.2","version_downloads":1598,"platform":"ruby","authors":"karahiyo","info":"Combine buffer output data to cut-down net-i/o load","licenses":[],"metadata":{},"sha":"a1c09f1ed31cef570556047740f21fd97fbdab2a126a9eb8ed3b3045b8cd74f2","project_uri":"https://rubygems.org/gems/fluent-plugin-combiner","gem_uri":"https://rubygems.org/gems/fluent-plugin-combiner-0.0.2.gem","homepage_uri":"https://github.com/karahiyo/fluent-plugin-combiner","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-combiner/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-12-16T00:00:00.000Z","created_at":"2013-12-16T17:54:01.747Z","description":"Combine buffer output data to cut-down net-i/o load","downloads_count":1598,"number":"0.0.2","summary":"Combine buffer output data to cut-down net-i/o load","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-concat","downloads":27558,"version":"2.1.0","version_downloads":3082,"platform":"ruby","authors":"Kenji Okimoto","info":"Fluentd Filter plugin to concat multiple event messages","licenses":["MIT"],"metadata":{},"sha":"594bc51a6ac20717924ecbe98c32582bf62b4b45ad16b3ef6f6ceb9d77fea37a","project_uri":"https://rubygems.org/gems/fluent-plugin-concat","gem_uri":"https://rubygems.org/gems/fluent-plugin-concat-2.1.0.gem","homepage_uri":"https://github.com/fluent-plugins-nursery/fluent-plugin-concat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-concat/2.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-03-21T00:00:00.000Z","created_at":"2017-03-21T00:39:28.730Z","description":"Fluentd Filter plugin to concat multiple event messages","downloads_count":3082,"number":"2.1.0","summary":"Fluentd Filter plugin to concat multiple event messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-conditional_filter","downloads":3303,"version":"0.0.2","version_downloads":2027,"platform":"ruby","authors":"Kentaro Kuribayashi","info":"A fluent plugin that provides conditional filters","licenses":["MIT"],"metadata":{},"sha":"ac4fcdb860c30ed659ec0a6803fc3681f7ccbe2dcd7bcaccb5e8c94c4d5479f8","project_uri":"https://rubygems.org/gems/fluent-plugin-conditional_filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-conditional_filter-0.0.2.gem","homepage_uri":"http://github.com/kentaro/fluent-plugin-conditional_filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-conditional_filter/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-10-11T00:00:00.000Z","created_at":"2013-10-11T13:05:57.833Z","description":"A fluent plugin that provides conditional filters","downloads_count":2027,"number":"0.0.2","summary":"A fluent plugin that provides conditional filters","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-config-expander","downloads":114860,"version":"1.0.1","version_downloads":6469,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"This plugin provides directives for loop extraction","licenses":["Apache-2.0"],"metadata":{},"sha":"fe5ece9bbf39aa07477cf8c4727809663ac37f4c51f7a1215a1f47829884f21e","project_uri":"https://rubygems.org/gems/fluent-plugin-config-expander","gem_uri":"https://rubygems.org/gems/fluent-plugin-config-expander-1.0.1.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-config-expander","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-config-expander/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-02-02T00:00:00.000Z","created_at":"2017-02-02T05:06:17.139Z","description":"This plugin provides directives for loop extraction","downloads_count":6469,"number":"1.0.1","summary":"Fluentd plugin to serve some DSL directives in configuration","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-config_pit","downloads":3343,"version":"0.0.2","version_downloads":1879,"platform":"ruby","authors":"Naoya Ito","info":"This plugin provides directive for pit","licenses":[],"metadata":{},"sha":"65d4562c8550b960ae8462e29a7d6fb47f6e223e601b5f4d3de846b69d3666a4","project_uri":"https://rubygems.org/gems/fluent-plugin-config_pit","gem_uri":"https://rubygems.org/gems/fluent-plugin-config_pit-0.0.2.gem","homepage_uri":"https://github.com/naoya/fluent-plugin-config_pit","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-config_pit/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"pit","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"pit","requirements":">= 0"}]},"built_at":"2013-02-19T00:00:00.000Z","created_at":"2013-02-19T06:12:42.410Z","description":"This plugin provides directive for pit","downloads_count":1879,"number":"0.0.2","summary":"Fluentd plugin to enable pit in configuration","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-config_reloader","downloads":1552,"version":"0.0.1","version_downloads":1552,"platform":"ruby","authors":"bash0C7","info":"Fluentd plugin to reload child plugin's config","licenses":["Ruby's"],"metadata":{},"sha":"de36af2092bceeba502b093988320da4044c708edf7ba57fb2aaf2c0715ffead","project_uri":"https://rubygems.org/gems/fluent-plugin-config_reloader","gem_uri":"https://rubygems.org/gems/fluent-plugin-config_reloader-0.0.1.gem","homepage_uri":"https://github.com/bash0C7/fluent-plugin-config_reloader","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-config_reloader/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-05-06T00:00:00.000Z","created_at":"2014-05-06T15:02:49.917Z","description":"Fluentd plugin to reload child plugin's config","downloads_count":1552,"number":"0.0.1","summary":"Fluentd plugin to reload child plugin's config","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-consul","downloads":3063,"version":"0.0.3","version_downloads":1300,"platform":"ruby","authors":"foostan","info":"Store Fluentd event to Consul Key/Value Storage","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"eaef0e46a75ec4d61fcc2003a3f2004495d208a9b07290e131b908404bb82705","project_uri":"https://rubygems.org/gems/fluent-plugin-consul","gem_uri":"https://rubygems.org/gems/fluent-plugin-consul-0.0.3.gem","homepage_uri":"https://github.com/foostan/fluent-plugin-consul","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-consul/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"diplomat","requirements":"~> 0.2.1"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-11-26T00:00:00.000Z","created_at":"2014-11-26T11:47:53.921Z","description":"","downloads_count":1300,"number":"0.0.3","summary":"Store Fluentd event to Consul Key/Value Storage","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-container_logs_filter","downloads":2050,"version":"0.0.4","version_downloads":905,"platform":"ruby","authors":"Mike Martinson","info":"Moves JSON nested under the log key to the top level","licenses":[],"metadata":{},"sha":"ba778f49e3a576ec7b7c2c6a54dd7707227dfed06f6fe94112b4fa8b543ec022","project_uri":"https://rubygems.org/gems/fluent-plugin-container_logs_filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-container_logs_filter-0.0.4.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-container_logs_filter/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-09-16T00:00:00.000Z","created_at":"2015-09-16T19:04:28.041Z","description":"Moves JSON nested under the log key to the top level","downloads_count":905,"number":"0.0.4","summary":"Filters aggregated docker contqainer logs","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-convert-value-to-sha","downloads":2827,"version":"0.1.1","version_downloads":1599,"platform":"ruby","authors":"Keiji Matsuzaki","info":"This plugin is convert value to sha.","licenses":["Apache License v2.0"],"metadata":{},"sha":"2406c01d17d5e819c85ab039af3b1957d8cfdc8e46f1e770d1187c2fc846a382","project_uri":"https://rubygems.org/gems/fluent-plugin-convert-value-to-sha","gem_uri":"https://rubygems.org/gems/fluent-plugin-convert-value-to-sha-0.1.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-convert-value-to-sha/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-11-01T00:00:00.000Z","created_at":"2013-11-01T11:23:24.385Z","description":"This plugin is convert value to sha.","downloads_count":1599,"number":"0.1.1","summary":"fluentd convert value to sha plugin.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-copy_ex","downloads":7344,"version":"0.0.3","version_downloads":900,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd out_copy extension","licenses":["MIT"],"metadata":{},"sha":"5ed60232e6c5c2a8b8001e5cd9224fe9ebd7e695e3604835e601b64f9e567718","project_uri":"https://rubygems.org/gems/fluent-plugin-copy_ex","gem_uri":"https://rubygems.org/gems/fluent-plugin-copy_ex-0.0.3.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-copy_ex","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-copy_ex/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-02-06T00:00:00.000Z","created_at":"2017-02-06T08:30:44.095Z","description":"Fluentd out_copy extension","downloads_count":900,"number":"0.0.3","summary":"Fluentd out_copy extension","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-coralogix","downloads":1428,"version":"0.0.6","version_downloads":378,"platform":"ruby","authors":"Royee Goldberg","info":"Coralogix Fluentd plugin to send logs to Coralogix server.","licenses":["MIT"],"metadata":{},"sha":"4557b016c054de51f32130f092252bed2ae2378bdd6434c9aa0c8e14c5d2c3a0","project_uri":"https://rubygems.org/gems/fluent-plugin-coralogix","gem_uri":"https://rubygems.org/gems/fluent-plugin-coralogix-0.0.6.gem","homepage_uri":"http://www.coralogix.com","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-coralogix/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"coralogix_fluentd_logger","requirements":">= 0.0.2, ~> 0.0"}]},"built_at":"2017-01-10T00:00:00.000Z","created_at":"2017-01-17T14:11:24.379Z","description":"Coralogix Fluentd plugin to send logs to Coralogix server.","downloads_count":378,"number":"0.0.6","summary":"Coralogix Fluentd out plugin","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-couch","downloads":32916,"version":"0.8.1","version_downloads":290,"platform":"ruby","authors":"Yuri Odagiri","info":"CouchDB output plugin for Fluentd event collector","licenses":[],"metadata":{},"sha":"56490e4340da627f9e0d7bbbfa5388a41e4e067cc48f877a61daec57be31fcaf","project_uri":"https://rubygems.org/gems/fluent-plugin-couch","gem_uri":"https://rubygems.org/gems/fluent-plugin-couch-0.8.1.gem","homepage_uri":"http://github.com/ixixi/fluent-plugin-couch","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-couch/0.8.1","mailing_list_uri":"","source_code_uri":"https://github.com/ixixi/fluent-plugin-couch","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"couchrest","requirements":"~> 1.1.2"},{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"jsonpath","requirements":"~> 0.4.2"}]},"built_at":"2017-02-07T00:00:00.000Z","created_at":"2017-02-07T15:47:25.924Z","description":"","downloads_count":290,"number":"0.8.1","summary":"CouchDB output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-couchbase","downloads":3633,"version":"0.0.2","version_downloads":2094,"platform":"ruby","authors":"obie quelland","info":"Fluent output plugin for Couchbase 2.0","licenses":["MIT"],"metadata":{},"sha":"a33a386d2b4bce1fae2876d7b62261a9b9085ad1f08af86924e5f2eb36951cdf","project_uri":"https://rubygems.org/gems/fluent-plugin-couchbase","gem_uri":"https://rubygems.org/gems/fluent-plugin-couchbase-0.0.2.gem","homepage_uri":"http://github.com/obieq/fluent-plugin-couchbase","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-couchbase/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 1.0.0"},{"name":"jeweler","requirements":">= 1.8.4"},{"name":"rdoc","requirements":">= 3.12"},{"name":"rspec","requirements":">= 0"},{"name":"simplecov","requirements":"= 0.5.4"}],"runtime":[{"name":"activesupport","requirements":">= 0"},{"name":"couchbase","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.28"}]},"built_at":"2012-12-27T00:00:00.000Z","created_at":"2012-12-27T17:51:57.231Z","description":"Fluent output plugin for Couchbase 2.0","downloads_count":2094,"number":"0.0.2","summary":"Fluent output plugin for Couchbase 2.0","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-couch-sharded","downloads":4868,"version":"0.6.3","version_downloads":1017,"platform":"ruby","authors":"Yudai Odagiri, James Birmingham","info":"CouchDB output plugin for Fluentd event collector, forked to add 'sharding' features","licenses":[],"metadata":{},"sha":"ecd0a525d22c3d068baa5a63261a1a8a394f3649ec1aa16e53f84583e67ee7b1","project_uri":"https://rubygems.org/gems/fluent-plugin-couch-sharded","gem_uri":"https://rubygems.org/gems/fluent-plugin-couch-sharded-0.6.3.gem","homepage_uri":"http://github.com/jimflip/fluent-plugin-couch-shard","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-couch-sharded/0.6.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"couchrest","requirements":"~> 1.1.2"},{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"jeweler","requirements":">= 0"},{"name":"jsonpath","requirements":"~> 0.4.2"},{"name":"rake","requirements":">= 0"}]},"built_at":"2015-06-20T00:00:00.000Z","created_at":"2015-06-20T22:18:02.162Z","description":"","downloads_count":1017,"number":"0.6.3","summary":"CouchDB output plugin for Fluentd event collector, forked to add 'sharding' features","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-cratedb","downloads":595,"version":"0.2.0","version_downloads":347,"platform":"ruby","authors":"buom","info":"Fluent Output Plugin for CrateDB (http://crate.io)","licenses":["Apache-2.0"],"metadata":{},"sha":"da29a6485a4c7fef0e7a63abf3740f94c0c71aaab8c54b3385c5fc7c0c28fc44","project_uri":"https://rubygems.org/gems/fluent-plugin-cratedb","gem_uri":"https://rubygems.org/gems/fluent-plugin-cratedb-0.2.0.gem","homepage_uri":"https://github.com/buom/fluent-plugin-cratedb","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-cratedb/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"crate_ruby","requirements":"~> 0.0.8"},{"name":"fluentd","requirements":"~> 0.12.0"}]},"built_at":"2016-12-20T00:00:00.000Z","created_at":"2016-12-20T04:47:40.748Z","description":"Fluent Output Plugin for CrateDB (http://crate.io)","downloads_count":347,"number":"0.2.0","summary":"A plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 2.1","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dag","downloads":1443,"version":"1.0.2","version_downloads":996,"platform":"ruby","authors":"iij","info":"Dag output plugin for Fluentd event collector","licenses":[],"metadata":{},"sha":"dbc086f19f3a8f40f5acaa69f7e9f458b6afb68d5f477b79986de7d7d980f6db","project_uri":"https://rubygems.org/gems/fluent-plugin-dag","gem_uri":"https://rubygems.org/gems/fluent-plugin-dag-1.0.2.gem","homepage_uri":"http://www.iij.ad.jp/biz/storage/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dag/1.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.2.0"},{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"aws-sdk-v1","requirements":"~> 1.59.0"},{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"fluent-mixin-config-placeholders","requirements":"~> 0.2.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2015-06-04T00:00:00.000Z","created_at":"2015-06-04T07:49:05.455Z","description":"Dag output plugin for Fluentd event collector","downloads_count":996,"number":"1.0.2","summary":"Dag output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dashing","downloads":1726,"version":"0.0.0","version_downloads":1726,"platform":"ruby","authors":"bash0C7","info":"Fluentd output plugin to post data to dashing","licenses":["Ruby's"],"metadata":{},"sha":"e090eb5fec9d9266e2ce8e3ce8e6aa4ceb2f7edcbb06e94c64ff445b355a36a7","project_uri":"https://rubygems.org/gems/fluent-plugin-dashing","gem_uri":"https://rubygems.org/gems/fluent-plugin-dashing-0.0.0.gem","homepage_uri":"https://github.com/bash0C7/fluent-plugin-dashing","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dashing/0.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"httparty","requirements":">= 0"}]},"built_at":"2013-09-25T00:00:00.000Z","created_at":"2013-09-25T15:36:03.447Z","description":"Fluentd output plugin to post data to dashing","downloads_count":1726,"number":"0.0.0","summary":"Fluentd output plugin to post data to dashing","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-datacalculator","downloads":13677,"version":"0.0.6","version_downloads":3150,"platform":"ruby","authors":"Muddy Dixon","info":"Output filter plugin to calculate messages that matches specified conditions","licenses":[],"metadata":{},"sha":"c75fb1211bd1c7e5a1950d80fe4062d089611de4906a238e6d466e57c0e27f56","project_uri":"https://rubygems.org/gems/fluent-plugin-datacalculator","gem_uri":"https://rubygems.org/gems/fluent-plugin-datacalculator-0.0.6.gem","homepage_uri":"https://github.com/muddydixon/fluent-plugin-datacalculator","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-datacalculator/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-02-26T00:00:00.000Z","created_at":"2014-02-26T05:16:51.225Z","description":"Output filter plugin to calculate messages that matches specified conditions","downloads_count":3150,"number":"0.0.6","summary":"Output filter plugin to calculate messages that matches specified conditions","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-datacounter","downloads":106291,"version":"1.0.0","version_downloads":4256,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"To count records with string fields by regexps (To count records with numbers, use numeric-counter)","licenses":["Apache-2.0"],"metadata":{},"sha":"4532a91aa6e7750359c0fef403e0c90e98fe83a02f0d91499840262ae6e83d0c","project_uri":"https://rubygems.org/gems/fluent-plugin-datacounter","gem_uri":"https://rubygems.org/gems/fluent-plugin-datacounter-1.0.0.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-datacounter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-datacounter/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.8"}]},"built_at":"2017-01-31T00:00:00.000Z","created_at":"2017-01-31T11:03:10.104Z","description":"To count records with string fields by regexps (To count records with numbers, use numeric-counter)","downloads_count":4256,"number":"1.0.0","summary":"Fluentd plugin to count records with specified regexp patterns","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-datadog_event","downloads":3240,"version":"0.1.3","version_downloads":997,"platform":"ruby","authors":"Yohei Kawahara(inokappa)","info":"fluentd plugin for datadog event","licenses":[],"metadata":{},"sha":"f30df8cb571dc2f01dafd412b51a35880da33592f2cd0aa2266ffda2eaac1966","project_uri":"https://rubygems.org/gems/fluent-plugin-datadog_event","gem_uri":"https://rubygems.org/gems/fluent-plugin-datadog_event-0.1.3.gem","homepage_uri":"https://github.com/inokappa/fluent-plugin-datadog_event","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-datadog_event/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"dogapi","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-06-12T00:00:00.000Z","created_at":"2016-06-12T09:48:36.562Z","description":"fluentd plugin for datadog event","downloads_count":997,"number":"0.1.3","summary":"fluentd plugin for datadog event","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-datahub","downloads":614,"version":"0.0.2","version_downloads":227,"platform":"ruby","authors":"Aliyun","info":"Aliyun Datahub output plugin for Fluentd event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"f56d20f86ab04fad01787565d1940455fe3236307d51e733894fdbfb749921f7","project_uri":"https://rubygems.org/gems/fluent-plugin-datahub","gem_uri":"https://rubygems.org/gems/fluent-plugin-datahub-0.0.2.gem","homepage_uri":"https://datahub.console.aliyun.com/datahub","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-datahub/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.12.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2017-03-31T00:00:00.000Z","created_at":"2017-03-31T08:49:05.632Z","description":"Aliyun Datahub output plugin for Fluentd event collector","downloads_count":227,"number":"0.0.2","summary":"Aliyun Datahub output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-data-rejecter","downloads":1605,"version":"1.0.0","version_downloads":1605,"platform":"ruby","authors":"Hirotaka Tajiri","info":"Fluent plugin Output filer to reject key pair","licenses":["MIT"],"metadata":{},"sha":"20d8549c4eb6edba0d2e2a9687d706bbc99fc6e2bc9d16a263af0b98e167281e","project_uri":"https://rubygems.org/gems/fluent-plugin-data-rejecter","gem_uri":"https://rubygems.org/gems/fluent-plugin-data-rejecter-1.0.0.gem","homepage_uri":"https://github.com/hirotaka-tajiri/fluent-plugin-data-rejecter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-data-rejecter/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 0"},{"name":"rspec","requirements":"~> 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2014-01-15T00:00:00.000Z","created_at":"2014-01-15T13:16:35.094Z","description":"Fluent plugin Output filer to reject key pair","downloads_count":1605,"number":"1.0.0","summary":"Output filter plugin to reject key pair","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-dbi","downloads":5652,"version":"1.0.0","version_downloads":1074,"platform":"ruby","authors":"TERAOKA Yoshinori","info":"fluentd output plugin using dbi. PostgreSQL and MySQL are tested","licenses":["MIT"],"metadata":{},"sha":"77160580a67732ce820fdb0d1bc18eb6243b2699d1b4bbc56e664d5567b04b6b","project_uri":"https://rubygems.org/gems/fluent-plugin-dbi","gem_uri":"https://rubygems.org/gems/fluent-plugin-dbi-1.0.0.gem","homepage_uri":"https://github.com/yteraoka/fluent-plugin-dbi","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dbi/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"dbi","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-09-01T00:00:00.000Z","created_at":"2015-09-01T14:59:15.203Z","description":"fluentd output plugin using dbi. PostgreSQL and MySQL are tested","downloads_count":1074,"number":"1.0.0","summary":"fluentd output plugin using dbi","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dd","downloads":34041,"version":"0.1.8","version_downloads":25334,"platform":"ruby","authors":"Genki Sugawara","info":"Output plugin for Datadog","licenses":["MIT"],"metadata":{},"sha":"a0cd89d14fe16456b49a22ed45a3a7920c629dc615cc4f7d11805f0f979802d5","project_uri":"https://rubygems.org/gems/fluent-plugin-dd","gem_uri":"https://rubygems.org/gems/fluent-plugin-dd-0.1.8.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-dd","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dd/0.1.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"dogapi","requirements":">= 1.15.0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-09-16T00:00:00.000Z","created_at":"2015-09-16T14:20:39.425Z","description":"Output plugin for Datadog","downloads_count":25334,"number":"0.1.8","summary":"Output plugin for Datadog","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-debug","downloads":3863,"version":"0.0.2","version_downloads":2794,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to investigate incoming messages in a short-hand","licenses":["MIT"],"metadata":{},"sha":"719b6639ffdbdd0469193667be7aad435b4acc6c70b98ac13c164fb389e593a2","project_uri":"https://rubygems.org/gems/fluent-plugin-debug","gem_uri":"https://rubygems.org/gems/fluent-plugin-debug-0.0.2.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-debug","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-debug/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"rspec-its","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-09-21T00:00:00.000Z","created_at":"2014-09-21T18:57:41.445Z","description":"Fluentd plugin to investigate incoming messages in a short-hand","downloads_count":2794,"number":"0.0.2","summary":"Fluentd plugin to investigate incoming messages in a short-hand","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-decode_location","downloads":1759,"version":"0.0.3","version_downloads":1058,"platform":"ruby","authors":"L. Srednicki","info":"Fluentd plugin to decode location","licenses":["MIT"],"metadata":{},"sha":"59c072672cbca1b926cd323dade00e03d2a3748f52de8f6ea164dffb489e92a6","project_uri":"https://rubygems.org/gems/fluent-plugin-decode_location","gem_uri":"https://rubygems.org/gems/fluent-plugin-decode_location-0.0.3.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-decode_location/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-byebug","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"base62","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-04-02T00:00:00.000Z","created_at":"2015-04-02T13:40:16.572Z","description":"Fluentd plugin to decode location","downloads_count":1058,"number":"0.0.3","summary":"Fluentd plugin to decode location","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dedot_filter","downloads":11058,"version":"0.2.0","version_downloads":10455,"platform":"ruby","authors":"Tomoyuki Sugimura","info":"de-dot field name for elasticsearch 2.x","licenses":["MIT"],"metadata":{},"sha":"48ccc634070038db3a8c8222c48d4289eede7cff3a3cd08984dd582fea6b22c3","project_uri":"https://rubygems.org/gems/fluent-plugin-dedot_filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-dedot_filter-0.2.0.gem","homepage_uri":"https://github.com/lunardial/fluent-plugin-dedot_filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dedot_filter/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-05-30T00:00:00.000Z","created_at":"2016-05-30T06:51:28.148Z","description":"de-dot field name for elasticsearch 2.x","downloads_count":10455,"number":"0.2.0","summary":"de-dot field name for elasticsearch 2.x","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dedup","downloads":2654,"version":"0.3.0","version_downloads":851,"platform":"ruby","authors":"edvakf","info":"fluent-plugin-dedup is a fluentd plugin to suppress emission of subsequent logs identical to the first one.","licenses":["MIT"],"metadata":{},"sha":"51b6ed0b7f3248b55ada17f939a69fd986f5c27820403d540caead9b747a299d","project_uri":"https://rubygems.org/gems/fluent-plugin-dedup","gem_uri":"https://rubygems.org/gems/fluent-plugin-dedup-0.3.0.gem","homepage_uri":"https://github.com/edvakf/fluent-plugin-dedup","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dedup/0.3.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"lru_redux","requirements":">= 0"}]},"built_at":"2015-11-24T00:00:00.000Z","created_at":"2015-11-24T17:28:02.347Z","description":"fluent-plugin-dedup is a fluentd plugin to suppress emission of subsequent logs identical to the first one.","downloads_count":851,"number":"0.3.0","summary":"fluentd plugin for removing duplicate logs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-deis-graphite","downloads":3728,"version":"0.2.1","version_downloads":153,"platform":"ruby","authors":"Matt Knox","info":"A Fluentd plugin that gathers response code metrics from the deis router and reports them to a graphite database.","licenses":["MIT"],"metadata":{},"sha":"be5d2ef0bc93d6db18ceca6d7b4be615439c42a861ebfc5fd3109307d6ed6aae","project_uri":"https://rubygems.org/gems/fluent-plugin-deis-graphite","gem_uri":"https://rubygems.org/gems/fluent-plugin-deis-graphite-0.2.1.gem","homepage_uri":"http://github.com/OrbotixInc/fluent-plugin-deis-graphite","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-deis-graphite/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"metriks","requirements":">= 0"},{"name":"rest_client","requirements":">= 0"}]},"built_at":"2017-05-12T00:00:00.000Z","created_at":"2017-05-12T16:35:01.311Z","description":"A Fluentd plugin that gathers response code metrics from the deis router and reports them to a graphite database.","downloads_count":153,"number":"0.2.1","summary":"A Fluentd plugin that gathers response code metrics from the deis router.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-delayed","downloads":2313,"version":"0.0.1","version_downloads":2313,"platform":"ruby","authors":"Shuhei Tanuma","info":"Delayed output plugin for Fluent event collector","licenses":null,"metadata":{},"sha":"f86618124692fd1c5513133d2143c597b736a46c707a346cb971ffa3db51e5e9","project_uri":"https://rubygems.org/gems/fluent-plugin-delayed","gem_uri":"https://rubygems.org/gems/fluent-plugin-delayed-0.0.1.gem","homepage_uri":"http://github.com/chobie/fluent-plugin-delayed","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-delayed/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[]},"built_at":"2011-10-30T15:00:00.000Z","created_at":"2011-10-30T15:53:37.310Z","description":"Delayed output plugin for Fluent event collector","downloads_count":2313,"number":"0.0.1","summary":"Delayed output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-delay-inspector","downloads":4563,"version":"0.0.3","version_downloads":1567,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Inspect delay of log, and emit it, or inject it into message itself with specified attribute name","licenses":["APLv2"],"metadata":{},"sha":"ab4c1401e2e17f59b11441853893f0df815b6243f1e3d7a348ee1240c269dd77","project_uri":"https://rubygems.org/gems/fluent-plugin-delay-inspector","gem_uri":"https://rubygems.org/gems/fluent-plugin-delay-inspector-0.0.3.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-delay-inspector","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-delay-inspector/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-03-07T00:00:00.000Z","created_at":"2014-03-07T11:57:41.414Z","description":"Inspect delay of log, and emit it, or inject it into message itself with specified attribute name","downloads_count":1567,"number":"0.0.3","summary":"Fluentd plugin to inspect diff of real-time and log-time","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-derive","downloads":5187,"version":"0.0.4","version_downloads":1382,"platform":"ruby","authors":"Nobuhiro Nikushi","info":"fluentd plugin to derive rate","licenses":["MIT"],"metadata":{},"sha":"878eb295f23ccb69e890c1967852ad9bfe565d7e6e9b49cd439632816f3e93fd","project_uri":"https://rubygems.org/gems/fluent-plugin-derive","gem_uri":"https://rubygems.org/gems/fluent-plugin-derive-0.0.4.gem","homepage_uri":"https://github.com/niku4i/fluent-plugin-derive","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-derive/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":"~> 2.99.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-10-11T00:00:00.000Z","created_at":"2016-10-11T12:08:07.464Z","description":"","downloads_count":1382,"number":"0.0.4","summary":"fluentd plugin to derive rate","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-deskcom","downloads":2689,"version":"0.0.3","version_downloads":1059,"platform":"ruby","authors":"Toru Takahashi","info":"fluent Input plugin to collect data from Deskcom.","licenses":["MIT"],"metadata":{},"sha":"4ec362c1d0ca531086a34811471f1b20f4c7cb35d58ce357d6253cd142558e40","project_uri":"https://rubygems.org/gems/fluent-plugin-deskcom","gem_uri":"https://rubygems.org/gems/fluent-plugin-deskcom-0.0.3.gem","homepage_uri":"https://github.com/toru-takahashi/fluent-plugin-deskcom","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-deskcom/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"desk","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-02-21T00:00:00.000Z","created_at":"2015-02-21T07:02:47.899Z","description":"fluent Input plugin to collect data from Deskcom.","downloads_count":1059,"number":"0.0.3","summary":"Input plugin to collect data from Deskcom.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-detect-exceptions","downloads":1891,"version":"0.0.5","version_downloads":897,"platform":"ruby","authors":"Thomas Schickinger","info":" Fluentd output plugin which detects exception stack traces in a stream of\n JSON log messages and combines all single-line messages that belong to the\n same stack trace into one multi-line message.\n This is an official Google Ruby gem.\n","licenses":["Apache-2.0"],"metadata":{},"sha":"f2bd3f057d7fc47f0f57cfbf2ed49445b7e33183becbf0785a4dc74558a55afa","project_uri":"https://rubygems.org/gems/fluent-plugin-detect-exceptions","gem_uri":"https://rubygems.org/gems/fluent-plugin-detect-exceptions-0.0.5.gem","homepage_uri":"https://github.com/GoogleCloudPlatform/fluent-plugin-detect-exceptions","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-detect-exceptions/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.3"},{"name":"rubocop","requirements":"= 0.42.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2017-02-02T00:00:00.000Z","created_at":"2017-02-02T11:53:14.654Z","description":" Fluentd output plugin which detects exception stack traces in a stream of\n JSON log messages and combines all single-line messages that belong to the\n same stack trace into one multi-line message.\n This is an official Google Ruby gem.\n","downloads_count":897,"number":"0.0.5","summary":"fluentd output plugin for combining stack traces as multi-line JSON logs","rubygems_version":">= 0","ruby_version":">= 2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-detect-exceptions-with-error","downloads":1261,"version":"0.0.3","version_downloads":245,"platform":"ruby","authors":"Paul Boocock","info":" Fork of fluent-plugin-detect-exceptions to include the preceding ERROR log line with a stack trace.\n","licenses":["Apache-2.0"],"metadata":{},"sha":"2353b092d158f96da41c56207d93efe8109c752c4296884dc3458078af12a985","project_uri":"https://rubygems.org/gems/fluent-plugin-detect-exceptions-with-error","gem_uri":"https://rubygems.org/gems/fluent-plugin-detect-exceptions-with-error-0.0.3.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-detect-exceptions-with-error/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.3"},{"name":"rubocop","requirements":"= 0.42.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2017-03-27T00:00:00.000Z","created_at":"2017-03-27T13:12:49.906Z","description":" Fork of fluent-plugin-detect-exceptions to include the preceding ERROR log line with a stack trace.\n","downloads_count":245,"number":"0.0.3","summary":"fluentd output plugin for combining error messages and stack traces as multi-line JSON logs","rubygems_version":">= 0","ruby_version":">= 2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-detect-memb-exceptions","downloads":259,"version":"0.0.2","version_downloads":153,"platform":"ruby","authors":"Naomi stern","info":" Fluentd output plugin which detects ft membership specific exception stack traces in a stream of\n JSON log messages and combines all single-line messages that belong to the\n same stack trace into one multi-line message.\n This is an adaption of an official Google Ruby gem.\n","licenses":["Apache-2.0"],"metadata":{},"sha":"cb71a96c49c41c1708828cc4bcb81067bebe5aa17cb64792d7244558eb1d76bc","project_uri":"https://rubygems.org/gems/fluent-plugin-detect-memb-exceptions","gem_uri":"https://rubygems.org/gems/fluent-plugin-detect-memb-exceptions-0.0.2.gem","homepage_uri":"https://github.com/Financial-Times/fluent-plugin-detect-exceptions","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-detect-memb-exceptions/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.3"},{"name":"rubocop","requirements":"= 0.42.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2017-05-12T00:00:00.000Z","created_at":"2017-05-12T15:57:46.888Z","description":" Fluentd output plugin which detects ft membership specific exception stack traces in a stream of\n JSON log messages and combines all single-line messages that belong to the\n same stack trace into one multi-line message.\n This is an adaption of an official Google Ruby gem.\n","downloads_count":153,"number":"0.0.2","summary":"fluentd output plugin for combining stack traces as multi-line JSON logs","rubygems_version":">= 0","ruby_version":">= 2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-df","downloads":11805,"version":"0.0.6","version_downloads":6228,"platform":"ruby","authors":"tiwakawa","info":"Df input plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"5d3e336239470132a3d30eb5399fae1b496f95f6dd5970674d5024db82b1fcf6","project_uri":"https://rubygems.org/gems/fluent-plugin-df","gem_uri":"https://rubygems.org/gems/fluent-plugin-df-0.0.6.gem","homepage_uri":"https://github.com/tiwakawa/fluent-plugin-df","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-df/0.0.6","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-08-05T00:00:00.000Z","created_at":"2013-08-05T07:50:57.861Z","description":"Df input plugin for Fluent event collector","downloads_count":6228,"number":"0.0.6","summary":"Df input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-dio","downloads":747,"version":"1.0.1","version_downloads":335,"platform":"ruby","authors":"hikouki","info":"Output filter plugin of fluentd. Convert to timestamp from date string.","licenses":["MIT"],"metadata":{},"sha":"ea06f4d5741f46505bc9d1516a1e9990d3b7abaa7f60119ff16a8f47c645211f","project_uri":"https://rubygems.org/gems/fluent-plugin-dio","gem_uri":"https://rubygems.org/gems/fluent-plugin-dio-1.0.1.gem","homepage_uri":"https://github.com/hikouki/fluent-plugin-dio","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dio/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-02-13T00:00:00.000Z","created_at":"2017-02-13T09:54:14.720Z","description":"Output filter plugin of fluentd. Convert to timestamp from date string.","downloads_count":335,"number":"1.0.1","summary":"Output filter plugin of fluentd. Convert to timestamp from date string.","rubygems_version":">= 0","ruby_version":">= 2.1","prerelease":false,"requirements":[]},{"name":"fluent-plugin-diskusage","downloads":1616,"version":"0.0.2","version_downloads":1051,"platform":"ruby","authors":"Jason Westbrook","info":"Disk Usage plugin for FluentD","licenses":["MIT"],"metadata":{},"sha":"3afbaba30576ff8fabe1bd03bbcf3682f9b980b12b844a17881e91e23ef2502a","project_uri":"https://rubygems.org/gems/fluent-plugin-diskusage","gem_uri":"https://rubygems.org/gems/fluent-plugin-diskusage-0.0.2.gem","homepage_uri":null,"wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-diskusage/0.0.2","mailing_list_uri":"","source_code_uri":"https://github.com/jwestbrook/fluent-plugin-diskusage","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.30"},{"name":"sys-filesystem","requirements":"~> 1.1.4"}]},"built_at":"2015-09-10T00:00:00.000Z","created_at":"2015-09-10T18:56:44.664Z","description":"","downloads_count":1051,"number":"0.0.2","summary":"Disk Usage plugin for FluentD","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker","downloads":1376,"version":"0.1.0","version_downloads":1376,"platform":"ruby","authors":"Eduardo Silva","info":"fluentd plugin to handle and format Docker logs.","licenses":["Apache-2.0"],"metadata":{},"sha":"4f4fd09902cd30e890f829a26f10399d5b266a4ce0f0b0c84da65d5167652660","project_uri":"https://rubygems.org/gems/fluent-plugin-docker","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker-0.1.0.gem","homepage_uri":"https://github.com/edsiper/fluent-plugin-docker","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2016-07-11T00:00:00.000Z","created_at":"2016-07-12T03:54:49.985Z","description":"fluentd plugin to handle and format Docker logs.","downloads_count":1376,"number":"0.1.0","summary":"fluentd plugin to handle and format Docker logs.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dockerevents","downloads":1657,"version":"0.0.3","version_downloads":1173,"platform":"ruby","authors":"Karoly Nagy","info":"Docker Event Stream inpupt plugin for Fluentd","licenses":["GNU GENERAL PUBLIC LICENSE"],"metadata":{},"sha":"e69068211f2db167d211b65427ab3df30bc57b878308fdc58eda4ca947e63104","project_uri":"https://rubygems.org/gems/fluent-plugin-dockerevents","gem_uri":"https://rubygems.org/gems/fluent-plugin-dockerevents-0.0.3.gem","homepage_uri":"https://github.com/charlesnagy/fluent-plugin-docker-events","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dockerevents/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":"< 2, >= 1.32.0"},{"name":"fluentd","requirements":"< 2, >= 0.10.49"}]},"built_at":"2016-11-11T00:00:00.000Z","created_at":"2016-11-11T15:13:42.257Z","description":"Docker Event Stream inpupt plugin for Fluentd","downloads_count":1173,"number":"0.0.3","summary":"An input plugin for fluentd collecting Docker events","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker-format","downloads":23227,"version":"0.2.3","version_downloads":22349,"platform":"ruby","authors":"Alex Hornung","info":"fluentd output filter plugin to parse the docker config.json related to a container log file.","licenses":["MIT"],"metadata":{},"sha":"e2feffdc4dcab2ac49a06856ddc7ae817440609b8cc3b33ffaf5b7f5149db7c6","project_uri":"https://rubygems.org/gems/fluent-plugin-docker-format","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker-format-0.2.3.gem","homepage_uri":"https://github.com/bwalex/fluent-plugin-docker-format","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker-format/0.2.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":"~> 10.4.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"}]},"built_at":"2015-01-04T00:00:00.000Z","created_at":"2015-01-04T21:38:29.568Z","description":"fluentd output filter plugin to parse the docker config.json related to a container log file.","downloads_count":22349,"number":"0.2.3","summary":"fluentd output filter plugin to parse the docker config.json related to a container log file.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker-format_nebo15","downloads":408,"version":"0.2.5","version_downloads":408,"platform":"ruby","authors":"Alex Hornung","info":"fluentd output filter plugin to parse the docker config.json related to a container log file.","licenses":["MIT"],"metadata":{},"sha":"b13044b38c3ac43827ba50937911943068fccfd8f375e9f8e47c897ad62da834","project_uri":"https://rubygems.org/gems/fluent-plugin-docker-format_nebo15","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker-format_nebo15-0.2.5.gem","homepage_uri":"https://github.com/bwalex/fluent-plugin-docker-format","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker-format_nebo15/0.2.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":"~> 10.4.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"}]},"built_at":"2016-09-25T00:00:00.000Z","created_at":"2016-09-25T00:19:03.631Z","description":"fluentd output filter plugin to parse the docker config.json related to a container log file.","downloads_count":408,"number":"0.2.5","summary":"fluentd output filter plugin to parse the docker config.json related to a container log file.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker_hostname","downloads":4019,"version":"0.1.4","version_downloads":1072,"platform":"ruby","authors":"Woorank","info":"Output container's hostname for a given docker container's id","licenses":["MIT"],"metadata":{},"sha":"3bffd8a0145f3838fcef5b1934b918f28595070f7c6f133eb2b5f9922b12476b","project_uri":"https://rubygems.org/gems/fluent-plugin-docker_hostname","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker_hostname-0.1.4.gem","homepage_uri":"https://github.com/Woorank/fluent-plugin-docker_hostname","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker_hostname/0.1.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":">= 0"}]},"built_at":"2015-03-04T00:00:00.000Z","created_at":"2015-03-04T10:41:53.906Z","description":"","downloads_count":1072,"number":"0.1.4","summary":"Output container's hostname for a given docker container's id","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dockerid2name","downloads":1930,"version":"0.0.2","version_downloads":1119,"platform":"ruby","authors":"Woorank","info":"Output the name of the image for a given docker container_id","licenses":["MIT"],"metadata":{},"sha":"5c489bb365e9d699a6254e4e3f8bbb555d2382c15a4ce36d2effb86e60171776","project_uri":"https://rubygems.org/gems/fluent-plugin-dockerid2name","gem_uri":"https://rubygems.org/gems/fluent-plugin-dockerid2name-0.0.2.gem","homepage_uri":"https://github.com/Woorank/fluent-plugin-dockerid2name","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dockerid2name/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"rest-client","requirements":">= 0"}]},"built_at":"2015-02-05T00:00:00.000Z","created_at":"2015-02-05T16:40:58.003Z","description":"","downloads_count":1119,"number":"0.0.2","summary":"Output the name of the image for a given docker container_id","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker_image_name","downloads":1138,"version":"0.0.3","version_downloads":1138,"platform":"ruby","authors":"Woorank","info":"Output the name of the image for a given docker container_id","licenses":["MIT"],"metadata":{},"sha":"4f74f32c57db400b8fa661b39b64735f19eb5e82f62a469eee3998cede36a508","project_uri":"https://rubygems.org/gems/fluent-plugin-docker_image_name","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker_image_name-0.0.3.gem","homepage_uri":"https://github.com/Woorank/fluent-plugin-docker_image_name","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker_image_name/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"rest-client","requirements":">= 0"}]},"built_at":"2015-02-05T00:00:00.000Z","created_at":"2015-02-05T17:16:22.036Z","description":"","downloads_count":1138,"number":"0.0.3","summary":"Output the name of the image for a given docker container_id","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker-inspect","downloads":2208,"version":"0.0.4","version_downloads":736,"platform":"ruby","authors":"WAKAYAMA Shirou","info":"This rubygem does not have a description or summary.","licenses":["MIT"],"metadata":{},"sha":"2271d82b59bb0945f4eaa3318adc16758976a166b6f2b06c26ce6014504c1b05","project_uri":"https://rubygems.org/gems/fluent-plugin-docker-inspect","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker-inspect-0.0.4.gem","homepage_uri":"https://github.com/shirou/fluent-plugin-docker-inspect","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker-inspect/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.33"}]},"built_at":"2016-02-08T00:00:00.000Z","created_at":"2016-02-08T06:26:18.669Z","description":"","downloads_count":736,"number":"0.0.4","summary":"","rubygems_version":">= 0","ruby_version":">= 1.9.2","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker_metadata_filter","downloads":21381,"version":"0.1.3","version_downloads":14151,"platform":"ruby","authors":"Jimmi Dyson","info":"Filter plugin to add Docker metadata","licenses":["ASL2"],"metadata":{},"sha":"95949d5e479d8eed838ba0bc18f0b4ae27bbdcf9d3593edafd2012654f437065","project_uri":"https://rubygems.org/gems/fluent-plugin-docker_metadata_filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker_metadata_filter-0.1.3.gem","homepage_uri":"https://github.com/fabric8io/fluent-plugin-docker_metadata_filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker_metadata_filter/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bump","requirements":">= 0"},{"name":"bundler","requirements":"~> 1.3"},{"name":"copyright-header","requirements":">= 0"},{"name":"minitest","requirements":"~> 4.0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"test-unit-rr","requirements":"~> 1.0.3"},{"name":"vcr","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"lru_redux","requirements":">= 0"}]},"built_at":"2016-05-20T00:00:00.000Z","created_at":"2016-05-20T16:33:11.210Z","description":"Filter plugin to add Docker metadata","downloads_count":14151,"number":"0.1.3","summary":"Filter plugin to add Docker metadata","rubygems_version":">= 0","ruby_version":">= 1.9.3","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker-metrics","downloads":4505,"version":"0.0.2","version_downloads":3456,"platform":"ruby","authors":"kiyoto","info":"Fluentd input plugin to collect container metrics periodically","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"5b4d0d4f3c4036392c7d2df259c05bcd55a35eb60c1150478e00a8b1872f1c0f","project_uri":"https://rubygems.org/gems/fluent-plugin-docker-metrics","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker-metrics-0.0.2.gem","homepage_uri":"https://github.com/kiyoto/fluent-plugin-docker-metrics","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker-metrics/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"fakefs","requirements":"~> 0.6"},{"name":"rake","requirements":"~> 10.1"}],"runtime":[{"name":"docker-api","requirements":"~> 1.15"},{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2014-11-22T00:00:00.000Z","created_at":"2014-11-22T18:09:11.955Z","description":"Fluentd input plugin to collect container metrics periodically","downloads_count":3456,"number":"0.0.2","summary":"Fluentd plugin to collect Docker container metrics","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-docker-tag-resolver","downloads":3978,"version":"0.2.0","version_downloads":2450,"platform":"ruby","authors":"Naoki AINOYA","info":"Fluentd output plugin to resolve container name from docker container-id in record tags.","licenses":["Apache 2.0"],"metadata":{},"sha":"8f29d1bbe5ba641cef912e7550998346471be5d887cddbbab1aec2dfe29e7433","project_uri":"https://rubygems.org/gems/fluent-plugin-docker-tag-resolver","gem_uri":"https://rubygems.org/gems/fluent-plugin-docker-tag-resolver-0.2.0.gem","homepage_uri":"https://github.com/ainoya/fluent-plugin-docker-tag-resolver","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-docker-tag-resolver/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"string-scrub","requirements":">= 0"}]},"built_at":"2015-04-12T00:00:00.000Z","created_at":"2015-04-12T11:01:26.089Z","description":"","downloads_count":2450,"number":"0.2.0","summary":"Fluentd output plugin to resolve container name from docker container-id in record tags.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-documentdb","downloads":3526,"version":"0.2.1","version_downloads":854,"platform":"ruby","authors":"Yoichi Kawasaki","info":"Azure DocumentDB output plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"87d4d9aac73c7b0b1fd325036e44f3c2762717ec11b2f7b0f3b7f0f5e680b6f7","project_uri":"https://rubygems.org/gems/fluent-plugin-documentdb","gem_uri":"https://rubygems.org/gems/fluent-plugin-documentdb-0.2.1.gem","homepage_uri":"http://github.com/yokawasa/fluent-plugin-documentdb","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-documentdb/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"rest-client","requirements":">= 0"}]},"built_at":"2016-08-28T00:00:00.000Z","created_at":"2016-08-28T06:35:40.550Z","description":"Azure DocumentDB output plugin for Fluentd","downloads_count":854,"number":"0.2.1","summary":"Azure DocumentDB output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dogstatsd","downloads":12233,"version":"0.0.6","version_downloads":4947,"platform":"ruby","authors":"Ryota Arai","info":"Fluent plugin for Dogstatsd, that is statsd server for Datadog.","licenses":["MIT"],"metadata":{},"sha":"cd3b009bd5986e8af9202552100f95cd49468d19997779015e300aecddfa9c67","project_uri":"https://rubygems.org/gems/fluent-plugin-dogstatsd","gem_uri":"https://rubygems.org/gems/fluent-plugin-dogstatsd-0.0.6.gem","homepage_uri":"https://github.com/ryotarai/fluent-plugin-dogstatsd","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dogstatsd/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"dogstatsd-ruby","requirements":"~> 1.4.1"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-07-20T00:00:00.000Z","created_at":"2016-07-20T04:58:28.391Z","description":"","downloads_count":4947,"number":"0.0.6","summary":"Fluent plugin for Dogstatsd, that is statsd server for Datadog.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dogstatsd-mediba","downloads":611,"version":"0.0.9","version_downloads":367,"platform":"ruby","authors":"Hiroki Yoshida","info":"Fluent plugin for Dogstatsd, that is statsd server for Datadog.","licenses":["MIT"],"metadata":{},"sha":"8ffa2038904b78421f1f4943b9826f56f5fe316e3d609ba94f248061ceb8d5ac","project_uri":"https://rubygems.org/gems/fluent-plugin-dogstatsd-mediba","gem_uri":"https://rubygems.org/gems/fluent-plugin-dogstatsd-mediba-0.0.9.gem","homepage_uri":"https://github.com/yoshida-mediba/fluent-plugin-dogstatsd","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dogstatsd-mediba/0.0.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"dogstatsd-ruby","requirements":"~> 1.4.1"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-11-24T00:00:00.000Z","created_at":"2016-11-24T08:45:00.584Z","description":"","downloads_count":367,"number":"0.0.9","summary":"Fluent plugin for Dogstatsd, that is statsd server for Datadog.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dos_block_acl","downloads":2969,"version":"0.0.4","version_downloads":768,"platform":"ruby","authors":"Hiroshi Toyama","info":"access block by aws network acl.","licenses":["MIT"],"metadata":{},"sha":"172c00451a4983eaa2a5888f8c4f05e082b4ad861ced1c09cb2c144b96137571","project_uri":"https://rubygems.org/gems/fluent-plugin-dos_block_acl","gem_uri":"https://rubygems.org/gems/fluent-plugin-dos_block_acl-0.0.4.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-dos_block_acl","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dos_block_acl/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"pry","requirements":"~> 0.10.1"},{"name":"rake","requirements":"~> 10.3.2"},{"name":"rubocop","requirements":"~> 0.24.1"},{"name":"rubygems-tasks","requirements":"~> 0.2"},{"name":"test-unit","requirements":">= 0"},{"name":"yard","requirements":"~> 0.8"}],"runtime":[{"name":"aws-sdk-v1","requirements":">= 0"}]},"built_at":"2016-02-22T00:00:00.000Z","created_at":"2016-02-22T00:34:42.423Z","description":"access block by aws network acl.","downloads_count":768,"number":"0.0.4","summary":"access block by aws network acl.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-downcase-keys","downloads":746,"version":"0.1","version_downloads":746,"platform":"ruby","authors":"Matt Land","info":"Fluentd output plugin. Downcases all keys and re-emit the records.","licenses":["Apache 2.0"],"metadata":{},"sha":"0c0aca678cd510de1572eceace709f3cbe652fc0f066f64d1ddabf9d32f1dd15","project_uri":"https://rubygems.org/gems/fluent-plugin-downcase-keys","gem_uri":"https://rubygems.org/gems/fluent-plugin-downcase-keys-0.1.gem","homepage_uri":"https://github.com/matt-land/fluent-downcase-keys","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-downcase-keys/0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"coveralls","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.9"}]},"built_at":"2016-01-14T00:00:00.000Z","created_at":"2016-01-14T22:06:25.533Z","description":"","downloads_count":746,"number":"0.1","summary":"Fluentd output plugin. Downcases all keys and re-emit the records.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-droonga","downloads":8416,"version":"1.0.1","version_downloads":1460,"platform":"ruby","authors":"Droonga Project","info":"Droonga (distributed Groonga) plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"9a72d9663991b0447744bb3d2a086dde0b7aefbab64c72299a5750cda1921920","project_uri":"https://rubygems.org/gems/fluent-plugin-droonga","gem_uri":"https://rubygems.org/gems/fluent-plugin-droonga-1.0.1.gem","homepage_uri":"https://github.com/droonga/fluent-plugin-droonga","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-droonga/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"droonga-client","requirements":">= 0"},{"name":"kramdown","requirements":">= 0"},{"name":"packnga","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-notify","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"groonga-command-parser","requirements":">= 0"},{"name":"rroonga","requirements":">= 3.1.0"},{"name":"serverengine","requirements":">= 0"}]},"built_at":"2014-03-28T00:00:00.000Z","created_at":"2014-03-28T15:18:00.026Z","description":"Droonga (distributed Groonga) plugin for Fluent event collector","downloads_count":1460,"number":"1.0.1","summary":"Droonga (distributed Groonga) plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dstat","downloads":218557,"version":"0.3.3","version_downloads":7130,"platform":"ruby","authors":"Shunsuke Mikami","info":"Dstat Input plugin for Fluent event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"8b3c7461ee51d1daabb73e82e315f53f5e6657040afc812d9589d6dc21661947","project_uri":"https://rubygems.org/gems/fluent-plugin-dstat","gem_uri":"https://rubygems.org/gems/fluent-plugin-dstat-0.3.3.gem","homepage_uri":"http://github.com/shun0102/fluent-plugin-dstat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dstat/0.3.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.0"},{"name":"test-unit","requirements":">= 3.0.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.7"},{"name":"rdoc","requirements":">= 0"}]},"built_at":"2016-12-11T00:00:00.000Z","created_at":"2016-12-11T10:34:31.661Z","description":"","downloads_count":7130,"number":"0.3.3","summary":"Dstat Input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dummydata-producer","downloads":5263,"version":"0.0.3","version_downloads":2608,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Emits dummy data to do bench marks and other tests","licenses":["APLv2"],"metadata":{},"sha":"7a1ff1abdfd2c4c4c967ed1d5b9f1b496f4219c396c36a435a01c96682a9f74a","project_uri":"https://rubygems.org/gems/fluent-plugin-dummydata-producer","gem_uri":"https://rubygems.org/gems/fluent-plugin-dummydata-producer-0.0.3.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-dummydata-producer","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dummydata-producer/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"}]},"built_at":"2014-08-18T00:00:00.000Z","created_at":"2014-08-18T07:27:32.323Z","description":"Emits dummy data to do bench marks and other tests","downloads_count":2608,"number":"0.0.3","summary":"Fluentd plugin to produce dummy data and emit it","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dynamodb","downloads":13482,"version":"0.1.12","version_downloads":755,"platform":"ruby","authors":"Takashi Matsuno","info":"Amazon DynamoDB output plugin for Fluent event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"2cb380be66f9f3f1615b6d15208cfbeb29ebe0a6b890f54abf31eb398ee678e6","project_uri":"https://rubygems.org/gems/fluent-plugin-dynamodb","gem_uri":"https://rubygems.org/gems/fluent-plugin-dynamodb-0.1.12.gem","homepage_uri":"https://github.com/gonsuke/fluent-plugin-dynamodb","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dynamodb/0.1.12","mailing_list_uri":"","source_code_uri":"https://github.com/gonsuke/fluent-plugin-dynamodb","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"aws-sdk-v1","requirements":">= 1.5.2"},{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"uuidtools","requirements":"~> 2.1.0"}]},"built_at":"2016-12-03T00:00:00.000Z","created_at":"2016-12-03T02:24:06.243Z","description":"Amazon DynamoDB output plugin for Fluent event collector","downloads_count":755,"number":"0.1.12","summary":"Amazon DynamoDB output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dynamodb-alt","downloads":8132,"version":"0.1.5","version_downloads":3385,"platform":"ruby","authors":"Genki Sugawara","info":"Fluent plugin to output to DynamoDB.","licenses":["MIT"],"metadata":{},"sha":"c0dee87ac5089d26ab2084bdfec2353bf45f6281995d6193c87d30bcc98c1e8f","project_uri":"https://rubygems.org/gems/fluent-plugin-dynamodb-alt","gem_uri":"https://rubygems.org/gems/fluent-plugin-dynamodb-alt-0.1.5.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-dynamodb-alt","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dynamodb-alt/0.1.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"ddbcli","requirements":">= 0"},{"name":"hashie","requirements":">= 0"},{"name":"msgpack","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 3.0.0"}],"runtime":[{"name":"aws-sdk-core","requirements":">= 2.0.0.rc15"},{"name":"fluentd","requirements":">= 0"},{"name":"parallel","requirements":">= 0"}]},"built_at":"2014-09-10T00:00:00.000Z","created_at":"2014-09-10T02:07:12.597Z","description":"Fluent plugin to output to DynamoDB.","downloads_count":3385,"number":"0.1.5","summary":"Fluent plugin to output to DynamoDB.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dynamodb-drc","downloads":53593,"version":"0.0.5","version_downloads":49925,"platform":"ruby","authors":"Takashi Matsuno, Sadayuki Furuhashi, CaDs","info":"Amazon DynamoDB output plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"5299c93e260fec50434f5e86c0f753bd195ef90accdb055e024994d143176a9c","project_uri":"https://rubygems.org/gems/fluent-plugin-dynamodb-drc","gem_uri":"https://rubygems.org/gems/fluent-plugin-dynamodb-drc-0.0.5.gem","homepage_uri":"https://github.com/kumapon/fluent-plugin-dynamodb-drc","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dynamodb-drc/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"aws-sdk","requirements":">= 1.5.2"},{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"uuidtools","requirements":"~> 2.1.0"}]},"built_at":"2014-09-30T00:00:00.000Z","created_at":"2014-09-30T07:18:51.263Z","description":"Amazon DynamoDB output plugin for Fluent event collector","downloads_count":49925,"number":"0.0.5","summary":"Amazon DynamoDB output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-dynamodb-streams","downloads":2019,"version":"0.0.3","version_downloads":774,"platform":"ruby","authors":"Takumi Sakamoto","info":"Amazon DynamoDB Streams input plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"de0360f480a1d9ed137b65e4842ccab2b45fcbe7f48e1339199bed9cdd426498","project_uri":"https://rubygems.org/gems/fluent-plugin-dynamodb-streams","gem_uri":"https://rubygems.org/gems/fluent-plugin-dynamodb-streams-0.0.3.gem","homepage_uri":"https://github.com/takus/fluent-plugin-dynamodb-streams","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-dynamodb-streams/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"dynamodb-local","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":"< 2, >= 0.10.58"}]},"built_at":"2016-01-18T00:00:00.000Z","created_at":"2016-01-18T01:07:46.774Z","description":"Amazon DynamoDB Streams input plugin for Fluentd","downloads_count":774,"number":"0.0.3","summary":"Amazon DynamoDB Streams input plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ec2-metadata","downloads":204461,"version":"0.1.0","version_downloads":2185,"platform":"ruby","authors":"SAKAMOTO Takumi","info":"Fluentd output plugin to add ec2 metadata fields to a event record","licenses":["APLv2"],"metadata":{},"sha":"364f44e6f5ae8c3b1bfe47147fd4febf8fd9190ec6093d3a7632f85bebe77dd0","project_uri":"https://rubygems.org/gems/fluent-plugin-ec2-metadata","gem_uri":"https://rubygems.org/gems/fluent-plugin-ec2-metadata-0.1.0.gem","homepage_uri":"https://github.com/takus/fluent-plugin-ec2-metadata","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ec2-metadata/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"vcr","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":">= 0"},{"name":"fluentd","requirements":"> 0.14.0"},{"name":"oj","requirements":">= 0"}]},"built_at":"2017-05-03T00:00:00.000Z","created_at":"2017-05-03T01:12:29.630Z","description":"Fluentd output plugin to add ec2 metadata fields to a event record","downloads_count":2185,"number":"0.1.0","summary":"Fluentd output plugin to add ec2 metadata fields to a event record","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ecs-filter","downloads":2782,"version":"0.1.2","version_downloads":291,"platform":"ruby","authors":"Joseph Hughes","info":"Filter plugin to add AWS ECS metadata","licenses":["ASL2"],"metadata":{},"sha":"ae8cff3bf62826d1f21e38b7bcdd26efe24c89a74354dbc33d875597b823476f","project_uri":"https://rubygems.org/gems/fluent-plugin-ecs-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-ecs-filter-0.1.2.gem","homepage_uri":"https://github.com/joshughes/fluent-plugin-ecs-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ecs-filter/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"codeclimate-test-reporter","requirements":">= 0"},{"name":"minitest","requirements":"~> 4.0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":">= 1.33.3, ~> 1.33"},{"name":"fluentd","requirements":">= 0.10.43"},{"name":"lru_redux","requirements":"~> 1.1"},{"name":"oj","requirements":">= 2.18.5"},{"name":"vine","requirements":"~> 0.2"}]},"built_at":"2017-04-03T00:00:00.000Z","created_at":"2017-04-03T19:11:50.648Z","description":"Filter plugin to add AWS ECS metadata","downloads_count":291,"number":"0.1.2","summary":"Filter plugin to add AWS ECS metadata to fluentd","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ecs-metadata-filter","downloads":655,"version":"0.1.1","version_downloads":452,"platform":"ruby","authors":"Michael Gruber","info":"Filter plugin to add AWS ECS metadata to fluentd events","licenses":["MIT"],"metadata":{},"sha":"e23be228f74be4e27594985a70fb7350614f8507b1eb50e0c871c78d2a4e437b","project_uri":"https://rubygems.org/gems/fluent-plugin-ecs-metadata-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-ecs-metadata-filter-0.1.1.gem","homepage_uri":"https://github.com/michaelgruber/fluent-plugin-ecs-metadata-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ecs-metadata-filter/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"minitest","requirements":"~> 5.0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 3.2.3, ~> 3.2"},{"name":"vcr","requirements":">= 3.0.3, ~> 3.0"},{"name":"webmock","requirements":">= 2.3.1, ~> 2.3"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.0"},{"name":"httparty","requirements":"~> 0.14.0"},{"name":"lru_redux","requirements":"~> 1.1"}]},"built_at":"2017-01-18T00:00:00.000Z","created_at":"2017-01-18T20:31:37.935Z","description":"","downloads_count":452,"number":"0.1.1","summary":"Filter plugin to add AWS ECS metadata to fluentd events","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elapsed-time","downloads":7937,"version":"0.0.8","version_downloads":284,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to measure elapsed time to process messages","licenses":["MIT"],"metadata":{},"sha":"ee5062580ddea388764c718d0a395ff992322e4b7150b270840e0be6340389e8","project_uri":"https://rubygems.org/gems/fluent-plugin-elapsed-time","gem_uri":"https://rubygems.org/gems/fluent-plugin-elapsed-time-0.0.8.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-elapsed-time","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elapsed-time/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"rspec-its","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-02-09T00:00:00.000Z","created_at":"2017-02-09T03:05:27.323Z","description":"Fluentd plugin to measure elapsed time to process messages","downloads_count":284,"number":"0.0.8","summary":"Fluentd plugin to measure elapsed time to process messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elasticsearch","downloads":753972,"version":"1.9.5","version_downloads":9786,"platform":"ruby","authors":"diogo, pitr","info":"ElasticSearch output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"41d0905d6b86c213e6e85b9befd96a8679314dad5d35a960b59a274ccab1ca0c","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-1.9.5.gem","homepage_uri":"https://github.com/uken/fluent-plugin-elasticsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearch/1.9.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":"~> 5.8"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.0"},{"name":"webmock","requirements":"~> 1"}],"runtime":[{"name":"elasticsearch","requirements":">= 0"},{"name":"excon","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.43"}]},"built_at":"2017-05-11T00:00:00.000Z","created_at":"2017-05-11T16:29:03.428Z","description":"ElasticSearch output plugin for Fluent event collector","downloads_count":9786,"number":"1.9.5","summary":"ElasticSearch output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elasticsearch-check-size","downloads":985,"version":"0.1.0","version_downloads":985,"platform":"ruby","authors":"Nao Akechi","info":"ElasticSearch output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"34bc5a368fe74f97e02166a1afa84672283a7e1285a7d1161167de5ddd93b30c","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-check-size","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-check-size-0.1.0.gem","homepage_uri":"https://github.com/nakc/fluent-plugin-elasticsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearch-check-size/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 0"},{"name":"webmock","requirements":"~> 1"}],"runtime":[{"name":"elasticsearch","requirements":">= 0"},{"name":"excon","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.43"}]},"built_at":"2015-07-17T00:00:00.000Z","created_at":"2015-07-17T03:37:08.840Z","description":"ElasticSearch output plugin for Fluent event collector","downloads_count":985,"number":"0.1.0","summary":"ElasticSearch output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elasticsearch-cluster","downloads":1586,"version":"0.1.0","version_downloads":1586,"platform":"ruby","authors":"HeartSaVioR","info":"ElasticSearch output plugin for Fluent event collector, based on fluent-plugin-elasticsearch, with support cluster","licenses":["MIT"],"metadata":{},"sha":"9a17773639ee776ab275597de64128740983b440d0f4efa724f71ebcd7c2daaa","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-cluster","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-cluster-0.1.0.gem","homepage_uri":"https://github.com/HeartSaVioR/fluent-plugin-elasticsearch-cluster","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearch-cluster/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"elasticsearch","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"patron","requirements":">= 0"}]},"built_at":"2014-03-12T00:00:00.000Z","created_at":"2014-03-12T06:22:13.856Z","description":"ElasticSearch output plugin for Fluent event collector, based on fluent-plugin-elasticsearch, with support cluster","downloads_count":1586,"number":"0.1.0","summary":"ElasticSearch output plugin for Fluent event collector, based on fluent-plugin-elasticsearch, with support cluster","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-elasticsearchfork","downloads":1242,"version":"0.5.1","version_downloads":1242,"platform":"ruby","authors":"diogo, pitr","info":"ElasticSearch output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"075dd3d1b081b39eeba00112ff201680267609fa38d1ad31f2719d404732cd1d","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearchfork","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearchfork-0.5.1.gem","homepage_uri":"https://github.com/tomodian/fluent-plugin-elasticsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearchfork/0.5.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 0"},{"name":"webmock","requirements":"~> 1"}],"runtime":[{"name":"elasticsearch","requirements":">= 0"},{"name":"fluentd","requirements":"~> 0"},{"name":"patron","requirements":"~> 0"}]},"built_at":"2014-10-29T00:00:00.000Z","created_at":"2014-10-29T17:21:34.230Z","description":"ElasticSearch output plugin for Fluent event collector","downloads_count":1242,"number":"0.5.1","summary":"ElasticSearch output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elasticsearch-patch","downloads":177,"version":"1.3.0.p1","version_downloads":177,"platform":"ruby","authors":"diogo, pitr","info":"ElasticSearch output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"f2173da6ba44b14df97b58ba5759874440d5514847e6d57b3a4048f58609b33f","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-patch","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-patch-1.3.0.p1.gem","homepage_uri":"https://github.com/tanaka-takayoshi/fluent-plugin-elasticsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearch-patch/1.3.0.p1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":"~> 5.8"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.0"},{"name":"webmock","requirements":"~> 1"}],"runtime":[{"name":"elasticsearch","requirements":">= 0"},{"name":"excon","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.43"}]},"built_at":"2016-12-01T00:00:00.000Z","created_at":"2016-12-01T03:02:37.886Z","description":"ElasticSearch output plugin for Fluent event collector","downloads_count":177,"number":"1.3.0.p1","summary":"ElasticSearch output plugin for Fluent event collector","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-elasticsearch-ruby","downloads":3067,"version":"0.0.3","version_downloads":1840,"platform":"ruby","authors":"Jon","info":"Fluent plugin for elasticsearch","licenses":[],"metadata":{},"sha":"7396f0e2de8ffcd77f2cf11dab66ed1fef28dc7ddaad8be1ca5a8762dae12b2a","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-ruby","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-ruby-0.0.3.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearch-ruby/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[]},"built_at":"2013-10-12T00:00:00.000Z","created_at":"2013-10-12T08:03:18.089Z","description":"Fluent plugin for elasticsearch","downloads_count":1840,"number":"0.0.3","summary":"Use this plugin in conjunction with elasticsearch and fluentd to log events.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-elasticsearch-sm","downloads":960,"version":"1.4.1","version_downloads":960,"platform":"ruby","authors":"diogo, pitr, static-max","info":"ElasticSearch output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"8e6cc4a540bb9901fc7d062e9e78a65ef1aedc8081fabef8b0abe3e5ef691e11","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-sm","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-sm-1.4.1.gem","homepage_uri":"https://github.com/static-max/fluent-plugin-elasticsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearch-sm/1.4.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":"~> 5.8"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.0"},{"name":"webmock","requirements":"~> 1"}],"runtime":[{"name":"elasticsearch","requirements":">= 0"},{"name":"excon","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.43"}]},"built_at":"2016-04-06T00:00:00.000Z","created_at":"2016-04-06T12:20:05.109Z","description":"ElasticSearch output plugin for Fluent event collector","downloads_count":960,"number":"1.4.1","summary":"ElasticSearch output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elasticsearch-ssl-verify","downloads":1683,"version":"0.0.2","version_downloads":1027,"platform":"ruby","authors":"yosssi","info":"ElasticSearch output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"0098566fc57c66a42b04c7aafff20e40d2c59a543afc921ec95a10e894af6d79","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-ssl-verify","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-ssl-verify-0.0.2.gem","homepage_uri":"https://github.com/yosssi/fluent-plugin-elasticsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearch-ssl-verify/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 0"},{"name":"webmock","requirements":"~> 1"}],"runtime":[{"name":"elasticsearch","requirements":">= 0"},{"name":"excon","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.43"}]},"built_at":"2015-06-05T00:00:00.000Z","created_at":"2015-06-05T07:58:09.224Z","description":"ElasticSearch output plugin for Fluent event collector","downloads_count":1027,"number":"0.0.2","summary":"ElasticSearch output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elasticsearch-timestamp-check","downloads":26747,"version":"0.2.1","version_downloads":178,"platform":"ruby","authors":"Richard Li","info":"fluent filter plugin to ensure @timestamp is in proper format","licenses":["MIT"],"metadata":{},"sha":"a3496090ae55083a93c896ac17a46f9dce5130088556cbfbc5f44b048cbc486b","project_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-timestamp-check","gem_uri":"https://rubygems.org/gems/fluent-plugin-elasticsearch-timestamp-check-0.2.1.gem","homepage_uri":"https://github.com/ecwws/fluent-plugin-elasticsearch-timestamp-check","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elasticsearch-timestamp-check/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"}],"runtime":[]},"built_at":"2017-05-15T00:00:00.000Z","created_at":"2017-05-15T20:15:13.374Z","description":"fluent filter plugin to ensure @timestamp is in proper format","downloads_count":178,"number":"0.2.1","summary":"fluent timestamp checker filter","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elb-access-log","downloads":13914,"version":"0.3.4","version_downloads":44,"platform":"ruby","authors":"Genki Sugawara","info":"Fluentd input plugin for AWS ELB Access Logs.","licenses":["MIT"],"metadata":{},"sha":"88193cb2c25f8550aa7e8da8e7bf4fe064d7f6a9b52b9e34d49dc57e9a002923","project_uri":"https://rubygems.org/gems/fluent-plugin-elb-access-log","gem_uri":"https://rubygems.org/gems/fluent-plugin-elb-access-log-0.3.4.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-elb-access-log","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elb-access-log/0.3.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"addressable","requirements":">= 0"},{"name":"aws-sdk","requirements":"~> 2.1.2"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-05-18T00:00:00.000Z","created_at":"2017-05-18T02:11:23.138Z","description":"Fluentd input plugin for AWS ELB Access Logs.","downloads_count":44,"number":"0.3.4","summary":"Fluentd input plugin for AWS ELB Access Logs.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-elb-log","downloads":21026,"version":"0.4.0","version_downloads":187,"platform":"ruby","authors":"shinsaka","info":"Amazon ELB log input plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"0436cc55b61af12fc8e6320787f7ae8a0e74b8cbb5b8dee3522fde194a2137df","project_uri":"https://rubygems.org/gems/fluent-plugin-elb-log","gem_uri":"https://rubygems.org/gems/fluent-plugin-elb-log-0.4.0.gem","homepage_uri":"https://github.com/shinsaka/fluent-plugin-elb-log","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-elb-log/0.4.0","mailing_list_uri":"","source_code_uri":"https://github.com/shinsaka/fluent-plugin-elb-log","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":"< 2, >= 0.14.0"}]},"built_at":"2017-05-07T00:00:00.000Z","created_at":"2017-05-07T03:24:42.129Z","description":"Amazon ELB log input plugin for fluentd","downloads_count":187,"number":"0.4.0","summary":"Amazon ELB log input plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-embedded-elasticsearch","downloads":3556,"version":"0.0.2","version_downloads":2332,"platform":"ruby","authors":"kiyoto","info":"Fluentd plugin to serve ElasticSearch as a subprocess","licenses":["Apache 2.0"],"metadata":{},"sha":"3011d98bc83d4413fbb8e09d1072c333f75988a93a6b0569b4a3b984affe9c4f","project_uri":"https://rubygems.org/gems/fluent-plugin-embedded-elasticsearch","gem_uri":"https://rubygems.org/gems/fluent-plugin-embedded-elasticsearch-0.0.2.gem","homepage_uri":"https://github.com/kiyioto/fluent-plugin-embedded-elasticsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-embedded-elasticsearch/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"serverengine","requirements":">= 0"}]},"built_at":"2013-11-26T00:00:00.000Z","created_at":"2013-11-26T07:04:24.929Z","description":"Fluentd plugin to serve ElasticSearch as a subprocess","downloads_count":2332,"number":"0.0.2","summary":"Fluentd plugin to serve ElasticSearch as a subprocess","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-encrypt","downloads":759,"version":"0.1.1","version_downloads":759,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"This plugin converts data of specified fields, by encrypting using AES and base64 encoding for encrypted values","licenses":[],"metadata":{},"sha":"f05a7c00dcfb33ea77646cfafa972fd6edd5df2eea9a6a047a7b5ae176eb6181","project_uri":"https://rubygems.org/gems/fluent-plugin-encrypt","gem_uri":"https://rubygems.org/gems/fluent-plugin-encrypt-0.1.1.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-encrypt","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-encrypt/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"}]},"built_at":"2016-03-04T00:00:00.000Z","created_at":"2016-03-04T20:05:39.638Z","description":"This plugin converts data of specified fields, by encrypting using AES and base64 encoding for encrypted values","downloads_count":759,"number":"0.1.1","summary":"Fluentd filter plugin to encrypt fields","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-encryption-filter","downloads":357,"version":"0.0.1","version_downloads":357,"platform":"ruby","authors":"Akifumi Niida","info":"Filter plugin to encrypt.","licenses":["MIT"],"metadata":{},"sha":"8e7c0bc3e422dd2f72d148887a8878a674debca32a0a55d140bbecbee689b14e","project_uri":"https://rubygems.org/gems/fluent-plugin-encryption-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-encryption-filter-0.0.1.gem","homepage_uri":"https://github.com/nidcode/fluent-plugin-encryption-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-encryption-filter/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"encryptor","requirements":"~> 3.0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2017-01-10T00:00:00.000Z","created_at":"2017-01-10T03:54:39.583Z","description":"Filter plugin to encrypt.","downloads_count":357,"number":"0.0.1","summary":"Filter plugin to encrypt.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-es-mohit","downloads":2202,"version":"1.9.12","version_downloads":328,"platform":"ruby","authors":"mohit","info":"ElasticSearch output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"09db3614b821a2e46422d196140d6d3438e1186f257f05689eb8938362455db3","project_uri":"https://rubygems.org/gems/fluent-plugin-es-mohit","gem_uri":"https://rubygems.org/gems/fluent-plugin-es-mohit-1.9.12.gem","homepage_uri":"https://github.com/mohit-soral/fluent-plugin-elasticsearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-es-mohit/1.9.12","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":"~> 5.8"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.0"},{"name":"webmock","requirements":"~> 1"}],"runtime":[{"name":"elasticsearch","requirements":"< 5.0.0"},{"name":"excon","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.43"}]},"built_at":"2016-12-21T00:00:00.000Z","created_at":"2016-12-21T09:54:28.233Z","description":"ElasticSearch output plugin for Fluent event collector","downloads_count":328,"number":"1.9.12","summary":"ElasticSearch output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-esslowquery","downloads":13749,"version":"1.1.0","version_downloads":11094,"platform":"ruby","authors":"Boguslaw Mista","info":"Fluent parser plugin for Elasticsearch slow query and slow indexing log files.","licenses":["MIT"],"metadata":{},"sha":"39f2133510e361c92a9247d7a55b99149edee820949e1b15b42c83ac6e85fa40","project_uri":"https://rubygems.org/gems/fluent-plugin-esslowquery","gem_uri":"https://rubygems.org/gems/fluent-plugin-esslowquery-1.1.0.gem","homepage_uri":"https://github.com/iaintshine/fluent-plugin-esslowquery","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-esslowquery/1.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.12.0"}]},"built_at":"2016-02-16T00:00:00.000Z","created_at":"2016-02-16T19:05:26.950Z","description":"Fluent parser plugin for Elasticsearch slow query and slow indexing log files.","downloads_count":11094,"number":"1.1.0","summary":"Fluent parser plugin for Elasticsearch slow query and slow indexing log files.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-eval-filter","downloads":13058,"version":"0.1.0","version_downloads":4687,"platform":"ruby","authors":"Yuzuki Masaru","info":"Fluentd Output eval filter plugin.","licenses":["Apache 2.0"],"metadata":{},"sha":"ac377cb5d65a9ece7e3b5ff8ed0f595ad4ca71d2ad68663074c0ac57545eacc2","project_uri":"https://rubygems.org/gems/fluent-plugin-eval-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-eval-filter-0.1.0.gem","homepage_uri":"https://github.com/ephemeralsnow/fluent-plugin-eval-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-eval-filter/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 0"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0"}]},"built_at":"2016-03-26T00:00:00.000Z","created_at":"2016-03-26T09:17:18.095Z","description":"Fluentd Output eval filter plugin.","downloads_count":4687,"number":"0.1.0","summary":"Fluentd Output eval filter plugin.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-eventcounter","downloads":14857,"version":"0.0.6","version_downloads":339,"platform":"ruby","authors":"Sean Dick, Vijay Ramesh","info":"Fluentd plugin to count occurences of values in a field and emit them or write them to redis","licenses":["MIT"],"metadata":{},"sha":"811c9ab2ec6a98b2b528204271d23e7de3826604f11da798ea701287b2637762","project_uri":"https://rubygems.org/gems/fluent-plugin-eventcounter","gem_uri":"https://rubygems.org/gems/fluent-plugin-eventcounter-0.0.6.gem","homepage_uri":"https://github.com/change/fluent-plugin-eventcounter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-eventcounter/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":"~> 2.1.0"},{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2016-12-07T00:00:00.000Z","created_at":"2016-12-07T18:08:57.858Z","description":"Fluentd plugin to count occurences of values in a field and emit them or write them to redis","downloads_count":339,"number":"0.0.6","summary":"Fluentd plugin to count occurences of values in a field and emit them or write them to redis","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-eventlastvalue","downloads":12034,"version":"0.0.6","version_downloads":9253,"platform":"ruby","authors":"Michael Arick, Change.org","info":"Fluentd plugin to find the last value in a time-period of a field and emit it or write it to redis","licenses":["MIT"],"metadata":{},"sha":"1f848a3cffa10f83434b73202976ce03d125dfb4cc8132654d0d5388a876da12","project_uri":"https://rubygems.org/gems/fluent-plugin-eventlastvalue","gem_uri":"https://rubygems.org/gems/fluent-plugin-eventlastvalue-0.0.6.gem","homepage_uri":"https://github.com/change/fluent-plugin-eventlastvalue","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-eventlastvalue/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2015-07-15T00:00:00.000Z","created_at":"2015-07-15T18:07:22.912Z","description":"Fluentd plugin to find the last value in a time-period of a field and emit it or write it to redis","downloads_count":9253,"number":"0.0.6","summary":"Fluentd plugin to find the last value in a time-period of a field and emit it or write it to redis","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-event-sniffer","downloads":1329,"version":"0.0.1","version_downloads":1329,"platform":"ruby","authors":"OKUNO Akihiro","info":"Fluentd plugin which serves web application sniffing streaming events","licenses":["Apache-2.0"],"metadata":{},"sha":"658459200eab334fc9a4c04249ac1daaa76762a198c6b57fe7dcef852d239685","project_uri":"https://rubygems.org/gems/fluent-plugin-event-sniffer","gem_uri":"https://rubygems.org/gems/fluent-plugin-event-sniffer-0.0.1.gem","homepage_uri":"https://github.com/choplin/fluent-plugin-event-sniffer","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-event-sniffer/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"dummer","requirements":">= 0"},{"name":"foreman","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"sinatra-contrib","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"sinatra","requirements":">= 0"},{"name":"sinatra-rocketio","requirements":">= 0"},{"name":"slim","requirements":">= 0"},{"name":"thin","requirements":">= 0"}]},"built_at":"2014-07-26T00:00:00.000Z","created_at":"2014-07-26T18:30:50.839Z","description":"Fluentd plugin which serves web application sniffing streaming events","downloads_count":1329,"number":"0.0.1","summary":"Fluentd Event Sniffer","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-event-tail","downloads":3136,"version":"0.0.2","version_downloads":1577,"platform":"ruby","authors":"Mario Freitas","info":"fluentd input plugin derived from in_tail and inspired by in_forward for reading [tag, time, record] messages from a file","licenses":[],"metadata":{},"sha":"0660687b60c9aae1f4c4b8c5ab9827ce1cefd55976f2b9efed3c8fa4ece0ce49","project_uri":"https://rubygems.org/gems/fluent-plugin-event-tail","gem_uri":"https://rubygems.org/gems/fluent-plugin-event-tail-0.0.2.gem","homepage_uri":"https://github.com/imkira/fluent-plugin-event-tail","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-event-tail/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-01-07T00:00:00.000Z","created_at":"2014-01-07T09:16:32.642Z","description":"fluentd input plugin derived from in_tail and inspired by in_forward for reading [tag, time, record] messages from a file","downloads_count":1577,"number":"0.0.2","summary":"fluentd input plugin for reading [tag, time, record] messages from a file","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-everysense","downloads":4773,"version":"0.1.0","version_downloads":153,"platform":"ruby","authors":"Toyokazu Akiyama","info":"Fluent Input/Output plugin for EverySense Framework","licenses":["Apache License Version 2.0"],"metadata":{},"sha":"a60982fb876028574b15bd62e5c6bef5ee04516c79d700cf7f4cb7be4c0c5687","project_uri":"https://rubygems.org/gems/fluent-plugin-everysense","gem_uri":"https://rubygems.org/gems/fluent-plugin-everysense-0.1.0.gem","homepage_uri":"https://github.com/toyokazu/fluent-plugin-everysense","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-everysense/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.14.0"}]},"built_at":"2017-05-07T00:00:00.000Z","created_at":"2017-05-07T12:19:27.319Z","description":"Fluent Input/Output plugin for EverySense Framework","downloads_count":153,"number":"0.1.0","summary":"Fluent Input/Output plugin for EverySense Framework","rubygems_version":">= 0","ruby_version":">= 2.2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-exclude-filter","downloads":4466,"version":"0.0.1","version_downloads":4466,"platform":"ruby","authors":"yu yamada","info":"Output filter plugin to exclude records","licenses":["MIT"],"metadata":{},"sha":"7cad47a9ee9515cc2fd179a34e71af0ff78f1cab8830f84350e7f05045079668","project_uri":"https://rubygems.org/gems/fluent-plugin-exclude-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-exclude-filter-0.0.1.gem","homepage_uri":"https://github.com/yu-yamada/fluent-plugin-exclude-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-exclude-filter/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2014-08-10T00:00:00.000Z","created_at":"2014-08-10T07:51:22.223Z","description":"Output filter plugin to exclude records","downloads_count":4466,"number":"0.0.1","summary":"Output filter plugin to exclude records","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-exec_cron","downloads":1748,"version":"0.0.3","version_downloads":986,"platform":"ruby","authors":"Hiroshi Toyama","info":"executes external programs with cron syntax.","licenses":["MIT"],"metadata":{},"sha":"6ee7f81e457c54bc315df75bad0e0f7d461c9b9521a2b453b7b8aa76db93975f","project_uri":"https://rubygems.org/gems/fluent-plugin-exec_cron","gem_uri":"https://rubygems.org/gems/fluent-plugin-exec_cron-0.0.3.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-exec_cron","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-exec_cron/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"pry","requirements":"~> 0.10.1"},{"name":"rake","requirements":"~> 10.3.2"},{"name":"rubocop","requirements":"~> 0.24.1"},{"name":"rubygems-tasks","requirements":"~> 0.2"},{"name":"test-unit","requirements":">= 0"},{"name":"yard","requirements":"~> 0.8"}],"runtime":[{"name":"parse-cron","requirements":">= 0"}]},"built_at":"2016-01-18T00:00:00.000Z","created_at":"2016-01-18T01:25:31.261Z","description":"executes external programs with cron syntax.","downloads_count":986,"number":"0.0.3","summary":"executes external programs with cron syntax.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-exec_placeholder","downloads":1431,"version":"0.0.2","version_downloads":810,"platform":"ruby","authors":"toyama0919","info":"execute external command with placeholder plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"2df277e3d4a76528897728c440898571f82cb912055899487030103817fcb369","project_uri":"https://rubygems.org/gems/fluent-plugin-exec_placeholder","gem_uri":"https://rubygems.org/gems/fluent-plugin-exec_placeholder-0.0.2.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-exec_placeholder","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-exec_placeholder/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rubocop","requirements":">= 0"},{"name":"rubygems-tasks","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"yard","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-07-22T00:00:00.000Z","created_at":"2016-07-22T01:58:22.417Z","description":"execute external command with placeholder plugin for fluentd","downloads_count":810,"number":"0.0.2","summary":"execute external command with placeholder plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-exec-sudo","downloads":2347,"version":"0.0.3","version_downloads":1320,"platform":"ruby","authors":"Tatsuya Deguchi","info":"out_exec with sudo for Fluentd","licenses":[],"metadata":{},"sha":"480063915148d7914c498ae9a26409fde3dd5843742c457fb59e02e265418f55","project_uri":"https://rubygems.org/gems/fluent-plugin-exec-sudo","gem_uri":"https://rubygems.org/gems/fluent-plugin-exec-sudo-0.0.3.gem","homepage_uri":"https://github.com/deg84/fluent-plugin-exec-sudo","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-exec-sudo/0.0.3","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-08-06T00:00:00.000Z","created_at":"2015-08-06T06:01:51.967Z","description":"","downloads_count":1320,"number":"0.0.3","summary":"out_exec with sudo for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-explode_filter","downloads":1786,"version":"0.2.0","version_downloads":1139,"platform":"ruby","authors":"Jonathan Serafini","info":"A fluentd filter plugin that will split period separated fields to nested hashes.","licenses":["apache2"],"metadata":{},"sha":"da8fda3734f3b0472e3397bb6bfef7c7b62c1d4dda109a083ca2fededcb1162e","project_uri":"https://rubygems.org/gems/fluent-plugin-explode_filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-explode_filter-0.2.0.gem","homepage_uri":"https://github.com/JonathanSerafini/fluent-plugin-explode_filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-explode_filter/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":"< 0.15.0, >= 0.12.0"},{"name":"fluent-plugin-mutate_filter","requirements":"<= 1.1.0, >= 0.2.0"}]},"built_at":"2016-06-16T00:00:00.000Z","created_at":"2016-06-16T15:50:05.169Z","description":"A fluentd filter plugin that will split period separated fields to nested hashes.","downloads_count":1139,"number":"0.2.0","summary":"A fluentd filter plugin that will split period separated fields to nested hashes.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-extract_query_params","downloads":31178,"version":"0.1.0","version_downloads":4243,"platform":"ruby","authors":"Kentaro Kuribayashi","info":"Fluentd plugin to extract key/values from URL query parameters.","licenses":["MIT"],"metadata":{},"sha":"87a58c2f2525c066d4845460faf36ef7d697b0ff9b294c6d76a0703908829bf8","project_uri":"https://rubygems.org/gems/fluent-plugin-extract_query_params","gem_uri":"https://rubygems.org/gems/fluent-plugin-extract_query_params-0.1.0.gem","homepage_uri":"http://github.com/kentaro/fluent-plugin-extract_query_params","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-extract_query_params/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.8"}]},"built_at":"2016-11-14T00:00:00.000Z","created_at":"2016-11-14T05:08:29.662Z","description":"Fluentd plugin to extract key/values from URL query parameters.","downloads_count":4243,"number":"0.1.0","summary":"Fluentd plugin to extract key/values from URL query parameters","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-feedly","downloads":3102,"version":"0.0.3","version_downloads":1261,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd input plugin to fetch RSS/ATOM feed via feedly Cloud API.","licenses":["Apache 2.0"],"metadata":{},"sha":"a6ba93f6d2fe2cbddf8f79d923307deb25dd37cdd7b4ceedc225e79789689597","project_uri":"https://rubygems.org/gems/fluent-plugin-feedly","gem_uri":"https://rubygems.org/gems/fluent-plugin-feedly-0.0.3.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-feedly","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-feedly/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"feedlr","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.55"}]},"built_at":"2014-10-23T00:00:00.000Z","created_at":"2014-10-23T02:33:30.363Z","description":"","downloads_count":1261,"number":"0.0.3","summary":"Fluentd input plugin to fetch RSS/ATOM feed via feedly Cloud API.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-festival","downloads":1184,"version":"0.0.9","version_downloads":135,"platform":"ruby","authors":"Toyokazu Akiyama","info":"Fluent Input/Output plugin for FESTIVAL platform","licenses":["Apache License Version 2.0"],"metadata":{},"sha":"124e894862174987e6aca2c369002f341cf2d8abb5a2cf522f2eb090427db440","project_uri":"https://rubygems.org/gems/fluent-plugin-festival","gem_uri":"https://rubygems.org/gems/fluent-plugin-festival-0.0.9.gem","homepage_uri":"https://github.com/toyokazu/fluent-plugin-festival","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-festival/0.0.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.14.0"}]},"built_at":"2017-05-16T00:00:00.000Z","created_at":"2017-05-16T06:27:21.552Z","description":"Fluent Input/Output plugin for FESTIVAL platform","downloads_count":135,"number":"0.0.9","summary":"Fluent Input/Output plugin for FESTIVAL platform","rubygems_version":">= 0","ruby_version":">= 2.2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-field-flatten-json","downloads":524,"version":"0.1.1","version_downloads":524,"platform":"ruby","authors":"Manoj Sharma","info":"Fluent output plugin for flattening a json field","licenses":["MIT"],"metadata":{},"sha":"44e5be30f6d134a6a0e7d18fa2a975b9473c3a5180a1274db08d814f29dd8674","project_uri":"https://rubygems.org/gems/fluent-plugin-field-flatten-json","gem_uri":"https://rubygems.org/gems/fluent-plugin-field-flatten-json-0.1.1.gem","homepage_uri":"https://github.com/CiscoZeus/fluent-plugin-field-flatten-json","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-field-flatten-json/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"}]},"built_at":"2016-05-04T00:00:00.000Z","created_at":"2016-05-04T07:31:44.467Z","description":"Fluent output plugin for flattening a json field","downloads_count":524,"number":"0.1.1","summary":"Fluent output plugin for flattening a json field","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-field-multiregex","downloads":1611,"version":"0.1.3","version_downloads":936,"platform":"ruby","authors":"Manoj Sharma","info":"Fluent output plugin for reforming a record using multiple named capture regular expressions","licenses":["MIT"],"metadata":{},"sha":"ea18cebc2c8aba9251ef4c99ea9c8bc8427490d615afd73d792211a08f13b582","project_uri":"https://rubygems.org/gems/fluent-plugin-field-multiregex","gem_uri":"https://rubygems.org/gems/fluent-plugin-field-multiregex-0.1.3.gem","homepage_uri":"https://github.com/CiscoZeus/fluent-plugin-field-multiregex","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-field-multiregex/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-05-05T00:00:00.000Z","created_at":"2016-05-05T00:21:03.780Z","description":"Fluent output plugin for reforming a record using multiple named capture regular expressions","downloads_count":936,"number":"0.1.3","summary":"Fluent output plugin for reforming a record using multiple named capture regular expressions","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-fields-autotype","downloads":1068,"version":"0.1.1","version_downloads":1068,"platform":"ruby","authors":"Manoj Sharma","info":"Fluent output filter plugin for parsing key/value fields in records. Automatically determines type of the value as integer, float or string","licenses":["MIT"],"metadata":{},"sha":"cc59bf0cb678808a974d713de093f6eb5d8e4cd8dd5ad6a86a5464d5663a0285","project_uri":"https://rubygems.org/gems/fluent-plugin-fields-autotype","gem_uri":"https://rubygems.org/gems/fluent-plugin-fields-autotype-0.1.1.gem","homepage_uri":"https://github.com/CiscoZeus/fluent-plugin-fields-autotype","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-fields-autotype/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-10-01T00:00:00.000Z","created_at":"2015-10-01T05:56:24.774Z","description":"Fluent output filter plugin for parsing key/value fields in records. Automatically determines type of the value as integer, float or string","downloads_count":1068,"number":"0.1.1","summary":"Fluent output filter plugin for parsing key/value fields in records. Automatically determines type of the value as integer, float or string","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-fields-parser","downloads":11790,"version":"0.1.1","version_downloads":10755,"platform":"ruby","authors":"Tomas Pokorny","info":"Fluent output filter plugin for parsing key/value fields in records","licenses":["MIT"],"metadata":{},"sha":"a7c7e7a59c17de33bfaddb553793a068f600a860a01b11e0e6bdc9f43334504f","project_uri":"https://rubygems.org/gems/fluent-plugin-fields-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-fields-parser-0.1.1.gem","homepage_uri":"https://github.com/tomas-zemres/fluent-plugin-fields-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-fields-parser/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"logfmt","requirements":">= 0"}]},"built_at":"2014-08-19T00:00:00.000Z","created_at":"2014-08-19T08:19:49.669Z","description":"Fluent output filter plugin for parsing key/value fields in records","downloads_count":10755,"number":"0.1.1","summary":"Fluent output filter plugin for parsing key/value fields in records","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-file-alternative","downloads":85116,"version":"0.2.2","version_downloads":41100,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"alternative implementation of out_file, with various configurations","licenses":["Apache-2.0"],"metadata":{},"sha":"1f0819032046c68683d7a285a752ca316dd1aa10fd4b16b123696aa7531617de","project_uri":"https://rubygems.org/gems/fluent-plugin-file-alternative","gem_uri":"https://rubygems.org/gems/fluent-plugin-file-alternative-0.2.2.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-file-alternative","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-file-alternative/0.2.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.39"},{"name":"fluent-mixin-plaintextformatter","requirements":">= 0"}]},"built_at":"2016-01-06T00:00:00.000Z","created_at":"2016-01-06T10:10:42.611Z","description":"alternative implementation of out_file, with various configurations","downloads_count":41100,"number":"0.2.2","summary":"alternative implementation of out_file","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-file-sprintf","downloads":9769,"version":"0.0.7","version_downloads":947,"platform":"ruby","authors":"Hiroshi Toyama","info":"sprintf output file plugin for Fluentd.","licenses":["MIT"],"metadata":{},"sha":"28190de579b87a2aa8ff8a1d1e72f699d2d4268f4069d2b75f7abbf4c2aa2a38","project_uri":"https://rubygems.org/gems/fluent-plugin-file-sprintf","gem_uri":"https://rubygems.org/gems/fluent-plugin-file-sprintf-0.0.7.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-file-sprintf/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-file-sprintf/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"fluentd","requirements":">= 0"},{"name":"guard","requirements":">= 0"},{"name":"guard-rubocop","requirements":">= 0"},{"name":"guard-shell","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"ltsv","requirements":">= 0"}]},"built_at":"2016-01-08T00:00:00.000Z","created_at":"2016-01-08T01:52:19.143Z","description":"sprintf output file plugin for Fluentd.","downloads_count":947,"number":"0.0.7","summary":"sprintf output file plugin for Fluentd.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter","downloads":20388,"version":"0.0.5","version_downloads":1234,"platform":"ruby","authors":"Muddy Dixon","info":"Simple output filter","licenses":[],"metadata":{},"sha":"353dfc5d9a01976682d9bfe83b2b2f7d18b7fe160f4858d08721503db0d2a0f1","project_uri":"https://rubygems.org/gems/fluent-plugin-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-0.0.5.gem","homepage_uri":"https://github.com/muddydixon/fluent-plugin-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-12-21T00:00:00.000Z","created_at":"2016-12-21T06:32:32.810Z","description":"Simple output filter","downloads_count":1234,"number":"0.0.5","summary":"Simple output filter","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-base64-decode","downloads":333,"version":"0.1.0","version_downloads":333,"platform":"ruby","authors":"Daniel Malon","info":"A filter plugin to decode base64 encoded fields","licenses":["MIT"],"metadata":{},"sha":"584fcb47a5fbb8c862be6d2f90af8a242a88edb49caeba4e2c1c954765c64b05","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-base64-decode","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-base64-decode-0.1.0.gem","homepage_uri":"https://github.com/MerlinDMC/fluent-plugin-filter-base64-decode","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-base64-decode/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2017-01-12T00:00:00.000Z","created_at":"2017-01-12T20:07:51.906Z","description":"A filter plugin to decode base64 encoded fields","downloads_count":333,"number":"0.1.0","summary":"A filter plugin to decode base64 encoded fields","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter_codec","downloads":1842,"version":"0.0.2","version_downloads":1061,"platform":"ruby","authors":"Neozaru","info":"Fluentd custom plugin to encode/decode fields","licenses":["NONE"],"metadata":{},"sha":"95e6c22295f3c063ee11ffce2828ac3845253dab04093281d927ea7c11f1741f","project_uri":"https://rubygems.org/gems/fluent-plugin-filter_codec","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter_codec-0.0.2.gem","homepage_uri":"https://github.com/Neozaru/fluent-plugin-filter_codec.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter_codec/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2015-04-03T00:00:00.000Z","created_at":"2015-04-03T18:54:27.953Z","description":"Fluentd custom plugin to encode/decode fields","downloads_count":1061,"number":"0.0.2","summary":"Fluentd custom plugin to encode/decode fields","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-geo","downloads":520,"version":"0.0.1","version_downloads":520,"platform":"ruby","authors":"Tokyo Home SOC","info":"Fluent filter plugin for adding GeoIP data to record. Supports the new Maxmind v2 database formats.","licenses":["Apache-2.0"],"metadata":{},"sha":"7b60facdb84ea98612c4aa3d25e65d6171db065bd5447c19b51075787bd3f045","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-geo","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-geo-0.0.1.gem","homepage_uri":"https://github.com/airforon/fluent-plugin-filter-geo","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-geo/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11.2"},{"name":"minitest","requirements":"~> 5.8.3"},{"name":"rake","requirements":"~> 10.5.0"},{"name":"test-unit","requirements":"~> 3.1.5"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.19"},{"name":"maxminddb","requirements":"~> 0.1.8"}]},"built_at":"2016-11-25T00:00:00.000Z","created_at":"2016-11-25T14:21:15.391Z","description":"Fluent filter plugin for adding GeoIP data to record. Supports the new Maxmind v2 database formats.","downloads_count":520,"number":"0.0.1","summary":"Fluent filter plugin for adding GeoIP data to record.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-geoip","downloads":7526,"version":"0.5.3","version_downloads":290,"platform":"ruby","authors":"Minoru Osuka","info":"Fluent filter plugin for adding GeoIP data to record. Supports the new Maxmind v2 database formats.","licenses":["Apache-2.0"],"metadata":{},"sha":"a1fc05676ad0ddf9d30805f95ef1df029b9a8bbc38702f7fa22216114dbf84cc","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-geoip","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-geoip-0.5.3.gem","homepage_uri":"https://github.com/mosuka/fluent-plugin-filter-geoip","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-geoip/0.5.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14.6"},{"name":"minitest","requirements":"~> 5.8.3"},{"name":"rake","requirements":"~> 11.1.2"},{"name":"test-unit","requirements":"~> 3.1.5"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.32"},{"name":"maxminddb","requirements":"~> 0.1.11"}]},"built_at":"2017-03-13T00:00:00.000Z","created_at":"2017-03-13T06:39:11.350Z","description":"Fluent filter plugin for adding GeoIP data to record. Supports the new Maxmind v2 database formats.","downloads_count":290,"number":"0.5.3","summary":"Fluent filter plugin for adding GeoIP data to record.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-jq","downloads":1008,"version":"0.1.0","version_downloads":1008,"platform":"ruby","authors":"Genki Sugawara","info":"Filter Plugin to create a new record containing the values converted by jq.","licenses":["MIT"],"metadata":{},"sha":"57dd7a7fdfc9938f9f4e751afa2739520abf0746420988a68ca766a91620110b","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-jq","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-jq-0.1.0.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-filter-jq","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-jq/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"},{"name":"multi_json","requirements":">= 0"},{"name":"ruby-jq","requirements":">= 0"}]},"built_at":"2015-07-13T00:00:00.000Z","created_at":"2015-07-13T01:43:14.080Z","description":"Filter Plugin to create a new record containing the values converted by jq.","downloads_count":1008,"number":"0.1.0","summary":"Filter Plugin to create a new record containing the values converted by jq.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter_keys","downloads":3382,"version":"0.0.2","version_downloads":1896,"platform":"ruby","authors":"Kohei Hasegawa","info":"Fluentd plugin to filter if a specific key is present or not in event logs.","licenses":["MIT"],"metadata":{},"sha":"4ffefd2e34caecdfc93ba8f35ffc1d516160a92f9ef399c17b9792a0f39f0cb6","project_uri":"https://rubygems.org/gems/fluent-plugin-filter_keys","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter_keys-0.0.2.gem","homepage_uri":"https://github.com/banyan/fluent-plugin-filter_keys","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter_keys/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2013-11-19T00:00:00.000Z","created_at":"2013-11-19T01:41:18.806Z","description":"Fluentd plugin to filter if a specific key is present or not in event logs.","downloads_count":1896,"number":"0.0.2","summary":"Fluentd plugin to filter if a specific key is present or not in event logs.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter_linefeeder","downloads":1706,"version":"0.0.2","version_downloads":1002,"platform":"ruby","authors":"Naotoshi Seo","info":"A Fluentd filter plugin to convert ' ' to \" \" (line feed)","licenses":["MIT"],"metadata":{},"sha":"22a65d1ed588277cfd5ff5da477e0a39d86e0bd656969bcc9a8eb1ea9bf8be1a","project_uri":"https://rubygems.org/gems/fluent-plugin-filter_linefeeder","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter_linefeeder-0.0.2.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-filter_linefeeder","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter_linefeeder/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2015-05-08T00:00:00.000Z","created_at":"2015-05-08T10:01:25.926Z","description":"A Fluentd filter plugin to convert ' ' to \" \" (line feed)","downloads_count":1002,"number":"0.0.2","summary":"A Fluentd filter plugin to convert ' ' to \" \" (line feed)","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-object-flatten","downloads":2508,"version":"0.1.2","version_downloads":1220,"platform":"ruby","authors":"Genki Sugawara","info":"Filter Plugin to convert the hash record to records of key-value pairs.","licenses":["MIT"],"metadata":{},"sha":"19c94cbc98e89f01f5bd79c33147f0c414ba7ce6894bc6c55f206469b2d468a9","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-object-flatten","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-object-flatten-0.1.2.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-filter-object-flatten","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-object-flatten/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"},{"name":"object_flatten","requirements":">= 0.1.1"}]},"built_at":"2015-07-12T00:00:00.000Z","created_at":"2015-07-12T22:24:22.693Z","description":"Filter Plugin to convert the hash record to records of key-value pairs.","downloads_count":1220,"number":"0.1.2","summary":"Filter Plugin to convert the hash record to records of key-value pairs.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-parse-postfix","downloads":6143,"version":"0.2.7","version_downloads":356,"platform":"ruby","authors":"Genki Sugawara","info":"Filter Plugin to parse Postfix status line log.","licenses":["MIT"],"metadata":{},"sha":"4bf7ecb1ffdced015cc0d138416ae2e34612ecfa89b81878b0905dde6219c0a2","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-parse-postfix","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-parse-postfix-0.2.7.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-filter-parse-postfix","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-parse-postfix/0.2.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"},{"name":"postfix_status_line","requirements":"~> 0.2.8"}]},"built_at":"2017-03-05T00:00:00.000Z","created_at":"2017-03-05T14:18:51.375Z","description":"Filter Plugin to parse Postfix status line log.","downloads_count":356,"number":"0.2.7","summary":"Filter Plugin to parse Postfix status line log.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-record-map","downloads":4939,"version":"0.1.4","version_downloads":1967,"platform":"ruby","authors":"Genki Sugawara","info":"Filter Plugin to create a new record containing the values converted by Ruby script.","licenses":["MIT"],"metadata":{},"sha":"f0d7e920532e7d0bdd30a71c849a08ed8bb09dd7b2d06419b4420dad24fb4178","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-record-map","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-record-map-0.1.4.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-filter-record-map","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-record-map/0.1.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2015-10-22T00:00:00.000Z","created_at":"2015-10-22T12:41:22.667Z","description":"Filter Plugin to create a new record containing the values converted by Ruby script.","downloads_count":1967,"number":"0.1.4","summary":"Filter Plugin to create a new record containing the values converted by Ruby script.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-twitterurl","downloads":497,"version":"0.0.1","version_downloads":497,"platform":"ruby","authors":"Tokyo Home SOC","info":"Twitter Streaming API URL Generator.","licenses":["Apache-2.0"],"metadata":{},"sha":"534e599cf3acc7cbfd2b84799024b542edeee94f86bdf34ed39ab9b84fc486b4","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-twitterurl","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-twitterurl-0.0.1.gem","homepage_uri":"https://github.com/tokyohomesoc/fluent-plugin-filter-twitterurl","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-twitterurl/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[]},"built_at":"2017-02-21T00:00:00.000Z","created_at":"2017-02-21T09:18:36.075Z","description":"Twitter Streaming API URL Generator.","downloads_count":497,"number":"0.0.1","summary":"Twitter Streaming API URL Generator.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter_typecast","downloads":10252,"version":"0.0.3","version_downloads":167,"platform":"ruby","authors":"Naotoshi Seo","info":"A Fluentd filter plugin to cast record types","licenses":["MIT"],"metadata":{},"sha":"15630d1336f9a99820963f931b59674ed0809c1548aa90af30bb0c39a61f815b","project_uri":"https://rubygems.org/gems/fluent-plugin-filter_typecast","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter_typecast-0.0.3.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-filter_typecast","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter_typecast/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2017-05-16T00:00:00.000Z","created_at":"2017-05-16T03:00:31.457Z","description":"A Fluentd filter plugin to cast record types","downloads_count":167,"number":"0.0.3","summary":"A Fluentd filter plugin to cast record types","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-urldecode","downloads":353,"version":"0.1.0","version_downloads":353,"platform":"ruby","authors":"Daniel Malon","info":"A filter plugin to decode percent encoded fields","licenses":["MIT"],"metadata":{},"sha":"94fd3823ce3ee1ce6a918c1689c9da94fc6d463b760f584d94256ab924722dd9","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-urldecode","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-urldecode-0.1.0.gem","homepage_uri":"https://github.com/MerlinDMC/fluent-plugin-filter-urldecode","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-urldecode/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2017-01-12T00:00:00.000Z","created_at":"2017-01-12T20:25:55.881Z","description":"A filter plugin to decode percent encoded fields","downloads_count":353,"number":"0.1.0","summary":"A filter plugin to decode percent encoded fields","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-filter-wms-auth","downloads":845,"version":"1.0.5","version_downloads":233,"platform":"ruby","authors":"roma42427","info":"fluent plugin to extract wms auth","licenses":["MIT"],"metadata":{},"sha":"9b362855519f7ec0eb06c0dc01dc75ef7548fa5c7ee1fb2ffc3c1c58486a4ca9","project_uri":"https://rubygems.org/gems/fluent-plugin-filter-wms-auth","gem_uri":"https://rubygems.org/gems/fluent-plugin-filter-wms-auth-1.0.5.gem","homepage_uri":"https://github.com/roma42427/filter_wms_auth","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-filter-wms-auth/1.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[]},"built_at":"2017-04-02T00:00:00.000Z","created_at":"2017-04-02T02:40:47.902Z","description":"","downloads_count":233,"number":"1.0.5","summary":"fluent plugin to extract wms auth","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-finagle","downloads":1058,"version":"0.0.3","version_downloads":511,"platform":"ruby","authors":"Kai Sasaki","info":"fluentd input plugin for Finagle metric","licenses":["MIT"],"metadata":{},"sha":"74e98cf6cb831e7b9020c4c398f8daf3fc2b558e8611434ae36bdd0c8a94ce16","project_uri":"https://rubygems.org/gems/fluent-plugin-finagle","gem_uri":"https://rubygems.org/gems/fluent-plugin-finagle-0.0.3.gem","homepage_uri":"http://github.com/Lewuathe/fluent-plugin-finagle","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-finagle/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"faraday","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"yajl-ruby","requirements":">= 0"}]},"built_at":"2016-09-09T00:00:00.000Z","created_at":"2016-09-09T01:52:51.416Z","description":"fluentd input plugin for Finagle metric","downloads_count":511,"number":"0.0.3","summary":"fluentd input plugin for Finagle metric","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-firehose","downloads":10846,"version":"0.0.11","version_downloads":4737,"platform":"ruby","authors":"Amazon Web Services","info":"Fluentd output plugin that sends events to Amazon Kinesis Firehose.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"4dc6a7cac47586a5673afe21f8c0b3127d99b021bfeb293cbb9bbf91115cd7a3","project_uri":"https://rubygems.org/gems/fluent-plugin-firehose","gem_uri":"https://rubygems.org/gems/fluent-plugin-firehose-0.0.11.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-firehose/0.0.11","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit-rr","requirements":"~> 1.0"}],"runtime":[{"name":"aws-sdk-core","requirements":"< 3.0, >= 2.0.12"},{"name":"fluentd","requirements":"< 0.13, >= 0.10.53"},{"name":"msgpack","requirements":">= 0.5.8"},{"name":"multi_json","requirements":"~> 1.0"}]},"built_at":"2016-03-02T00:00:00.000Z","created_at":"2016-03-02T20:25:32.058Z","description":"","downloads_count":4737,"number":"0.0.11","summary":"Fluentd output plugin that sends events to Amazon Kinesis Firehose.","rubygems_version":">= 0","ruby_version":">= 1.9.3","prerelease":false,"requirements":[]},{"name":"fluent-plugin-flatten","downloads":14431,"version":"0.1.0","version_downloads":425,"platform":"ruby","authors":"Kentaro Kuribayashi","info":"Fluentd plugin to extract values for nested key paths and re-emit them as flat tag/record pairs.","licenses":["MIT"],"metadata":{},"sha":"5497fd528537892d7fef509e60f1db99f94f50bd33ca887bb3b9dacdf38c0d73","project_uri":"https://rubygems.org/gems/fluent-plugin-flatten","gem_uri":"https://rubygems.org/gems/fluent-plugin-flatten-0.1.0.gem","homepage_uri":"http://github.com/kentaro/fluent-plugin-flatten","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-flatten/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.8"}]},"built_at":"2016-11-14T00:00:00.000Z","created_at":"2016-11-14T05:15:26.185Z","description":"Fluentd plugin to extract values for nested key paths and re-emit them as flat tag/record pairs.","downloads_count":425,"number":"0.1.0","summary":"Fluentd plugin to extract values for nested key paths and re-emit them as flat tag/record pairs.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-flatten-hash","downloads":32932,"version":"0.5.0","version_downloads":1590,"platform":"ruby","authors":"Masahiro Sano","info":"A fluentd plugin to flatten nested hash structure as a flat record","licenses":["MIT"],"metadata":{},"sha":"e9ee98a8bc2f103ab47d300abb99980fc1b0deea861315ba758106be94ce135b","project_uri":"https://rubygems.org/gems/fluent-plugin-flatten-hash","gem_uri":"https://rubygems.org/gems/fluent-plugin-flatten-hash-0.5.0.gem","homepage_uri":"https://github.com/kazegusuri/fluent-plugin-flatten-hash","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-flatten-hash/0.5.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.8"}]},"built_at":"2016-11-17T00:00:00.000Z","created_at":"2016-11-17T14:26:35.838Z","description":"A fluentd plugin to flatten nested hash structure as a flat record","downloads_count":1590,"number":"0.5.0","summary":"A fluentd plugin to flatten nested hash structure as a flat record","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-flowcounter","downloads":186707,"version":"0.4.2","version_downloads":25280,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Plugin to counts messages/bytes that matches, per minutes/hours/days","licenses":["Apache-2.0"],"metadata":{},"sha":"53787cb7c2c8a2548b46c6b74c2ba809b279f8e262c3159053e78abdd9f5d257","project_uri":"https://rubygems.org/gems/fluent-plugin-flowcounter","gem_uri":"https://rubygems.org/gems/fluent-plugin-flowcounter-0.4.2.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-flowcounter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-flowcounter/0.4.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"}]},"built_at":"2016-10-17T00:00:00.000Z","created_at":"2016-10-17T04:47:44.212Z","description":"Plugin to counts messages/bytes that matches, per minutes/hours/days","downloads_count":25280,"number":"0.4.2","summary":"Fluent plugin to count message flow","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-flowcounter-simple","downloads":5505,"version":"0.0.4","version_downloads":1821,"platform":"ruby","authors":"Naotoshi Seo","info":"Simple Fluentd Plugin to count number of messages and outputs to log","licenses":["MIT"],"metadata":{},"sha":"b551fad88f7b8d67ce2226322a4679fe0f3cd4b83a07e059ec9a676967cd7da7","project_uri":"https://rubygems.org/gems/fluent-plugin-flowcounter-simple","gem_uri":"https://rubygems.org/gems/fluent-plugin-flowcounter-simple-0.0.4.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-flowcounter-simple","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-flowcounter-simple/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-04-23T00:00:00.000Z","created_at":"2015-04-23T16:10:25.609Z","description":"Simple Fluentd Plugin to count number of messages and outputs to log","downloads_count":1821,"number":"0.0.4","summary":"Simple Fluentd Plugin to count number of messages and outputs to log","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-flume","downloads":12173,"version":"0.2.0","version_downloads":1075,"platform":"ruby","authors":"Muga Nishizawa","info":"Flume Input/Output plugin for Fluentd event collector","licenses":["MIT"],"metadata":{},"sha":"5623b5c3d54d43317fa32b7e562bbf25aebbe09d96c749a8fdc4d2923af48267","project_uri":"https://rubygems.org/gems/fluent-plugin-flume","gem_uri":"https://rubygems.org/gems/fluent-plugin-flume-0.2.0.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-flume","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-flume/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.43"},{"name":"thrift","requirements":"~> 0.9.0"}]},"built_at":"2016-10-25T00:00:00.000Z","created_at":"2016-10-25T12:08:48.637Z","description":"Flume Input/Output plugin for Fluentd event collector","downloads_count":1075,"number":"0.2.0","summary":"Flume Input/Output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-fnordmetric","downloads":2134,"version":"0.0.1","version_downloads":2134,"platform":"ruby","authors":"Eduardo Aceituno","info":"fnordmetric plugin for fluent, an event collector","licenses":null,"metadata":{},"sha":"65ee249fff5d39aabfc42a814cce6390245594f9c8555f6197549720920cbf62","project_uri":"https://rubygems.org/gems/fluent-plugin-fnordmetric","gem_uri":"https://rubygems.org/gems/fluent-plugin-fnordmetric-0.0.1.gem","homepage_uri":"https://github.com/achied/fluent-plugin-fnordmetric","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-fnordmetric/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"mock_redis","requirements":">= 0"},{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.7"},{"name":"fnordmetric","requirements":"= 1.0.0"}]},"built_at":"2012-10-16T00:00:00.000Z","created_at":"2012-10-16T15:59:32.072Z","description":"fnordmetric plugin for fluent, an event collector","downloads_count":2134,"number":"0.0.1","summary":"fnordmetric plugin for fluent, an event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-forest","downloads":603359,"version":"0.3.3","version_downloads":142054,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"create sub-plugin dynamically per tags, with template configuration and parameters","licenses":["Apache-2.0"],"metadata":{},"sha":"a2c4daf9cf7928e5f6953e43d1d88a6ca3a1848757e8376664df70718bfacced","project_uri":"https://rubygems.org/gems/fluent-plugin-forest","gem_uri":"https://rubygems.org/gems/fluent-plugin-forest-0.3.3.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-forest","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-forest/0.3.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.7"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-10-07T00:00:00.000Z","created_at":"2016-10-07T05:45:20.277Z","description":"create sub-plugin dynamically per tags, with template configuration and parameters","downloads_count":142054,"number":"0.3.3","summary":"plugin to create output plugin instances per tags dynamically","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-fork","downloads":7571,"version":"0.1.3","version_downloads":4366,"platform":"ruby","authors":"Daisuke Taniwaki","info":"Fork output by separating values for fluentd","licenses":["MIT"],"metadata":{},"sha":"3fe467f6fbe653213d2aba4052c8f5ceb24ce1d2c7c28d268a2c73cb12302bf2","project_uri":"https://rubygems.org/gems/fluent-plugin-fork","gem_uri":"https://rubygems.org/gems/fluent-plugin-fork-0.1.3.gem","homepage_uri":"https://github.com/dtaniwaki/fluent-plugin-fork","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-fork/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"coveralls","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 0.12.0"}]},"built_at":"2015-04-30T00:00:00.000Z","created_at":"2015-04-30T05:51:33.581Z","description":"Fork output by separating values for fluentd","downloads_count":4366,"number":"0.1.3","summary":"Fork output by separating values for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-format","downloads":4279,"version":"0.0.1","version_downloads":4279,"platform":"ruby","authors":"Akinori Machino","info":"Output plugin to format fields of records and re-emit them.","licenses":["MIT"],"metadata":{},"sha":"a22870a83062e9a17d6667e4916d36e17dc2605f745c637f647c0f35b179417e","project_uri":"https://rubygems.org/gems/fluent-plugin-format","gem_uri":"https://rubygems.org/gems/fluent-plugin-format-0.0.1.gem","homepage_uri":"https://github.com/mach/fluent-plugin-format","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-format/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-12-24T00:00:00.000Z","created_at":"2013-12-24T13:40:04.394Z","description":"Output plugin to format fields of records and re-emit them.","downloads_count":4279,"number":"0.0.1","summary":"Output plugin to format fields and re-emit them.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-formatter_linebyline","downloads":1237,"version":"0.0.1","version_downloads":1237,"platform":"ruby","authors":"Manraj Tatla","info":"FluentD formatter plugin that formats record output to be shown as key value pairs shown line by line. Only works for FluentD version 0.10.49 and above, and with output plugins that support Text Formatter (such as out_file). For installing plugins, please see http://docs.fluentd.org/articles/plugin-management and http://docs.fluentd.org/articles/formatter-plugin-overview# ","licenses":["MIT"],"metadata":{},"sha":"a9f8d7298e155b353248cd46d9af2123d95660662203a64c3ff3bd8abbcf5d58","project_uri":"https://rubygems.org/gems/fluent-plugin-formatter_linebyline","gem_uri":"https://rubygems.org/gems/fluent-plugin-formatter_linebyline-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-formatter_linebyline/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[]},"built_at":"2014-10-30T00:00:00.000Z","created_at":"2014-10-30T13:33:00.001Z","description":"FluentD formatter plugin that formats record output to be shown as key value pairs shown line by line. Only works for FluentD version 0.10.49 and above, and with output plugins that support Text Formatter (such as out_file). For installing plugins, please see http://docs.fluentd.org/articles/plugin-management and http://docs.fluentd.org/articles/formatter-plugin-overview# ","downloads_count":1237,"number":"0.0.1","summary":"Formats output for key value pairs to be shown line by line","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-formatter_pretty_json","downloads":1607,"version":"0.0.2","version_downloads":1033,"platform":"ruby","authors":"Yoshihiro MIYAI","info":"Fluentd formatter plugin for formatting record to pretty json.","licenses":["MIT"],"metadata":{},"sha":"ebffc48e925c3d24a58ec190f052fdea779f30d7c0d8e61dd74f84f03a6d9309","project_uri":"https://rubygems.org/gems/fluent-plugin-formatter_pretty_json","gem_uri":"https://rubygems.org/gems/fluent-plugin-formatter_pretty_json-0.0.2.gem","homepage_uri":"https://github.com/mia-0032/fluent-plugin-formatter_pretty_json","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-formatter_pretty_json/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.0"}]},"built_at":"2015-09-06T00:00:00.000Z","created_at":"2015-09-06T16:42:21.870Z","description":"Fluentd formatter plugin for formatting record to pretty json.","downloads_count":1033,"number":"0.0.2","summary":"Fluentd formatter plugin pretty json.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-formatter_simple_tsv","downloads":2803,"version":"0.1.0","version_downloads":410,"platform":"ruby","authors":"Hiroshi Hatake","info":"Fluentd Simple TSV formatter plugin","licenses":["MIT"],"metadata":{},"sha":"ebffe3d626a8435aaa1c52cb8d8f3ed354c3c9d2bc642eeb8b8884844e0b7655","project_uri":"https://rubygems.org/gems/fluent-plugin-formatter_simple_tsv","gem_uri":"https://rubygems.org/gems/fluent-plugin-formatter_simple_tsv-0.1.0.gem","homepage_uri":"https://github.com/cosmo0920/fluent-plugin-formatter_simple_tsv","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-formatter_simple_tsv/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.6"}]},"built_at":"2016-09-10T00:00:00.000Z","created_at":"2016-09-10T01:46:07.978Z","description":"Fluentd Simple TSV formatter plugin","downloads_count":410,"number":"0.1.0","summary":"Fluentd Simple TSV formatter plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-formatter_sprintf","downloads":4754,"version":"0.0.4","version_downloads":2187,"platform":"ruby","authors":"Hiroshi Toyama","info":"Fluentd Free formatter plugin, Use sprintf.","licenses":["MIT"],"metadata":{},"sha":"e3001a00554d0510aaecb4873d90902b56625c0cf6f1b6eef210fbfe02b99235","project_uri":"https://rubygems.org/gems/fluent-plugin-formatter_sprintf","gem_uri":"https://rubygems.org/gems/fluent-plugin-formatter_sprintf-0.0.4.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-formatter_sprintf","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-formatter_sprintf/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-03-15T00:00:00.000Z","created_at":"2016-03-15T05:26:09.658Z","description":"Fluentd Free formatter plugin, Use sprintf.","downloads_count":2187,"number":"0.0.4","summary":"Fluentd Free formatter plugin, Use sprintf.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-formatter_tsv","downloads":1044,"version":"0.0.1","version_downloads":1044,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd TSV formatter plugin","licenses":["MIT"],"metadata":{},"sha":"3ef4b7882a8bd1fab30d47504c5f185bbf01b3eaa26c84feff3fe2718084fcfa","project_uri":"https://rubygems.org/gems/fluent-plugin-formatter_tsv","gem_uri":"https://rubygems.org/gems/fluent-plugin-formatter_tsv-0.0.1.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-formatter_tsv","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-formatter_tsv/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-06-16T00:00:00.000Z","created_at":"2015-06-16T04:54:03.030Z","description":"Fluentd TSV formatter plugin","downloads_count":1044,"number":"0.0.1","summary":"Fluentd TSV formatter plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-fortigate-log-parser","downloads":4044,"version":"0.2.1","version_downloads":1316,"platform":"ruby","authors":"Yoshinori TERAOKA","info":"fluentd plugin for parse FortiGate log","licenses":["MIT"],"metadata":{},"sha":"01347c0148f695e4d923e18b429c6571b6a715586bf9c0c50d931ba1d51363d7","project_uri":"https://rubygems.org/gems/fluent-plugin-fortigate-log-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-fortigate-log-parser-0.2.1.gem","homepage_uri":"https://github.com/yteraoka/fluent-plugin-fortigate-log-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-fortigate-log-parser/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-03-21T00:00:00.000Z","created_at":"2015-03-21T01:45:41.997Z","description":"fluentd plugin for parse FortiGate log","downloads_count":1316,"number":"0.2.1","summary":"fluentd plugin for parse FortiGate log","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-forward-aws","downloads":13977,"version":"0.1.8","version_downloads":1486,"platform":"ruby","authors":"Tomohisa Ota","info":"Fluentd In/Out plugin to forward log through AWS(S3/SNS/SQS)","licenses":[],"metadata":{},"sha":"f191b4d9851a7a9fddc750f95a9c2a37126a5a6f679f7bc774751fad18bc5249","project_uri":"https://rubygems.org/gems/fluent-plugin-forward-aws","gem_uri":"https://rubygems.org/gems/fluent-plugin-forward-aws-0.1.8.gem","homepage_uri":"http://github.com/tomohisaota/fluent-plugin-forward-aws","wiki_uri":"","documentation_uri":"https://github.com/tomohisaota/fluent-plugin-forward-aws","mailing_list_uri":"","source_code_uri":"https://github.com/tomohisaota/fluent-plugin-forward-aws","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 0.9.2.2"},{"name":"rdoc","requirements":"~> 3.12"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 1.8.2"},{"name":"fluentd","requirements":"< 2, >= 0.10.58"}]},"built_at":"2015-08-11T00:00:00.000Z","created_at":"2015-08-11T12:24:32.130Z","description":"Fluentd In/Out plugin to forward log through AWS(S3/SNS/SQS)","downloads_count":1486,"number":"0.1.8","summary":"Fluentd In/Out plugin to forward log through AWS(S3/SNS/SQS)","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-free","downloads":1398,"version":"0.0.1","version_downloads":1398,"platform":"ruby","authors":"TATEZONO Masaki","info":"Input plugin for fluentd to collect memory usage from free command.","licenses":["APLv2"],"metadata":{},"sha":"8bd2e343074c7a46190cc4daf31ca20c6376ff9202e53b11dcde46d2db59adbd","project_uri":"https://rubygems.org/gems/fluent-plugin-free","gem_uri":"https://rubygems.org/gems/fluent-plugin-free-0.0.1.gem","homepage_uri":"https://github.com/zonomasa/fluent-plugin-free","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-free/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-06-29T00:00:00.000Z","created_at":"2014-06-29T01:23:39.633Z","description":"Input plugin for fluentd to collect memory usage from free command.","downloads_count":1398,"number":"0.0.1","summary":"Input plugin for fluentd to collect memory usage from free command.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ftp","downloads":1497,"version":"0.0.1","version_downloads":1497,"platform":"ruby","authors":"Kazuki Ohta","info":"FTP input / output plugin for Fluentd data collector","licenses":[],"metadata":{},"sha":"63ad6b90e3440c265d300e32d4157e5625742441ac15d9f64ade9223ddbf213b","project_uri":"https://rubygems.org/gems/fluent-plugin-ftp","gem_uri":"https://rubygems.org/gems/fluent-plugin-ftp-0.0.1.gem","homepage_uri":"https://github.com/kzk/fluent-plugin-ftp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ftp/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.2.0"},{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"aws-sdk","requirements":"~> 1.8.2"},{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"fluent-mixin-config-placeholders","requirements":"~> 0.2.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2014-03-12T00:00:00.000Z","created_at":"2014-03-12T13:10:07.994Z","description":"FTP input / output plugin for Fluentd data collector","downloads_count":1497,"number":"0.0.1","summary":"FTP input / output plugin for Fluentd data collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-fw1_loggrabber_parser","downloads":517,"version":"1.0.0","version_downloads":517,"platform":"ruby","authors":"Tomoyuki Sugimura","info":"parse checkpoint firewall-1 LEA formatted log from file","licenses":["MIT"],"metadata":{},"sha":"f79db5f9bfa978cf3b701ee4a5713c0209dacadb2311bcb7c91c4b2626da0722","project_uri":"https://rubygems.org/gems/fluent-plugin-fw1_loggrabber_parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-fw1_loggrabber_parser-1.0.0.gem","homepage_uri":"https://localhost.localdomain","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-fw1_loggrabber_parser/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"fluentd","requirements":">= 0.10.43, ~> 0.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[]},"built_at":"2016-05-20T00:00:00.000Z","created_at":"2016-05-20T07:34:34.008Z","description":"parse checkpoint firewall-1 LEA formatted log from file","downloads_count":517,"number":"1.0.0","summary":"parse checkpoint firewall-1 LEA formatted log","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-gamobile","downloads":8974,"version":"0.3.0","version_downloads":872,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd Output plugin to send access report with \"Google Analytics for mobile\".","licenses":[],"metadata":{},"sha":"3af2501856c3fe7e8d88c6cec8d83de761cbc72bc99ba7491778be347c35358a","project_uri":"https://rubygems.org/gems/fluent-plugin-gamobile","gem_uri":"https://rubygems.org/gems/fluent-plugin-gamobile-0.3.0.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-gamobile","wiki_uri":"","documentation_uri":"https://github.com/y-ken/fluent-plugin-gamobile#readme","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3"}],"runtime":[{"name":"activesupport","requirements":"~> 3.0.0"},{"name":"fluentd","requirements":">= 0"},{"name":"i18n","requirements":">= 0"}]},"built_at":"2016-06-03T00:00:00.000Z","created_at":"2016-06-03T11:21:59.664Z","description":"","downloads_count":872,"number":"0.3.0","summary":"Fluentd Output plugin to send access report with \"Google Analytics for mobile\".","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ganglia","downloads":3041,"version":"0.0.2","version_downloads":1556,"platform":"ruby","authors":"Hiroshi Sakai","info":"Fluentd output plugin to ganglia","licenses":[],"metadata":{},"sha":"42ed07506cbf463e45775c1f7262e8b39b1894abe42598d8bc00511d2a985ab4","project_uri":"https://rubygems.org/gems/fluent-plugin-ganglia","gem_uri":"https://rubygems.org/gems/fluent-plugin-ganglia-0.0.2.gem","homepage_uri":"https://github.com/ziguzagu/fluent-plugin-ganglia","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ganglia/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"gmetric","requirements":">= 0"}]},"built_at":"2014-02-09T00:00:00.000Z","created_at":"2014-02-09T11:09:17.200Z","description":"Fluentd output plugin to ganglia","downloads_count":1556,"number":"0.0.2","summary":"Fluentd output plugin to ganglia","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-gc","downloads":2719,"version":"0.0.2","version_downloads":1597,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to disable GC and start GC at arbitrary interval","licenses":["MIT"],"metadata":{},"sha":"825e921b21c9c495a25425bb2ad4c0b197f5ac50fffeec5251bfbffa96846c9a","project_uri":"https://rubygems.org/gems/fluent-plugin-gc","gem_uri":"https://rubygems.org/gems/fluent-plugin-gc-0.0.2.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-gc","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gc/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-02-04T00:00:00.000Z","created_at":"2014-02-04T07:40:36.903Z","description":"Fluentd plugin to disable GC and start GC at arbitrary interval","downloads_count":1597,"number":"0.0.2","summary":"Fluentd plugin to disable GC and start GC at arbitrary interval","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-gcloud-pubsub","downloads":4455,"version":"0.0.5","version_downloads":1005,"platform":"ruby","authors":"Masayuki DOI","info":"Google Cloud Pub/Sub input/output plugin for Fluentd event collector","licenses":["MIT"],"metadata":{},"sha":"af2b2b793c74abb33eb09aa386386b97a926f846180adec054d5a12bd154bdbb","project_uri":"https://rubygems.org/gems/fluent-plugin-gcloud-pubsub","gem_uri":"https://rubygems.org/gems/fluent-plugin-gcloud-pubsub-0.0.5.gem","homepage_uri":"https://github.com/mdoi/fluent-plugin-gcloud-pubsub","wiki_uri":"","documentation_uri":"https://github.com/mdoi/fluent-plugin-gcloud-pubsub","mailing_list_uri":"","source_code_uri":"https://github.com/mdoi/fluent-plugin-gcloud-pubsub","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"fluent-plugin-buffer-lightening","requirements":">= 0.0.2"},{"name":"gcloud","requirements":"= 0.6.3"}]},"built_at":"2016-06-10T00:00:00.000Z","created_at":"2016-06-10T15:40:30.965Z","description":"Google Cloud Pub/Sub input/output plugin for Fluentd event collector","downloads_count":1005,"number":"0.0.5","summary":"Google Cloud Pub/Sub input/output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-gcloud-pubsub-custom","downloads":8718,"version":"0.4.6","version_downloads":217,"platform":"ruby","authors":"Yoshihiro MIYAI","info":"Google Cloud Pub/Sub input/output plugin for Fluentd event collector","licenses":["MIT"],"metadata":{},"sha":"f561ef7e7af7bc40ce2cf3dd56e910cc2f2b7591848b2021eb5758f3e4709add","project_uri":"https://rubygems.org/gems/fluent-plugin-gcloud-pubsub-custom","gem_uri":"https://rubygems.org/gems/fluent-plugin-gcloud-pubsub-custom-0.4.6.gem","homepage_uri":"https://github.com/mia-0032/fluent-plugin-gcloud-pubsub-custom","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gcloud-pubsub-custom/0.4.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"google-cloud-pubsub","requirements":"~> 0.24.0"},{"name":"retryable","requirements":"~> 2.0"}]},"built_at":"2017-05-14T00:00:00.000Z","created_at":"2017-05-14T13:08:15.517Z","description":"Google Cloud Pub/Sub input/output plugin for Fluentd event collector","downloads_count":217,"number":"0.4.6","summary":"Google Cloud Pub/Sub input/output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-gcloud-storage","downloads":1599,"version":"0.1.2","version_downloads":1002,"platform":"ruby","authors":"Gergő Sulymosi","info":"Google Cloud Storage output plugin for fluentd event collector","licenses":[],"metadata":{},"sha":"1318cb0d226976c32be17c2ada43d0cbbe0f96f49793d4ffa05080b99ade1bbc","project_uri":"https://rubygems.org/gems/fluent-plugin-gcloud-storage","gem_uri":"https://rubygems.org/gems/fluent-plugin-gcloud-storage-0.1.2.gem","homepage_uri":"https://github.com/trekdemo/fluent-plugin-gcloud-storage","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gcloud-storage/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"> 0.10.42"},{"name":"gcloud","requirements":"~> 0.4.0"},{"name":"httpclient","requirements":"~> 2.6"}]},"built_at":"2015-10-21T00:00:00.000Z","created_at":"2015-10-21T12:57:39.682Z","description":"Google Cloud Storage output plugin for fluentd event collector","downloads_count":1002,"number":"0.1.2","summary":"Google Cloud Storage output plugin for fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-gcs","downloads":1498,"version":"0.3.0","version_downloads":656,"platform":"ruby","authors":"Daichi HIRATA","info":"Google Cloud Storage output plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"3ecd8c7b9a00ebbd2eba817647c81a875e1c4fa4db4f71d80c4329b1a522724b","project_uri":"https://rubygems.org/gems/fluent-plugin-gcs","gem_uri":"https://rubygems.org/gems/fluent-plugin-gcs-0.3.0.gem","homepage_uri":"https://github.com/daichirata/fluent-plugin-gcs","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gcs/0.3.0","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"},{"name":"rr","requirements":"= 1.1.2"},{"name":"test-unit","requirements":">= 3.0.8"},{"name":"test-unit-rr","requirements":">= 1.0.3"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"google-cloud-storage","requirements":"~> 0.23.2"}]},"built_at":"2017-02-28T00:00:00.000Z","created_at":"2017-02-28T01:56:07.210Z","description":"Google Cloud Storage output plugin for Fluentd","downloads_count":656,"number":"0.3.0","summary":"Google Cloud Storage output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-gcs-dustinblackman","downloads":580,"version":"0.3.2","version_downloads":231,"platform":"ruby","authors":"Daichi HIRATA","info":"Google Cloud Storage output plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"e781b3283bd05ddccfcb743e50a704cc720c83dd2a320823e35261bf593d5e94","project_uri":"https://rubygems.org/gems/fluent-plugin-gcs-dustinblackman","gem_uri":"https://rubygems.org/gems/fluent-plugin-gcs-dustinblackman-0.3.2.gem","homepage_uri":"https://github.com/dustinblackman/fluent-plugin-gcs","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gcs-dustinblackman/0.3.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"},{"name":"rr","requirements":"= 1.1.2"},{"name":"test-unit","requirements":">= 3.0.8"},{"name":"test-unit-rr","requirements":">= 1.0.3"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.14.0"},{"name":"google-cloud-storage","requirements":"~> 0.23.2"}]},"built_at":"2017-03-28T00:00:00.000Z","created_at":"2017-03-28T17:44:31.674Z","description":"Google Cloud Storage output plugin for Fluentd","downloads_count":231,"number":"0.3.2","summary":"Google Cloud Storage output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-gelf-hs","downloads":2580,"version":"1.0.2","version_downloads":2201,"platform":"ruby","authors":"Alex Yamauchi, Eric Searcy","info":"Buffered fluentd output plugin to GELF (Graylog2).","licenses":["Apache-2.0"],"metadata":{},"sha":"5fa9b33647a33fcc1e4aaaf26581c2bc1e9c72f948b7b84a4f347e023327dd82","project_uri":"https://rubygems.org/gems/fluent-plugin-gelf-hs","gem_uri":"https://rubygems.org/gems/fluent-plugin-gelf-hs-1.0.2.gem","homepage_uri":"https://github.com/bodhi-space/fluent-plugin-gelf-hs","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gelf-hs/1.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"gelf","requirements":">= 2.0.0"}]},"built_at":"2017-03-17T00:00:00.000Z","created_at":"2017-03-17T18:58:00.695Z","description":"Buffered fluentd output plugin to GELF (Graylog2).","downloads_count":2201,"number":"1.0.2","summary":"Buffered fluentd output plugin to GELF (Graylog2)","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-genhashvalue","downloads":1175,"version":"0.04","version_downloads":361,"platform":"ruby","authors":"m.takemi","info":"generate hash(md5/sha1/sha256/sha512) value","licenses":["MIT"],"metadata":{},"sha":"f503f6636507ab13b000ed8bc2bcd38853f0ac523f641cc6d337e209bec1747c","project_uri":"https://rubygems.org/gems/fluent-plugin-genhashvalue","gem_uri":"https://rubygems.org/gems/fluent-plugin-genhashvalue-0.04.gem","homepage_uri":"https://qos.dev7.net/~masafumi/","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-genhashvalue/0.04","mailing_list_uri":"","source_code_uri":"https://github.com/mtakemi/fluent-plugin-genhashvalue","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[{"name":"base91","requirements":">= 0.0.1"},{"name":"fluentd","requirements":"~> 0.12"}]},"built_at":"2016-11-25T00:00:00.000Z","created_at":"2016-11-25T12:34:45.448Z","description":"generate hash(md5/sha1/sha256/sha512) value","downloads_count":361,"number":"0.04","summary":"generate hash value","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-geoblipper","downloads":16204,"version":"0.0.4.6","version_downloads":7292,"platform":"ruby","authors":"Sean Dick, Change.org","info":"Fluentd plugin to convert ips to latitude/longitude pairs for publication on a specified pubnub channel","licenses":["MIT"],"metadata":{},"sha":"3c49a31686f18a24d67c7c139fd310c8bed378ba6cded4c8fe0cdf29f003ac64","project_uri":"https://rubygems.org/gems/fluent-plugin-geoblipper","gem_uri":"https://rubygems.org/gems/fluent-plugin-geoblipper-0.0.4.6.gem","homepage_uri":"https://github.com/seanmdick/fluent-plugin-geoblipper","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-geoblipper/0.0.4.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"geoip","requirements":">= 0"},{"name":"pubnub","requirements":">= 0"}]},"built_at":"2015-11-13T00:00:00.000Z","created_at":"2015-11-13T17:18:02.995Z","description":"Fluentd plugin to convert ips to latitude/longitude pairs for publication on a specified pubnub channel","downloads_count":7292,"number":"0.0.4.6","summary":"Fluentd plugin to send a buffered list of lat/long pairs to pubnub","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-geoip","downloads":48061,"version":"0.7.0","version_downloads":1342,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd Filter plugin to add information about geographical location of IP addresses with Maxmind GeoIP databases.","licenses":["Apache-2.0"],"metadata":{},"sha":"dc1a86860d518daedc026f1380f27b2d0ae18ac7e46b239068d73e96f70b1ebb","project_uri":"https://rubygems.org/gems/fluent-plugin-geoip","gem_uri":"https://rubygems.org/gems/fluent-plugin-geoip-0.7.0.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-geoip","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-geoip/0.7.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"bundler","requirements":">= 0"},{"name":"geoip2_c","requirements":">= 0"},{"name":"geoip2_compat","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"dig_rb","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-rewrite-tag-name","requirements":">= 0"},{"name":"geoip-c","requirements":">= 0"}]},"built_at":"2017-04-17T00:00:00.000Z","created_at":"2017-04-17T11:04:31.003Z","description":"","downloads_count":1342,"number":"0.7.0","summary":"Fluentd Filter plugin to add information about geographical location of IP addresses with Maxmind GeoIP databases.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-geoip-filter","downloads":3267,"version":"0.3.0","version_downloads":1633,"platform":"ruby","authors":"Yuri Umezaki","info":"Fluentd filter plugin to add geoip","licenses":["Apache-2.0"],"metadata":{},"sha":"2550ada58963a77891d83b0515cd18eadb5b80e407f0e661a1ea3102041286d3","project_uri":"https://rubygems.org/gems/fluent-plugin-geoip-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-geoip-filter-0.3.0.gem","homepage_uri":"https://github.com/bungoume/fluent-plugin-geoip-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-geoip-filter/0.3.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"},{"name":"geoip","requirements":">= 1.5.0"},{"name":"lru_redux","requirements":">= 1.0.0"}]},"built_at":"2016-01-27T00:00:00.000Z","created_at":"2016-01-27T03:56:49.455Z","description":"Fluentd filter plugin to add geoip","downloads_count":1633,"number":"0.3.0","summary":"Fluentd filter plugin to add geoip","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-github-activities","downloads":4290,"version":"0.7.0","version_downloads":244,"platform":"ruby","authors":"YUKI Hiroshi","info":"This provides ability to crawl public activities of users.","licenses":["LGPL-3.0"],"metadata":{},"sha":"5d0a5044dc1ac250eb4d417ccf95d90bced6a1634ae7a7a3cdc6dd639a1e8ea2","project_uri":"https://rubygems.org/gems/fluent-plugin-github-activities","gem_uri":"https://rubygems.org/gems/fluent-plugin-github-activities-0.7.0.gem","homepage_uri":"https://github.com/clear-code/fluent-plugin-github-activities","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-github-activities/0.7.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"packnga","requirements":">= 1.0.1"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-notify","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.13"}]},"built_at":"2017-03-21T00:00:00.000Z","created_at":"2017-03-21T01:02:23.663Z","description":"This provides ability to crawl public activities of users.","downloads_count":244,"number":"0.7.0","summary":"Fluentd plugin to crawl public activities on the GitHub.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-glusterfs","downloads":2268,"version":"1.0.0","version_downloads":2268,"platform":"ruby","authors":"Keisuke Takahashi","info":"Fluentd plugin for GlusterFS","licenses":[],"metadata":{},"sha":"d751ee34f08b1fc09f2dddcd536048db8e197a9430d120d7ff2be363eee25fda","project_uri":"https://rubygems.org/gems/fluent-plugin-glusterfs","gem_uri":"https://rubygems.org/gems/fluent-plugin-glusterfs-1.0.0.gem","homepage_uri":"https://github.com/keithseahus/fluent-plugin-glusterfs","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-glusterfs/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-07-15T00:00:00.000Z","created_at":"2013-07-15T20:21:10.948Z","description":"Fluentd plugin for GlusterFS","downloads_count":2268,"number":"1.0.0","summary":"Fluentd plugin for GlusterFS","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-google-cloud","downloads":55816,"version":"0.6.2","version_downloads":312,"platform":"ruby","authors":"Todd Derr, Alex Robinson","info":" Fluentd output plugin for the Stackdriver Logging API, which will make\n logs viewable in the Developer Console's log viewer and can optionally\n store them in Google Cloud Storage and/or BigQuery.\n This is an official Google Ruby gem.\n","licenses":["Apache-2.0"],"metadata":{},"sha":"fd86419b539076cbc9482bf02e35a1f7522b0268acf5c72ae2d78f3041d8bc7e","project_uri":"https://rubygems.org/gems/fluent-plugin-google-cloud","gem_uri":"https://rubygems.org/gems/fluent-plugin-google-cloud-0.6.2.gem","homepage_uri":"https://github.com/GoogleCloudPlatform/fluent-plugin-google-cloud","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-google-cloud/0.6.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"mocha","requirements":"~> 1.1"},{"name":"rake","requirements":"~> 10.3"},{"name":"rubocop","requirements":"~> 0.35.0"},{"name":"test-unit","requirements":"~> 3.0"},{"name":"webmock","requirements":"~> 1.17"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"},{"name":"google-api-client","requirements":"~> 0.9.0"},{"name":"googleapis-common-protos","requirements":"~> 1.3"},{"name":"googleauth","requirements":"~> 0.4"},{"name":"google-cloud-logging","requirements":"~> 0.23.2"},{"name":"grpc","requirements":"~> 1.0"},{"name":"json","requirements":"~> 1.8"}]},"built_at":"2017-05-09T00:00:00.000Z","created_at":"2017-05-09T18:09:59.545Z","description":" Fluentd output plugin for the Stackdriver Logging API, which will make\n logs viewable in the Developer Console's log viewer and can optionally\n store them in Google Cloud Storage and/or BigQuery.\n This is an official Google Ruby gem.\n","downloads_count":312,"number":"0.6.2","summary":"fluentd output plugin for the Stackdriver Logging API","rubygems_version":">= 0","ruby_version":">= 2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-google-cloud-storage","downloads":4155,"version":"1.0.0","version_downloads":1776,"platform":"ruby","authors":"Hsiu-Fan Wang","info":"Google Cloud Storage fluentd output","licenses":["APLv2"],"metadata":{},"sha":"e44ab1b0705e4cb526298d93d0bab5609cd3b6d4b32602ae378790044d9ef3d3","project_uri":"https://rubygems.org/gems/fluent-plugin-google-cloud-storage","gem_uri":"https://rubygems.org/gems/fluent-plugin-google-cloud-storage-1.0.0.gem","homepage_uri":"https://github.com/hfwang/fluent-plugin-google-cloud-storage","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-google-cloud-storage/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.53"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"fluent-mixin-plaintextformatter","requirements":">= 0.2.1"},{"name":"google-api-client","requirements":"= 0.8.6"},{"name":"mime-types","requirements":">= 3.0"}]},"built_at":"2016-02-10T00:00:00.000Z","created_at":"2016-02-10T04:23:16.440Z","description":"Google Cloud Storage fluentd output","downloads_count":1776,"number":"1.0.0","summary":"Fluentd plugin to write data to Google Cloud Storage","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-google-cloud-storage-out","downloads":7341,"version":"0.1.12","version_downloads":1439,"platform":"ruby","authors":"Hideki Matsuoka","info":"Fluentd out plugin for store to Google Cloud Storage","licenses":["MIT"],"metadata":{},"sha":"964a5f089633083f2886da303dabe01123be4c268c7c0b94dfb6e4ad50522e2a","project_uri":"https://rubygems.org/gems/fluent-plugin-google-cloud-storage-out","gem_uri":"https://rubygems.org/gems/fluent-plugin-google-cloud-storage-out-0.1.12.gem","homepage_uri":"https://github.com/matsuokah/fluent-plugin-google-cloud-storage-out","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-google-cloud-storage-out/0.1.12","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.60"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"google-api-client","requirements":">= 0.9.11"},{"name":"googleauth","requirements":">= 0.5"},{"name":"mime-types","requirements":">= 3.0"}]},"built_at":"2016-08-01T00:00:00.000Z","created_at":"2016-08-01T07:41:53.668Z","description":"","downloads_count":1439,"number":"0.1.12","summary":"Fluentd out plugin for store to Google Cloud Storage","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-google-sheets","downloads":432,"version":"0.1.0","version_downloads":432,"platform":"ruby","authors":"Fumiaki MATSUSHIMA","info":"Fluentd output plugin to store data on Google Sheets.","licenses":[],"metadata":{},"sha":"59286763ae4921ee15415fb39bd0811244013679184715e78feb402a6936fa03","project_uri":"https://rubygems.org/gems/fluent-plugin-google-sheets","gem_uri":"https://rubygems.org/gems/fluent-plugin-google-sheets-0.1.0.gem","homepage_uri":"https://github.com/esminc/fluent-plugin-google-sheets","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-google-sheets/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"minitest","requirements":"~> 5.0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"google_drive","requirements":">= 0"}]},"built_at":"2016-09-05T00:00:00.000Z","created_at":"2016-09-05T08:22:57.825Z","description":"Fluentd output plugin to store data on Google Sheets.","downloads_count":432,"number":"0.1.0","summary":"Fluentd output plugin to store data on Google Sheets.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-graphite","downloads":9981,"version":"0.0.7","version_downloads":333,"platform":"ruby","authors":"Satoshi SUZUKI","info":"fluentd output plugin to send metrics to graphite","licenses":["MIT"],"metadata":{},"sha":"6375eceeca8591f49b8deae87e7b0de7728d509d32381effaa24ecd29bb296c5","project_uri":"https://rubygems.org/gems/fluent-plugin-graphite","gem_uri":"https://rubygems.org/gems/fluent-plugin-graphite-0.0.7.gem","homepage_uri":"https://github.com/studio3104/fluent-plugin-graphite","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-graphite/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.2.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.17"},{"name":"fluent-mixin-rewrite-tag-name","requirements":">= 0"},{"name":"graphite-api","requirements":">= 0"}]},"built_at":"2017-04-26T00:00:00.000Z","created_at":"2017-04-26T05:20:12.456Z","description":"fluentd output plugin to send metrics to graphite","downloads_count":333,"number":"0.0.7","summary":"fluentd output plugin to send metrics to graphite","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-grassland","downloads":8452,"version":"0.1.2","version_downloads":866,"platform":"ruby","authors":"Ripplation Inc.","info":"Output filter plugin for Grassland","licenses":["MIT"],"metadata":{},"sha":"89410467d11ea3883d8030e69687f21e219507918b74d041b0eeb15592fd925c","project_uri":"https://rubygems.org/gems/fluent-plugin-grassland","gem_uri":"https://rubygems.org/gems/fluent-plugin-grassland-0.1.2.gem","homepage_uri":"http://www.ripplation.co.jp","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-grassland/0.1.2","mailing_list_uri":"","source_code_uri":"https://github.com/Ripplation/fluent-plugin-grassland","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"aws-sdk","requirements":"~> 1.40.3"},{"name":"eventmachine","requirements":"~> 1.0.3"},{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"}]},"built_at":"2015-10-13T00:00:00.000Z","created_at":"2015-10-13T03:50:46.559Z","description":"Output filter plugin for Grassland","downloads_count":866,"number":"0.1.2","summary":"Output filter plugin for Grassland","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-graylog","downloads":2289,"version":"1.0.1","version_downloads":2288,"platform":"ruby","authors":"Funding Circle","info":"Send logging information in JSON format via TCP to an instance of GrayLog","licenses":["BSD-3-Clause"],"metadata":{},"sha":"ae15760d566990d8285bda19ef36be86faa27fb6a9d642cdf3dff23a3a9c3224","project_uri":"https://rubygems.org/gems/fluent-plugin-graylog","gem_uri":"https://rubygems.org/gems/fluent-plugin-graylog-1.0.1.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-graylog/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":"~> 0.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.3"},{"name":"rubocop","requirements":"~> 0.32"},{"name":"test-unit","requirements":"~> 3.1"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"}]},"built_at":"2015-10-14T00:00:00.000Z","created_at":"2015-10-14T14:26:27.312Z","description":"Send logging information in JSON format via TCP to an instance of GrayLog","downloads_count":2288,"number":"1.0.1","summary":"GrayLog output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-gree_community","downloads":4724,"version":"0.0.3","version_downloads":1823,"platform":"ruby","authors":"todesking","info":"Fluentd input plugin, source from GREE community","licenses":[],"metadata":{},"sha":"a183bbe59c5050bd26479f7afae54c67d55fcddf12c99f8feb1a983f0aa5f803","project_uri":"https://rubygems.org/gems/fluent-plugin-gree_community","gem_uri":"https://rubygems.org/gems/fluent-plugin-gree_community-0.0.3.gem","homepage_uri":"https://github.com/todesking/fluent-plugin-gree_community","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gree_community/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"gree-community","requirements":">= 0.0.4"},{"name":"pit","requirements":">= 0"}]},"built_at":"2013-04-03T00:00:00.000Z","created_at":"2013-04-03T09:41:06.961Z","description":null,"downloads_count":1823,"number":"0.0.3","summary":"Fluentd input plugin, source from GREE community","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-grep","downloads":347103,"version":"0.3.4","version_downloads":321985,"platform":"ruby","authors":"Naotoshi Seo","info":"fluentd plugin to grep messages","licenses":["MIT"],"metadata":{},"sha":"079a5c7119370e87db37479c8499eeaf972427bfa37088d0f88e1bf255ca118f","project_uri":"https://rubygems.org/gems/fluent-plugin-grep","gem_uri":"https://rubygems.org/gems/fluent-plugin-grep-0.3.4.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-grep","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-grep/0.3.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-05-09T00:00:00.000Z","created_at":"2015-05-09T19:13:01.742Z","description":"fluentd plugin to grep messages","downloads_count":321985,"number":"0.3.4","summary":"fluentd plugin to grep messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-grepcounter","downloads":47505,"version":"0.6.0","version_downloads":2298,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to count the number of matched messages, and emit if exceeds the threshold","licenses":["MIT"],"metadata":{},"sha":"d5b675d07672be60777dfc9039317dfa34eefeb4729868d7f31f086f74fca4da","project_uri":"https://rubygems.org/gems/fluent-plugin-grepcounter","gem_uri":"https://rubygems.org/gems/fluent-plugin-grepcounter-0.6.0.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-grepcounter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-grepcounter/0.6.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"coveralls","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"rspec-its","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.5"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-01-23T00:00:00.000Z","created_at":"2017-01-23T06:48:02.828Z","description":"Fluentd plugin to count the number of matched messages, and emit if exceeds the threshold","downloads_count":2298,"number":"0.6.0","summary":"Fluentd plugin to count the number of matched messages, and emit if exceeds the threshold","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-grepcount-filter","downloads":1011,"version":"0.0.1","version_downloads":1011,"platform":"ruby","authors":"Shuichi Ohsawa","info":"Fluentd filter plugin to count matched messages and stream if exceed the threshold.","licenses":["MIT"],"metadata":{},"sha":"892ecfb02b676085c6c324ba225cefe3fe670ebbec0612a8888e1e96718e1224","project_uri":"https://rubygems.org/gems/fluent-plugin-grepcount-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-grepcount-filter-0.0.1.gem","homepage_uri":"https://github.com/ohsawa0515/fluent-plugin-grepcount-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-grepcount-filter/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2016-05-30T00:00:00.000Z","created_at":"2016-05-30T09:38:15.071Z","description":"Fluentd filter plugin to count matched messages and stream if exceed the threshold.","downloads_count":1011,"number":"0.0.1","summary":"Fluentd filter plugin to count matched messages and stream if exceed the threshold.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-grok-parser","downloads":95915,"version":"2.1.3","version_downloads":4002,"platform":"ruby","authors":"kiyoto, Kenji Okimoto","info":"Fluentd plugin to support Logstash-inspired Grok format for parsing logs","licenses":["Apache-2.0"],"metadata":{},"sha":"a7042db1c109fd89abdc40d1202c0e2216de9d36ef21263cb7241ebc9f9ad929","project_uri":"https://rubygems.org/gems/fluent-plugin-grok-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-grok-parser-2.1.3.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-grok-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-grok-parser/2.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.5"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.6"}]},"built_at":"2017-03-22T00:00:00.000Z","created_at":"2017-03-22T01:14:12.445Z","description":"","downloads_count":4002,"number":"2.1.3","summary":"Fluentd plugin to support Logstash-inspired Grok format for parsing logs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-grok_pure-parser","downloads":3252,"version":"0.0.8","version_downloads":2432,"platform":"ruby","authors":"Alex Hornung","info":"fluentd parser plugin to be able to use Grok patterns","licenses":["MIT"],"metadata":{},"sha":"ea4fdc7fb7f1623d91e5529b5cab3ec7224a0080096fded38eef9503dee08f05","project_uri":"https://rubygems.org/gems/fluent-plugin-grok_pure-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-grok_pure-parser-0.0.8.gem","homepage_uri":"https://github.com/bwalex/fluent-plugin-grok_pure-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-grok_pure-parser/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":"~> 10.4.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"},{"name":"jls-grok","requirements":"~> 0.11.0"}]},"built_at":"2015-01-06T00:00:00.000Z","created_at":"2015-01-06T20:16:32.319Z","description":"fluentd parser plugin to be able to use Grok patterns","downloads_count":2432,"number":"0.0.8","summary":"fluentd parser plugin to be able to use Grok patterns","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-groonga","downloads":15212,"version":"1.2.1","version_downloads":169,"platform":"ruby","authors":"Kouhei Sutou","info":"There are two usages. 1) Store data into Groonga. 2) Implement Groonga replication system. See documentation for details.","licenses":["LGPL-2.1"],"metadata":{},"sha":"b8d10641a542d68d276314b68714c1b7645058b86324747b07173d04a831a910","project_uri":"https://rubygems.org/gems/fluent-plugin-groonga","gem_uri":"https://rubygems.org/gems/fluent-plugin-groonga-1.2.1.gem","homepage_uri":"https://github.com/groonga/fluent-plugin-groonga","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-groonga/1.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"packnga","requirements":">= 1.0.1"},{"name":"rake","requirements":">= 0"},{"name":"redcarpet","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-notify","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"},{"name":"groonga-client","requirements":">= 0.1.0"},{"name":"groonga-command-parser","requirements":">= 0"}]},"built_at":"2017-05-02T00:00:00.000Z","created_at":"2017-05-02T06:05:07.667Z","description":"There are two usages. 1) Store data into Groonga. 2) Implement Groonga replication system. See documentation for details.","downloads_count":169,"number":"1.2.1","summary":"Fluentd plugin to store data into Groonga and implement Groonga replication system.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-groonga-query-log","downloads":1276,"version":"1.0.0","version_downloads":1276,"platform":"ruby","authors":"Kouhei Sutou","info":"You can detect slow query in real time by using this plugin.","licenses":["LGPLv3"],"metadata":{},"sha":"cec24b633adbb86ee66b4b219cf02e82907ae96e1fcad006b50b1e6df329c437","project_uri":"https://rubygems.org/gems/fluent-plugin-groonga-query-log","gem_uri":"https://rubygems.org/gems/fluent-plugin-groonga-query-log-1.0.0.gem","homepage_uri":"https://github.com/groonga/fluent-plugin-groonga-query-log","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-groonga-query-log/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"packnga","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"groonga-query-log","requirements":">= 0"}]},"built_at":"2015-08-12T00:00:00.000Z","created_at":"2015-08-12T08:30:58.270Z","description":"You can detect slow query in real time by using this plugin.","downloads_count":1276,"number":"1.0.0","summary":"Fluentd plugin to parse Groonga's query log.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-groupcounter","downloads":9147,"version":"0.2.3","version_downloads":2331,"platform":"ruby","authors":"Ryosuke IWANAGA, Naotoshi Seo","info":"Fluentd plugin to count like SELECT COUNT(\\*) GROUP BY","licenses":["Apache"],"metadata":{},"sha":"6f105dc3db043f47e32139345b122519bf7f7c14189c5001f00b517ff9a85c10","project_uri":"https://rubygems.org/gems/fluent-plugin-groupcounter","gem_uri":"https://rubygems.org/gems/fluent-plugin-groupcounter-0.2.3.gem","homepage_uri":"https://github.com/riywo/fluent-plugin-groupcounter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-groupcounter/0.2.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-12-27T00:00:00.000Z","created_at":"2013-12-27T16:56:11.919Z","description":"Fluentd plugin to count like SELECT COUNT(\\*) GROUP BY","downloads_count":2331,"number":"0.2.3","summary":"Fluentd plugin to count like SELECT COUNT(\\*) GROUP BY","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-growl","downloads":9923,"version":"0.0.5","version_downloads":2300,"platform":"ruby","authors":"TAKEI Yuya","info":"Growl output plugin for Fluent Event Collector","licenses":null,"metadata":{},"sha":"55a0c3098c8b5643642841a9eddde45d839bed1a7eecac397b16462a23bd2483","project_uri":"https://rubygems.org/gems/fluent-plugin-growl","gem_uri":"https://rubygems.org/gems/fluent-plugin-growl-0.0.5.gem","homepage_uri":"https://github.com/takei-yuya/fluent-plugin-growl","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-growl/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"ruby-growl","requirements":"~> 4.0"}]},"built_at":"2012-04-22T15:00:00.000Z","created_at":"2012-04-23T01:31:30.702Z","description":null,"downloads_count":2300,"number":"0.0.5","summary":"Growl output plugin for Fluent Event Collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-growthforecast","downloads":46225,"version":"1.0.1","version_downloads":445,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"For GrowthForecast, see http://kazeburo.github.com/GrowthForecast/","licenses":["Apache-2.0"],"metadata":{},"sha":"50b107753388d14dc6f07e48c45634b3c82e8f3d6734ed632d66c017ce61ba40","project_uri":"https://rubygems.org/gems/fluent-plugin-growthforecast","gem_uri":"https://rubygems.org/gems/fluent-plugin-growthforecast-1.0.1.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-growthforecast","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-growthforecast/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.0.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"},{"name":"resolve-hostname","requirements":">= 0.0.4"}]},"built_at":"2017-01-31T00:00:00.000Z","created_at":"2017-01-31T11:37:52.773Z","description":"For GrowthForecast, see http://kazeburo.github.com/GrowthForecast/","downloads_count":445,"number":"1.0.1","summary":"Fluentd output plugin to post numbers to GrowthForecast (by kazeburo)","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-gstore","downloads":2366,"version":"0.3.2","version_downloads":2366,"platform":"ruby","authors":"Tatsuo Ikeda","info":"Google Cloud Storage output plugin for the Fluent.","licenses":null,"metadata":{},"sha":"12b588c0ae80523a753b8f9b0114d4a57a3a7be85648e74e5fdb9dd66de07047","project_uri":"https://rubygems.org/gems/fluent-plugin-gstore","gem_uri":"https://rubygems.org/gems/fluent-plugin-gstore-0.3.2.gem","homepage_uri":"https://github.com/ikeikeikeike/fluent-plugin-gstore","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gstore/0.3.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 1.0.0"},{"name":"jeweler","requirements":">= 1.8.4"}],"runtime":[{"name":"gstore","requirements":"= 0.2.1"}]},"built_at":"2012-08-10T00:00:00.000Z","created_at":"2012-08-10T08:52:25.375Z","description":"Google Cloud Storage output plugin for the Fluent.","downloads_count":2366,"number":"0.3.2","summary":"Google Cloud Storage output plugin for the Fluent.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-gsvsoc_pubsub","downloads":408,"version":"0.1.0","version_downloads":408,"platform":"ruby","authors":"pivelpin","info":"A plugin for the Fluentd event collection agent that provides a coupling between a GuardSight SPOP and Google Cloud Pub/Sub","licenses":["GPL-3.0"],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"265d7ae9e53105f3992a81f0ecbb99dee82b56f97e7e08b644d317acaac3e090","project_uri":"https://rubygems.org/gems/fluent-plugin-gsvsoc_pubsub","gem_uri":"https://rubygems.org/gems/fluent-plugin-gsvsoc_pubsub-0.1.0.gem","homepage_uri":"https://github.com/guardsight/fluent-plugin-gsvsoc_pubsub","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-gsvsoc_pubsub/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"minitest","requirements":"~> 5.9"},{"name":"rake","requirements":"<= 10.2.4"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.29"},{"name":"google-api-client","requirements":"~> 0.9.11"},{"name":"googleauth","requirements":"~> 0.5.1"},{"name":"parallel","requirements":"~> 1.9"}]},"built_at":"2016-09-20T00:00:00.000Z","created_at":"2016-09-20T05:40:45.355Z","description":"A plugin for the Fluentd event collection agent that provides a coupling between a GuardSight SPOP and Google Cloud Pub/Sub","downloads_count":408,"number":"0.1.0","summary":"Fluentd plugin for Google Cloud Pub/Sub","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-haproxy_stats","downloads":1638,"version":"0.1.1","version_downloads":966,"platform":"ruby","authors":"Yohei Kawahara","info":"Fluentd plugin fo HAProxy info and stats","licenses":[],"metadata":{},"sha":"b8cc9d8ac55e767bd9af5d5d5b837cabc7e759c9310743c6409ff798dd6e5e64","project_uri":"https://rubygems.org/gems/fluent-plugin-haproxy_stats","gem_uri":"https://rubygems.org/gems/fluent-plugin-haproxy_stats-0.1.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-haproxy_stats/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"haproxy","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-06-27T00:00:00.000Z","created_at":"2015-06-27T07:53:00.022Z","description":"Fluentd plugin fo HAProxy info and stats","downloads_count":966,"number":"0.1.1","summary":"Fluentd plugin fo HAProxy info and stats","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-hash-forward","downloads":15020,"version":"0.3.5","version_downloads":4131,"platform":"ruby","authors":"Ryosuke IWANAGA, Naotoshi Seo","info":"Fluentd plugin to keep forwarding messsages of a specific tag pattern to a specific node","licenses":["MIT"],"metadata":{},"sha":"bd877509496859da9a28ca07163cf1746fb7abc12e09d256403f028fe992f352","project_uri":"https://rubygems.org/gems/fluent-plugin-hash-forward","gem_uri":"https://rubygems.org/gems/fluent-plugin-hash-forward-0.3.5.gem","homepage_uri":"https://github.com/riywo/fluent-plugin-hash-forward","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hash-forward/0.3.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-03-23T00:00:00.000Z","created_at":"2014-03-23T15:15:53.913Z","description":"Fluentd plugin to keep forwarding messsages of a specific tag pattern to a specific node","downloads_count":4131,"number":"0.3.5","summary":"Fluentd plugin to keep forwarding messsages of a specific tag pattern to a specific node","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-has-keys","downloads":584,"version":"0.0.1","version_downloads":584,"platform":"ruby","authors":"Trickey","info":"Fluentd plugin to filter records without essential keys","licenses":["MIT"],"metadata":{},"sha":"0a179af2346cec0ede6a51e163091b4c951ab1e67fdaaf88590fa4bff33e0420","project_uri":"https://rubygems.org/gems/fluent-plugin-has-keys","gem_uri":"https://rubygems.org/gems/fluent-plugin-has-keys-0.0.1.gem","homepage_uri":"https://github.com/TrickyMonkey/fluent-plugin-has-keys","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-has-keys/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.0"}]},"built_at":"2016-05-07T00:00:00.000Z","created_at":"2016-05-07T06:15:13.625Z","description":"Fluentd plugin to filter records without essential keys","downloads_count":584,"number":"0.0.1","summary":"Fluentd plugin to filter records without essential keys","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-hato","downloads":1924,"version":"0.0.1","version_downloads":1924,"platform":"ruby","authors":"Kentaro Kuribayashi","info":"A fluent plugin to send messages to Hato","licenses":["MIT"],"metadata":{},"sha":"57bd21ea7a5ee11149a00ae7bec34b349c0c97903a5888a515a963c2598fa5de","project_uri":"https://rubygems.org/gems/fluent-plugin-hato","gem_uri":"https://rubygems.org/gems/fluent-plugin-hato-0.0.1.gem","homepage_uri":"http://github.com/kentaro/fluent-plugin-hato","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hato/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"hato","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[]},"built_at":"2013-09-11T00:00:00.000Z","created_at":"2013-09-11T16:04:37.618Z","description":"A fluent plugin to send messages to Hato","downloads_count":1924,"number":"0.0.1","summary":"A fluent plugin to send messages to Hato","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-hatohol","downloads":1397,"version":"1.0.0","version_downloads":1397,"platform":"ruby","authors":"Project Hatohol","info":"You can integrated log monitoring system with Hatohol","licenses":["LGPL-2.1+"],"metadata":{},"sha":"ae0b42dbf833080761ffb302ee95f87fe3d82c7a351cb57cfa50782dc234e377","project_uri":"https://rubygems.org/gems/fluent-plugin-hatohol","gem_uri":"https://rubygems.org/gems/fluent-plugin-hatohol-1.0.0.gem","homepage_uri":"https://github.com/project-hatohol/fluent-plugin-hatohol","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hatohol/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"kramdown","requirements":">= 0"},{"name":"packnga","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"bunny","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-09-26T00:00:00.000Z","created_at":"2014-09-26T02:26:59.033Z","description":"You can integrated log monitoring system with Hatohol","downloads_count":1397,"number":"1.0.0","summary":"A Fluentd plugin to send events to Hatohol","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-hbase","downloads":5595,"version":"0.1.2","version_downloads":2454,"platform":"ruby","authors":"KUOKA Yusuke","info":"HBase output plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"6223f6e7a8d2d4ec4954fc226b0e9c5a6321b5d41cd11806439bb2d746a2013a","project_uri":"https://rubygems.org/gems/fluent-plugin-hbase","gem_uri":"https://rubygems.org/gems/fluent-plugin-hbase-0.1.2.gem","homepage_uri":"https://github.com/Furyu/fluent-plugin-hbase","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hbase/0.1.2","mailing_list_uri":"","source_code_uri":"https://github.com/Furyu/fluent-plugin-hbase","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"massive_record","requirements":"~> 0.2.2"}]},"built_at":"2012-12-11T00:00:00.000Z","created_at":"2012-12-11T11:39:08.033Z","description":"HBase output plugin for Fluent event collector","downloads_count":2454,"number":"0.1.2","summary":"HBase output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-hekk_redshift","downloads":3187,"version":"0.0.5","version_downloads":1785,"platform":"ruby","authors":"Masashi Miyazaki","info":"Amazon Redshift output plugin for Fluentd","licenses":["APLv2"],"metadata":{},"sha":"5b3c6d4292f9ce3cd9f3de4690bb4d5a153b185bf20f6603abc8830c796d02ee","project_uri":"https://rubygems.org/gems/fluent-plugin-hekk_redshift","gem_uri":"https://rubygems.org/gems/fluent-plugin-hekk_redshift-0.0.5.gem","homepage_uri":"https://github.com/hekk/fluent-plugin-redshift","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hekk_redshift/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.3.1"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"aws-sdk","requirements":">= 1.6.3"},{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"pg","requirements":"~> 0.16.0"}]},"built_at":"2013-09-12T00:00:00.000Z","created_at":"2013-09-12T10:18:14.201Z","description":"Amazon Redshift output plugin for Fluentd","downloads_count":1785,"number":"0.0.5","summary":"Amazon Redshift output plugin for Fluentd","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-heroku-postgres","downloads":4875,"version":"0.0.5","version_downloads":1475,"platform":"ruby","authors":"Naohiro Sakuma","info":"This gem is fluent plugin to insert on Heroku Postgre.","licenses":["MIT"],"metadata":{},"sha":"c37e076512ece07f196106d1024aa54befb5e6698208737cc5b88fdc34394c71","project_uri":"https://rubygems.org/gems/fluent-plugin-heroku-postgres","gem_uri":"https://rubygems.org/gems/fluent-plugin-heroku-postgres-0.0.5.gem","homepage_uri":"https://github.com/sakuma/fluent-plugin-heroku-postgres","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-heroku-postgres/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"pry","requirements":"~> 0"},{"name":"rake","requirements":"~> 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"},{"name":"pg","requirements":"~> 0.17"}]},"built_at":"2014-06-26T00:00:00.000Z","created_at":"2014-06-26T07:42:06.650Z","description":"This gem is fluent plugin to insert on Heroku Postgre.","downloads_count":1475,"number":"0.0.5","summary":"fluent plugin to insert on Heroku Postgre.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-heroku-syslog","downloads":4738,"version":"0.1.1","version_downloads":2745,"platform":"ruby","authors":"Kazuyuki Honda","info":"fluent plugin to drain heroku syslog","licenses":["APLv2"],"metadata":{},"sha":"77745475da9c539af3bd0cc04ac4d88fe48f2476d7abed9f5db7980d458f4270","project_uri":"https://rubygems.org/gems/fluent-plugin-heroku-syslog","gem_uri":"https://rubygems.org/gems/fluent-plugin-heroku-syslog-0.1.1.gem","homepage_uri":"https://github.com/hakobera/fluent-plugin-heroku-syslog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-heroku-syslog/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.55"}]},"built_at":"2015-02-19T00:00:00.000Z","created_at":"2015-02-19T09:02:14.216Z","description":"fluent plugin to drain heroku syslog","downloads_count":2745,"number":"0.1.1","summary":"fluent plugin to drain heroku syslog","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-hipchat","downloads":24659,"version":"0.3.0","version_downloads":228,"platform":"ruby","authors":"Yuichi Tateno","info":"fluent HipChat plugin","licenses":[],"metadata":{},"sha":"34ecb77e1f34f72d35d656ea4bd2450bc209316fae682a1e77b27a95e18a166a","project_uri":"https://rubygems.org/gems/fluent-plugin-hipchat","gem_uri":"https://rubygems.org/gems/fluent-plugin-hipchat-0.3.0.gem","homepage_uri":"https://github.com/hotchpotch/fluent-plugin-hipchat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hipchat/0.3.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"test-unit-rr","requirements":">= 1.0.5"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.0"},{"name":"hipchat-api","requirements":">= 1.0.0"}]},"built_at":"2017-04-12T00:00:00.000Z","created_at":"2017-04-12T01:38:24.256Z","description":"fluent HipChat plugin","downloads_count":228,"number":"0.3.0","summary":"fluent HipChat plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-histogram","downloads":10150,"version":"0.2.4","version_downloads":1582,"platform":"ruby","authors":"Yusuke SHIMIZU","info":"Combine inputs data and make histogram which helps to detect a hotspot.","licenses":["APLv2"],"metadata":{},"sha":"4be167e18db459204f646d21b7e6cd3c0499e4a3ee0d9eef155562c753c00013","project_uri":"https://rubygems.org/gems/fluent-plugin-histogram","gem_uri":"https://rubygems.org/gems/fluent-plugin-histogram-0.2.4.gem","homepage_uri":"https://github.com/karahiyo/fluent-plugin-histogram","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-histogram/0.2.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"fluentd","requirements":"~> 0.10.9"},{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluent-mixin-config-placeholders","requirements":"~> 0.2.3"}]},"built_at":"2014-02-06T00:00:00.000Z","created_at":"2014-02-06T12:06:50.850Z","description":"Combine inputs data and make histogram which helps to detect a hotspot.","downloads_count":1582,"number":"0.2.4","summary":"Combine inputs data and make histogram which helps to detect a hotspot.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-honeycomb","downloads":1307,"version":"0.4.0","version_downloads":193,"platform":"ruby","authors":"The Honeycomb.io Team","info":"Fluentd output plugin for Honeycomb.io","licenses":["Apache-2.0"],"metadata":{},"sha":"4abef434f68447b26591f5fb8de564d5fa392727a9f493f1d32d92cd15ce1d43","project_uri":"https://rubygems.org/gems/fluent-plugin-honeycomb","gem_uri":"https://rubygems.org/gems/fluent-plugin-honeycomb-0.4.0.gem","homepage_uri":"https://github.com/honeycombio/fluent-plugin-honeycomb","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-honeycomb/0.4.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bump","requirements":">= 0"},{"name":"bundler","requirements":"~> 1.7"},{"name":"coveralls","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"simplecov","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":">= 0"},{"name":"webmock","requirements":"~> 2.1"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"},{"name":"http","requirements":"~> 2.0"}]},"built_at":"2017-02-07T00:00:00.000Z","created_at":"2017-04-19T17:35:46.312Z","description":"Fluentd output plugin for Honeycomb.io","downloads_count":193,"number":"0.4.0","summary":"Fluentd output plugin for Honeycomb.io","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-hoop","downloads":9715,"version":"0.1.4","version_downloads":2371,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"This plugin doesn't support Apache Hadoop's HttpFs. See fluent-plugin-webhdfs.","licenses":null,"metadata":{},"sha":"f2fb353d6e7730494bfe283512f8c10d4c3445a6a66dfaa73f5c306e4d736c21","project_uri":"https://rubygems.org/gems/fluent-plugin-hoop","gem_uri":"https://rubygems.org/gems/fluent-plugin-hoop-0.1.4.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-hoop","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hoop/0.1.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"jeweler","requirements":"~> 1.6.4"},{"name":"rake","requirements":">= 0.9.2"},{"name":"shoulda","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.8"},{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-plaintextformatter","requirements":">= 0"},{"name":"rdoc","requirements":">= 0"}]},"built_at":"2012-07-13T00:00:00.000Z","created_at":"2012-07-13T10:58:42.364Z","description":"This plugin doesn't support Apache Hadoop's HttpFs. See fluent-plugin-webhdfs.","downloads_count":2371,"number":"0.1.4","summary":"Cloudera Hoop (Hadoop HDFS HTTP Proxy) plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-hostname","downloads":113070,"version":"0.0.2","version_downloads":111435,"platform":"ruby","authors":"Tatsuya Fukata","info":"Fluentd plugin put the hostname in the data","licenses":[],"metadata":{},"sha":"e4286754b469f1633b480232d285dc3c2068cb33d013ee16f129a39da0046749","project_uri":"https://rubygems.org/gems/fluent-plugin-hostname","gem_uri":"https://rubygems.org/gems/fluent-plugin-hostname-0.0.2.gem","homepage_uri":"https://github.com/fukata/fluent-plugin-hostname","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hostname/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-05-16T00:00:00.000Z","created_at":"2013-05-16T04:32:45.593Z","description":"","downloads_count":111435,"number":"0.0.2","summary":"Fluentd plugin put the hostname in the data","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-hrforecast","downloads":2057,"version":"0.0.2","version_downloads":881,"platform":"ruby","authors":"do-aki","info":"For HRForecast","licenses":["APLv2"],"metadata":{},"sha":"df05f8cd85d15053fdf3a38ab353091915f43c33a789fa4b8f5934cffda20983","project_uri":"https://rubygems.org/gems/fluent-plugin-hrforecast","gem_uri":"https://rubygems.org/gems/fluent-plugin-hrforecast-0.0.2.gem","homepage_uri":"https://github.com/do-aki/fluent-plugin-hrforecast","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-hrforecast/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"coveralls","requirements":">= 0"},{"name":"net-empty_port","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.0.0"}],"runtime":[{"name":"fluent-plugin-growthforecast","requirements":">= 0"}]},"built_at":"2015-09-25T00:00:00.000Z","created_at":"2015-09-25T07:51:56.969Z","description":"For HRForecast","downloads_count":881,"number":"0.0.2","summary":"Fluentd output plugin to post to HRForecast","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http","downloads":1630,"version":"0.4.2","version_downloads":137,"platform":"ruby","authors":"Konstantin","info":"Fluentd output plugin that sends event records via HTTP","licenses":["Apache-2.0"],"metadata":{},"sha":"446515fa0abc77601ea1138c0c605a55c2ffc9cf2b3954d66ef5efd5cd051cd0","project_uri":"https://rubygems.org/gems/fluent-plugin-http","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-0.4.2.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http/0.4.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"pry","requirements":"~> 0.10"},{"name":"rake","requirements":"~> 11.3"},{"name":"rubocop","requirements":"~> 0.45"},{"name":"test-unit","requirements":"~> 3.2"},{"name":"webmock","requirements":"~> 2.1"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"},{"name":"oj","requirements":">= 0"}]},"built_at":"2017-05-16T00:00:00.000Z","created_at":"2017-05-16T10:56:30.175Z","description":"","downloads_count":137,"number":"0.4.2","summary":"Fluentd output plugin that sends event records via HTTP","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http-enhanced","downloads":8470,"version":"0.0.5","version_downloads":806,"platform":"ruby","authors":"Abhishek Parolkar","info":"Enhanced HTTP input plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"0748853b3d9eead63a13245bb2eb0c0aa7f793b3a6c7cb593ac17baad2e84538","project_uri":"https://rubygems.org/gems/fluent-plugin-http-enhanced","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-enhanced-0.0.5.gem","homepage_uri":"https://github.com/parolkar/fluent-plugin-http-enhanced","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http-enhanced/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.8"}]},"built_at":"2015-12-22T00:00:00.000Z","created_at":"2015-12-22T02:36:44.193Z","description":"Enhanced HTTP input plugin for Fluent event collector","downloads_count":806,"number":"0.0.5","summary":"Enhanced HTTP input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http-ex","downloads":3912,"version":"0.0.3","version_downloads":1393,"platform":"ruby","authors":"hiro-su","info":"fluent plugin to accept multiple json/msgpack events in HTTP request","licenses":[],"metadata":{},"sha":"026027d030a1fabef0374a861f912d6a01a23b3c6ae4cc7acfb33cb86f4e4272","project_uri":"https://rubygems.org/gems/fluent-plugin-http-ex","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-ex-0.0.3.gem","homepage_uri":"https://github.com/hiro-su/fluent-plugin-http-ex","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http-ex/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"}]},"built_at":"2015-04-16T00:00:00.000Z","created_at":"2015-04-16T15:09:19.647Z","description":"fluent plugin to accept multiple json/msgpack events in HTTP request","downloads_count":1393,"number":"0.0.3","summary":"fluent plugin to accept multiple json/msgpack events in HTTP request","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http_file_upload","downloads":2083,"version":"0.1.3","version_downloads":678,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"This fluentd output plugin sends data as files, to HTTP servers which provides features for file uploaders.","licenses":["Apache-2.0"],"metadata":{},"sha":"7540051ca814e8a661a7ca159a561ffce93116ab5376f660ee1870d49b28168f","project_uri":"https://rubygems.org/gems/fluent-plugin-http_file_upload","gem_uri":"https://rubygems.org/gems/fluent-plugin-http_file_upload-0.1.3.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-http_file_upload","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http_file_upload/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.10"},{"name":"httpclient","requirements":"~> 2.6"}]},"built_at":"2016-03-04T00:00:00.000Z","created_at":"2016-03-04T21:53:52.575Z","description":"This fluentd output plugin sends data as files, to HTTP servers which provides features for file uploaders.","downloads_count":678,"number":"0.1.3","summary":"Fluentd output plugin to send buffered data to http servers as HTTP file upload","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http_forward","downloads":1146,"version":"0.1.0","version_downloads":1146,"platform":"ruby","authors":"Jonathan Serafini","info":"A buffered HTTP batching output for Fluentd","licenses":[],"metadata":{},"sha":"94ec62066314ad9e6857eea36443546e7b20d8798589116a71b6f82508dce43c","project_uri":"https://rubygems.org/gems/fluent-plugin-http_forward","gem_uri":"https://rubygems.org/gems/fluent-plugin-http_forward-0.1.0.gem","homepage_uri":"https://github.com/JonathanSerafini/fluent-plugin-http_forward","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http_forward/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.0"},{"name":"http","requirements":"< 3.0.0, >= 2.0.0"}]},"built_at":"2016-06-08T00:00:00.000Z","created_at":"2016-06-08T16:28:00.962Z","description":"A buffered HTTP batching output for Fluentd","downloads_count":1146,"number":"0.1.0","summary":"A buffered HTTP batching output for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http-heartbeat","downloads":2183,"version":"0.0.4","version_downloads":1713,"platform":"ruby","authors":"Junjie Chen","info":"Fluentd input plugin that responses with HTTP status 200. Can be used for elb healthcheck.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"c99bb7cd7fb84c734dca7d7db66bc29a9e98b5d47c29beb6ee95f783910ca872","project_uri":"https://rubygems.org/gems/fluent-plugin-http-heartbeat","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-heartbeat-0.0.4.gem","homepage_uri":"https://github.com/Jackyjjc/fluent-plugin-http-heartbeat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http-heartbeat/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"cool.io","requirements":"< 1.5.0, >= 1.2.0"},{"name":"fluentd","requirements":"< 2, >= 0.12.0"}]},"built_at":"2016-02-28T00:00:00.000Z","created_at":"2016-02-28T02:10:15.311Z","description":"Fluentd input plugin that responses with HTTP status 200. Can be used for elb healthcheck.","downloads_count":1713,"number":"0.0.4","summary":"Fluentd input plugin that responses with HTTP status 200. Can be used for elb healthcheck.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http-list","downloads":1913,"version":"0.1.0","version_downloads":1913,"platform":"ruby","authors":"Paul McCann","info":"fluent plugin to accept multiple events in one HTTP request","licenses":[],"metadata":{},"sha":"483e76bf994ce3a83a1b59bcb43e66cd0167f3f9636c05867eb169f89644a64c","project_uri":"https://rubygems.org/gems/fluent-plugin-http-list","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-list-0.1.0.gem","homepage_uri":"https://github.com/m3dev/fluent-plugin-http-list","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http-list/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-01-16T00:00:00.000Z","created_at":"2013-01-16T08:54:30.661Z","description":"fluent plugin to accept multiple events in one HTTP request","downloads_count":1913,"number":"0.1.0","summary":"fluent plugin to accept multiple events in one HTTP request","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-http-pull","downloads":87,"version":"0.1.0","version_downloads":87,"platform":"ruby","authors":"filepang","info":"The input plugin of fluentd to pull log from rest api","licenses":["Apache-2.0"],"metadata":{},"sha":"f4f22de80214de4026c94790e1c56d508a8c6c58348bceac18439f9b301ce945","project_uri":"https://rubygems.org/gems/fluent-plugin-http-pull","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-pull-0.1.0.gem","homepage_uri":"https://github.com/HatsuneMiku3939/fluent-plugin-http-pull","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http-pull/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.10"},{"name":"rest-client","requirements":"< 3, >= 2.0.0"}]},"built_at":"2017-05-17T00:00:00.000Z","created_at":"2017-05-17T13:08:04.011Z","description":"The input plugin of fluentd to pull log from rest api","downloads_count":87,"number":"0.1.0","summary":"fluent-plugin-http-pull","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http-puma","downloads":2340,"version":"0.0.2","version_downloads":1340,"platform":"ruby","authors":"Masahiro Nakagawa","info":"Puma based HTTP(S) plugin for Fluentd","licenses":["Apache License (2.0)"],"metadata":{},"sha":"68e0ee0d1b017fa1329f0a3098c52d90e9beac8a094530c08e1bd8db79095f1a","project_uri":"https://rubygems.org/gems/fluent-plugin-http-puma","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-puma-0.0.2.gem","homepage_uri":"https://github.com/repeatedly/fluent-plugin-http-puma","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http-puma/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.50"},{"name":"puma","requirements":"~> 2.9.1"}]},"built_at":"2014-09-07T00:00:00.000Z","created_at":"2014-09-07T02:25:49.594Z","description":"Puma based HTTP(S) plugin for Fluentd","downloads_count":1340,"number":"0.0.2","summary":"Puma based HTTP(S) plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http-record-modifier","downloads":3039,"version":"0.0.3","version_downloads":1048,"platform":"ruby","authors":"Augusto Nishi","info":"fluentd filter plugin for modifing record based on a HTTP request","licenses":["MIT"],"metadata":{},"sha":"577f67617e5aaebde0ea737d790f23cee11ece04258baf608de08c63b9179692","project_uri":"https://rubygems.org/gems/fluent-plugin-http-record-modifier","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-record-modifier-0.0.3.gem","homepage_uri":"http://github.com/DEVTecnologia/fluent-plugin-http-record-modifier","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http-record-modifier/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2015-09-09T00:00:00.000Z","created_at":"2015-09-09T20:13:58.864Z","description":"fluentd filter plugin for modifing record based on a HTTP request","downloads_count":1048,"number":"0.0.3","summary":"fluentd filter plugin for modifing record based on a HTTP request","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-http_shadow","downloads":7495,"version":"0.1.0","version_downloads":1005,"platform":"ruby","authors":"Hiroshi Toyama","info":"copy http request. use shadow proxy server.","licenses":["MIT"],"metadata":{},"sha":"bf6ae389cd461b52383b17f2a66e0dea28c86fe692d42d48b5d7d6758b03aeec","project_uri":"https://rubygems.org/gems/fluent-plugin-http_shadow","gem_uri":"https://rubygems.org/gems/fluent-plugin-http_shadow-0.1.0.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-http_shadow","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http_shadow/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"pry","requirements":"~> 0.10.1"},{"name":"rake","requirements":"~> 10.3.2"},{"name":"rubocop","requirements":"~> 0.24.1"},{"name":"rubygems-tasks","requirements":"~> 0.2"},{"name":"yard","requirements":"~> 0.8"}],"runtime":[{"name":"addressable","requirements":">= 0"},{"name":"typhoeus","requirements":">= 0"}]},"built_at":"2016-04-07T00:00:00.000Z","created_at":"2016-04-07T02:04:11.739Z","description":"copy http request. use shadow proxy server.","downloads_count":1005,"number":"0.1.0","summary":"copy http request. use shadow proxy server.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-https-json","downloads":2026,"version":"0.0.1","version_downloads":2026,"platform":"ruby","authors":"Jay OConnor","info":"Fluentd output plugin to buffer logs as json arrays to a url","licenses":[],"metadata":{},"sha":"eccca7bd836dfb2b2ae5abea606f3554f893c035b507b0298e8d656af1e19ad1","project_uri":"https://rubygems.org/gems/fluent-plugin-https-json","gem_uri":"https://rubygems.org/gems/fluent-plugin-https-json-0.0.1.gem","homepage_uri":"https://github.com/jdoconnor/fluentd_https_out","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-https-json/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-03-11T00:00:00.000Z","created_at":"2013-03-11T14:56:54.601Z","description":"Fluentd output plugin to buffer logs as json arrays to a url","downloads_count":2026,"number":"0.0.1","summary":"Fluentd output plugin to buffer logs as json arrays to a url","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-http-status","downloads":6777,"version":"0.0.4","version_downloads":2165,"platform":"ruby","authors":"hiro-su","info":"Fluentd input plugin for to get the http status","licenses":[],"metadata":{},"sha":"b3d6dc2d53719c09a19a2c2e7a6a2425846f05d6dd52143cd9a43c098ad83a4b","project_uri":"https://rubygems.org/gems/fluent-plugin-http-status","gem_uri":"https://rubygems.org/gems/fluent-plugin-http-status-0.0.4.gem","homepage_uri":"","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-http-status/0.0.4","mailing_list_uri":"","source_code_uri":"https://github.com/hiro-su/fluent-plugin-http-status","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"polling","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"polling","requirements":">= 0"}]},"built_at":"2013-04-17T00:00:00.000Z","created_at":"2013-04-17T05:22:12.774Z","description":"Fluentd input plugin for to get the http status","downloads_count":2165,"number":"0.0.4","summary":"Fluentd input plugin for to get the http status","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-idobata","downloads":4947,"version":"0.0.3","version_downloads":1228,"platform":"ruby","authors":"bash0C7","info":"Fluentd output plugin to send data to idobata","licenses":["Ruby's"],"metadata":{},"sha":"81adb4b5e417eeb9468b585198bca4e320784a5c5c1a8c2bb6cceb0775610dbc","project_uri":"https://rubygems.org/gems/fluent-plugin-idobata","gem_uri":"https://rubygems.org/gems/fluent-plugin-idobata-0.0.3.gem","homepage_uri":"https://github.com/bash0C7/fluent-plugin-idobata","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-idobata/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"httparty","requirements":"~> 0.13"}]},"built_at":"2014-12-11T00:00:00.000Z","created_at":"2014-12-11T15:36:31.819Z","description":"Fluentd output plugin to send data to idobata","downloads_count":1228,"number":"0.0.3","summary":"Fluentd output plugin to send data to idobata","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ignore-filter","downloads":15773,"version":"1.1.0","version_downloads":13061,"platform":"ruby","authors":"Yuri Umezaki","info":"Fluentd filter plugin to ignore messages","licenses":["Apache-2.0"],"metadata":{},"sha":"87c450703b810b0ef23b0835e0e3278aa37309dc7a588155e30d9caf9fe8bd7c","project_uri":"https://rubygems.org/gems/fluent-plugin-ignore-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-ignore-filter-1.1.0.gem","homepage_uri":"https://github.com/bungoume/fluent-plugin-ignore-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ignore-filter/1.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2016-01-09T00:00:00.000Z","created_at":"2016-01-09T03:02:45.738Z","description":"Fluentd filter plugin to ignore messages","downloads_count":13061,"number":"1.1.0","summary":"Fluentd filter plugin to ignore messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ikachan","downloads":14301,"version":"1.0.0","version_downloads":296,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"output plugin for IRC-HTTP gateway 'ikachan' (see: https://metacpan.org/module/ikachan and (jpn) http://blog.yappo.jp/yappo/archives/000760.html)","licenses":["Apache-2.0"],"metadata":{},"sha":"082571b2172370ac5d6d7c46bb5e69574e67a4d04fc42629cbe8b965ef729e8a","project_uri":"https://rubygems.org/gems/fluent-plugin-ikachan","gem_uri":"https://rubygems.org/gems/fluent-plugin-ikachan-1.0.0.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-ikachan","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ikachan/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-02-01T00:00:00.000Z","created_at":"2017-02-01T07:52:13.751Z","description":"output plugin for IRC-HTTP gateway 'ikachan' (see: https://metacpan.org/module/ikachan and (jpn) http://blog.yappo.jp/yappo/archives/000760.html)","downloads_count":296,"number":"1.0.0","summary":"output plugin for IRC-HTTP gateway 'ikachan'","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-imagefile","downloads":1513,"version":"0.0.1","version_downloads":1513,"platform":"ruby","authors":"bash0C7","info":"Output plugin to save image file from massages attribute value","licenses":["Ruby's"],"metadata":{},"sha":"88bcbb0b836ea9914105e923eb9abd71b9b68627d3eda4ceb73da4eb20745bd4","project_uri":"https://rubygems.org/gems/fluent-plugin-imagefile","gem_uri":"https://rubygems.org/gems/fluent-plugin-imagefile-0.0.1.gem","homepage_uri":"https://github.com/bash0C7/fluent-plugin-imagefile","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-imagefile/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-01-25T00:00:00.000Z","created_at":"2014-01-25T14:13:04.431Z","description":"Output plugin to save image file from massages attribute value","downloads_count":1513,"number":"0.0.1","summary":"Output plugin to save image file from massages attribute value","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-imkayac","downloads":2142,"version":"0.0.1","version_downloads":2142,"platform":"ruby","authors":"FUJIWARA Shunichiro","info":"fluentd plugin output to im.kayac.com","licenses":null,"metadata":{},"sha":"6106e9d78e75ad47f6d365f54973ccc6f6b6d25021440bbb64a0f1b010b66c17","project_uri":"https://rubygems.org/gems/fluent-plugin-imkayac","gem_uri":"https://rubygems.org/gems/fluent-plugin-imkayac-0.0.1.gem","homepage_uri":"https://github.com/fujiwara/fluent-plugin-imkayac","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-imkayac/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2012-06-14T00:00:00.000Z","created_at":"2012-06-14T08:12:58.059Z","description":"fluentd plugin output to im.kayac.com","downloads_count":2142,"number":"0.0.1","summary":"fluentd plugin output to im.kayac.com","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-incremental","downloads":1612,"version":"0.0.1","version_downloads":1612,"platform":"ruby","authors":"toyama0919","info":"numeric incremental output plugin for Fluentd.","licenses":["MIT"],"metadata":{},"sha":"0e1925b802b1d586a6dda34b10bce918a19aab4cf70264e6b017d3de0508eae8","project_uri":"https://rubygems.org/gems/fluent-plugin-incremental","gem_uri":"https://rubygems.org/gems/fluent-plugin-incremental-0.0.1.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-incremental/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-incremental/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2013-10-14T00:00:00.000Z","created_at":"2013-10-14T15:05:24.691Z","description":"numeric incremental output plugin for Fluentd.","downloads_count":1612,"number":"0.0.1","summary":"numeric incremental output plugin for Fluentd.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-in_elb_healthcheck","downloads":3154,"version":"0.0.3","version_downloads":3000,"platform":"ruby","authors":"aihara","info":"fluentd plug-in for ELB Health Check","licenses":[],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"3e4e5784ba34bf4262ab3c0f87cf838d961a5801930563d05eb6727e81c7edcf","project_uri":"https://rubygems.org/gems/fluent-plugin-in_elb_healthcheck","gem_uri":"https://rubygems.org/gems/fluent-plugin-in_elb_healthcheck-0.0.3.gem","homepage_uri":"http://argmax.jp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-in_elb_healthcheck/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.00"}]},"built_at":"2015-05-29T00:00:00.000Z","created_at":"2015-05-29T20:38:59.110Z","description":"fluentd plug-in for ELB Health Check","downloads_count":3000,"number":"0.0.3","summary":"fluentd plug-in for ELB Health Check","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-influxdb","downloads":44464,"version":"1.0.0.rc2","version_downloads":306,"platform":"ruby","authors":"Masahiro Nakagawa, FangLi","info":"InfluxDB output plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"465d2a04885592f2869d2b2e7c88c2dd66291ff3613291d64f1796a219491da8","project_uri":"https://rubygems.org/gems/fluent-plugin-influxdb","gem_uri":"https://rubygems.org/gems/fluent-plugin-influxdb-1.0.0.rc2.gem","homepage_uri":"https://github.com/fangli/fluent-plugin-influxdb","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-influxdb/1.0.0.rc2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.49"},{"name":"influxdb","requirements":">= 0.2.0"}]},"built_at":"2017-02-09T00:00:00.000Z","created_at":"2017-02-09T11:33:11.447Z","description":"InfluxDB output plugin for Fluentd","downloads_count":306,"number":"1.0.0.rc2","summary":"A buffered output plugin for fluentd and influxDB","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-influxdb_metrics","downloads":4650,"version":"0.0.4","version_downloads":1499,"platform":"ruby","authors":"lxfontes","info":"InfluxDB output plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"0360b482a2e0a3e78edfbe4138e3fddc9fb0e55b5a89c7d35309dc8373d4ad98","project_uri":"https://rubygems.org/gems/fluent-plugin-influxdb_metrics","gem_uri":"https://rubygems.org/gems/fluent-plugin-influxdb_metrics-0.0.4.gem","homepage_uri":"https://github.com/lxfontes/fluent-plugin-influxdb_metrics","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-influxdb_metrics/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"influxdb","requirements":">= 0"}]},"built_at":"2014-05-26T00:00:00.000Z","created_at":"2014-05-26T17:25:36.323Z","description":"InfluxDB output plugin for Fluentd","downloads_count":1499,"number":"0.0.4","summary":"output plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-in_http_healthcheck","downloads":1388,"version":"0.0.1","version_downloads":1388,"platform":"ruby","authors":"Zaki_XL","info":"fluentd plug-in for HTTP Health Check","licenses":[],"metadata":{},"sha":"50049892f58e86e2e11db72f284e5309b356853c3c831b8a61af0e62143ed3d0","project_uri":"https://rubygems.org/gems/fluent-plugin-in_http_healthcheck","gem_uri":"https://rubygems.org/gems/fluent-plugin-in_http_healthcheck-0.0.1.gem","homepage_uri":"http://need4answer.blogspot.jp/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-in_http_healthcheck/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.00"}]},"built_at":"2015-04-13T00:00:00.000Z","created_at":"2015-04-13T13:35:10.082Z","description":"fluentd plug-in for HTTP Health Check","downloads_count":1388,"number":"0.0.1","summary":"fluentd plug-in for HTTP Health Check","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-in-kinesis","downloads":1460,"version":"0.0.2","version_downloads":914,"platform":"ruby","authors":"yusuke yamatani ","info":"To count records with string fields by regexps (To count records with numbers, use numeric-counter)","licenses":["MIT"],"metadata":{},"sha":"0a181e27d29184a5c03e10468163223583bb7f58d05beebe4a3de3c7f23a021c","project_uri":"https://rubygems.org/gems/fluent-plugin-in-kinesis","gem_uri":"https://rubygems.org/gems/fluent-plugin-in-kinesis-0.0.2.gem","homepage_uri":"https://github.com/yusukeyamatani/fluent-plugin-in-kinesis","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-in-kinesis/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-01-21T00:00:00.000Z","created_at":"2016-01-21T09:57:22.289Z","description":"To count records with string fields by regexps (To count records with numbers, use numeric-counter)","downloads_count":914,"number":"0.0.2","summary":"Fluentd plugin to count records with specified regexp patterns","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-inline-classifier","downloads":1573,"version":"0.1.0","version_downloads":1573,"platform":"ruby","authors":"Yoshihisa Tanaka","info":"Fluentd plugin to classify each message and inject the result into it","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"fb535345e94f4580f2bfca5db0ec64c6c6e7c780d4b799292330a7322cff9551","project_uri":"https://rubygems.org/gems/fluent-plugin-inline-classifier","gem_uri":"https://rubygems.org/gems/fluent-plugin-inline-classifier-0.1.0.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-inline-classifier/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-04-19T00:00:00.000Z","created_at":"2014-04-19T12:11:40.175Z","description":"Fluentd plugin to classify each message and inject the result into it","downloads_count":1573,"number":"0.1.0","summary":"Fluentd plugin to classify each message and inject the result into it","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-input-gelf","downloads":2206,"version":"0.2.0","version_downloads":368,"platform":"ruby","authors":"Daniel Malon","info":"A GELF input plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"982c4527871edec9f148390ba894f0754ac7f76f1ff58576db6bcb76d29c88c1","project_uri":"https://rubygems.org/gems/fluent-plugin-input-gelf","gem_uri":"https://rubygems.org/gems/fluent-plugin-input-gelf-0.2.0.gem","homepage_uri":"https://github.com/MerlinDMC/fluent-plugin-input-gelf","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-input-gelf/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"gelf","requirements":">= 2.0.0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"gelfd2","requirements":">= 0.3.0"}]},"built_at":"2017-02-11T00:00:00.000Z","created_at":"2017-02-11T11:04:36.683Z","description":"A GELF input plugin for fluentd","downloads_count":368,"number":"0.2.0","summary":"A GELF input plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-input-jsonstream","downloads":443,"version":"0.1.1","version_downloads":179,"platform":"ruby","authors":"Daniel Malon","info":"A streaming JSON input plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"d4a42a8d078e990b8a97c220a91265a7e6ba900d7491eb0e8b9419ba119c04db","project_uri":"https://rubygems.org/gems/fluent-plugin-input-jsonstream","gem_uri":"https://rubygems.org/gems/fluent-plugin-input-jsonstream-0.1.1.gem","homepage_uri":"https://github.com/MerlinDMC/fluent-plugin-input-jsonstream","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-input-jsonstream/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2017-04-25T00:00:00.000Z","created_at":"2017-04-25T12:47:18.382Z","description":"A streaming JSON input plugin for fluentd","downloads_count":179,"number":"0.1.1","summary":"A streaming JSON input plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-in-udp-event","downloads":2955,"version":"0.0.2","version_downloads":1689,"platform":"ruby","authors":"Alexander Blagoev","info":"Event driven udp input plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"b3b963f4adfc610568999e4b59c08d0ba352fa507a3deed7414a3c054542f518","project_uri":"https://rubygems.org/gems/fluent-plugin-in-udp-event","gem_uri":"https://rubygems.org/gems/fluent-plugin-in-udp-event-0.0.2.gem","homepage_uri":"https://github.com/ablagoev/fluent-plugin-in-udp-event","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-in-udp-event/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"cool.io","requirements":"~> 1.1.1"},{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"}]},"built_at":"2013-10-20T00:00:00.000Z","created_at":"2013-11-04T22:19:12.625Z","description":"Event driven udp input plugin for fluentd","downloads_count":1689,"number":"0.0.2","summary":"Event driven udp input plugin for fluentd","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-in-websocket","downloads":1209,"version":"0.1.2","version_downloads":855,"platform":"ruby","authors":"Sebastian Szewczyk","info":"Fluent plugin that uses em-websocket as input. Don't have tests yet, but it works for me. For more info visit homepage https://github.com/sebryu/fluent_plugin_in_websocket.","licenses":["MIT"],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"60cf68efa26ad4543e6a8bb27b58372c3cfc7175806780650567622a4b4f3feb","project_uri":"https://rubygems.org/gems/fluent-plugin-in-websocket","gem_uri":"https://rubygems.org/gems/fluent-plugin-in-websocket-0.1.2.gem","homepage_uri":"https://github.com/sebryu/fluent_plugin_in_websocket","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-in-websocket/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"em-websocket","requirements":"~> 0.5.1"},{"name":"fluentd","requirements":"< 2, >= 0.11.0"}]},"built_at":"2016-06-06T00:00:00.000Z","created_at":"2016-06-06T10:00:35.273Z","description":"Fluent plugin that uses em-websocket as input. Don't have tests yet, but it works for me. For more info visit homepage https://github.com/sebryu/fluent_plugin_in_websocket.","downloads_count":855,"number":"0.1.2","summary":"Fluent plugin for websocket input","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-irc","downloads":10564,"version":"0.0.8","version_downloads":1245,"platform":"ruby","authors":"OKUNO Akihiro","info":"Output plugin for IRC","licenses":["Apache-2.0"],"metadata":{},"sha":"6b9227f2ed52c0b2347e4768626fe5546bf5e1e68156a759bd4e48c4af1929dd","project_uri":"https://rubygems.org/gems/fluent-plugin-irc","gem_uri":"https://rubygems.org/gems/fluent-plugin-irc-0.0.8.gem","homepage_uri":"https://github.com/choplin/fluent-plugin-irc","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-irc/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"irc_parser","requirements":">= 0"}]},"built_at":"2015-07-11T00:00:00.000Z","created_at":"2015-07-11T02:00:54.040Z","description":"Output plugin for IRC","downloads_count":1245,"number":"0.0.8","summary":"Output plugin for IRC","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ironio","downloads":2558,"version":"0.0.3","version_downloads":1074,"platform":"ruby","authors":"chandrashekar Tippur","info":"FLuentd plugin for ironio alerts... WIP","licenses":["MIT"],"metadata":{},"sha":"613c91a805398324c0dcd1b2ccc750c3433e879c13607c8e9328f6fedf757752","project_uri":"https://rubygems.org/gems/fluent-plugin-ironio","gem_uri":"https://rubygems.org/gems/fluent-plugin-ironio-0.0.3.gem","homepage_uri":"https://github.com/ctippur/fluent-plugin-ironio","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ironio/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.6, ~> 0.9"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.51, ~> 0.10"},{"name":"iron_mq","requirements":">= 5.0.1, ~> 5.0"},{"name":"json","requirements":">= 1.8.2, ~> 1.1"}]},"built_at":"2015-01-30T00:00:00.000Z","created_at":"2015-03-24T21:59:50.740Z","description":"FLuentd plugin for ironio alerts... WIP","downloads_count":1074,"number":"0.0.3","summary":"Fluentd input plugin for ironio alerts","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-jabber","downloads":7989,"version":"0.4.0","version_downloads":2055,"platform":"ruby","authors":"todesking","info":"Fluentd output plugin for XMPP(Jabber) protocol","licenses":[],"metadata":{},"sha":"b0734c453787239c8de8983b21a03e8a9f5ddda8cfd999e8ed9431b9a658d5e0","project_uri":"https://rubygems.org/gems/fluent-plugin-jabber","gem_uri":"https://rubygems.org/gems/fluent-plugin-jabber-0.4.0.gem","homepage_uri":"https://github.com/todesking/fluent-plugin-jabber","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jabber/0.4.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"pit","requirements":">= 0"},{"name":"xmpp4r","requirements":">= 0"}]},"built_at":"2013-04-03T00:00:00.000Z","created_at":"2013-04-03T06:48:14.945Z","description":null,"downloads_count":2055,"number":"0.4.0","summary":"Fluentd output plugin for XMPP(Jabber) protocol","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-jmx","downloads":2550,"version":"0.0.1","version_downloads":2550,"platform":"ruby","authors":"Hidenori Suzuki","info":"jolokia input plugin","licenses":["MIT"],"metadata":{},"sha":"3392f5e0f063ed79fd3d2addfde4fd197062fd7cd6404e48d77936b3e15bfd6c","project_uri":"https://rubygems.org/gems/fluent-plugin-jmx","gem_uri":"https://rubygems.org/gems/fluent-plugin-jmx-0.0.1.gem","homepage_uri":"https://github.com/6pongi/fluent-plugin-jmx","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jmx/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2015-08-13T00:00:00.000Z","created_at":"2015-08-13T16:07:05.053Z","description":"jolokia input plugin","downloads_count":2550,"number":"0.0.1","summary":"a fluent plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-journal-parser","downloads":1152,"version":"0.1.1","version_downloads":608,"platform":"ruby","authors":"Emil Renner Berthing","info":"Fluentd plugin to parse systemd journal export format.","licenses":["Apache-2.0"],"metadata":{},"sha":"cbd6ad72de438aea2f46095a632a288af126be254b0ed90dd0b584d407a75441","project_uri":"https://rubygems.org/gems/fluent-plugin-journal-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-journal-parser-0.1.1.gem","homepage_uri":"https://github.com/One-com/fluent-plugin-journal-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-journal-parser/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.12"}]},"built_at":"2017-03-10T00:00:00.000Z","created_at":"2017-03-10T15:32:30.922Z","description":"","downloads_count":608,"number":"0.1.1","summary":"Fluentd plugin to parse systemd journal export format.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json-api","downloads":2865,"version":"0.0.2","version_downloads":1636,"platform":"ruby","authors":"Freddie Fujiwara","info":"json-api plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"d5cd12480d2eccd9ae182bd94a95d05b0ed4feb5f4316048f38ccb33e17d54dc","project_uri":"https://rubygems.org/gems/fluent-plugin-json-api","gem_uri":"https://rubygems.org/gems/fluent-plugin-json-api-0.0.2.gem","homepage_uri":"http://github.com/freddiefujiwara/fluent-plugin-json-api","wiki_uri":"","documentation_uri":"https://github.com/freddiefujiwara/fluent-plugin-json-api","mailing_list_uri":"","source_code_uri":"https://github.com/freddiefujiwara/fluent-plugin-json-api","bug_tracker_uri":"https://github.com/freddiefujiwara/fluent-plugin-json-api/issues","changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"rake","requirements":"~> 0.9.6"}]},"built_at":"2013-10-14T00:00:00.000Z","created_at":"2013-10-14T12:10:06.815Z","description":null,"downloads_count":1636,"number":"0.0.2","summary":"json-api plugin for Fluentd","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-jsonbucket","downloads":6304,"version":"0.0.2","version_downloads":4996,"platform":"ruby","authors":"moaikids","info":"Fluentd plugin","licenses":[],"metadata":{},"sha":"c43b5239cc80c6d9929970baf572051d3c994f054fcf7043765b750c22cd570e","project_uri":"https://rubygems.org/gems/fluent-plugin-jsonbucket","gem_uri":"https://rubygems.org/gems/fluent-plugin-jsonbucket-0.0.2.gem","homepage_uri":"https://github.com/moaikids/fluent-plugin-jsonbucket","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jsonbucket/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-09-13T00:00:00.000Z","created_at":"2013-09-13T13:24:45.931Z","description":"Fluentd plugin","downloads_count":4996,"number":"0.0.2","summary":"Fluentd plugin","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-json_expander","downloads":2397,"version":"0.1.0","version_downloads":867,"platform":"ruby","authors":"Uchio KONDO","info":"Run the sub-matcher created from accepted json data","licenses":["MIT"],"metadata":{},"sha":"d19fc16d33e9f38fd7f1e5c8ffcdbc402dd35dc3c66c96dbb8e6a1873174d84a","project_uri":"https://rubygems.org/gems/fluent-plugin-json_expander","gem_uri":"https://rubygems.org/gems/fluent-plugin-json_expander-0.1.0.gem","homepage_uri":"https://github.com/udzura/fluent-plugin-json_expander","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json_expander/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"power_assert","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 3"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-10-30T00:00:00.000Z","created_at":"2015-10-30T03:43:41.819Z","description":"Run the sub-matcher created from accepted json data","downloads_count":867,"number":"0.1.0","summary":"Run the sub-matcher created from accepted json data","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json-in-json","downloads":11163,"version":"0.1.4","version_downloads":8585,"platform":"ruby","authors":"Gavin M. Roy","info":"Parser plugin that parses JSON attributes with JSON strings in them","licenses":["BSD"],"metadata":{},"sha":"9e1fb67331bbccd11ca8c4f4e0acc51e2d5d2f658fe6e76764f621efd004e623","project_uri":"https://rubygems.org/gems/fluent-plugin-json-in-json","gem_uri":"https://rubygems.org/gems/fluent-plugin-json-in-json-0.1.4.gem","homepage_uri":"https://github.com/gmr/fluent-plugin-json-in-json","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json-in-json/0.1.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2015-06-19T00:00:00.000Z","created_at":"2015-06-19T16:19:44.607Z","description":"Parser plugin that parses JSON attributes with JSON strings in them","downloads_count":8585,"number":"0.1.4","summary":"Parser plugin that parses JSON attributes with JSON strings in them","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json-in-json-sp","downloads":202,"version":"0.2.1","version_downloads":183,"platform":"ruby","authors":"Ryan Dyer","info":"Parser plugin that parses JSON attributes with JSON strings in them","licenses":["BSD"],"metadata":{},"sha":"45635cc9f7cf8f235abdf72c0892501fe218375f893272dca976e09fef4e5e07","project_uri":"https://rubygems.org/gems/fluent-plugin-json-in-json-sp","gem_uri":"https://rubygems.org/gems/fluent-plugin-json-in-json-sp-0.2.1.gem","homepage_uri":"https://github.com/ryan-dyer-sp/fluent-plugin-json-in-json","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json-in-json-sp/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2017-05-02T00:00:00.000Z","created_at":"2017-05-02T18:07:48.128Z","description":"Parser plugin that parses JSON attributes with JSON strings in them","downloads_count":183,"number":"0.2.1","summary":"Parser plugin that parses JSON attributes with JSON strings in them","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-jsonish","downloads":258,"version":"1.0.0","version_downloads":258,"platform":"ruby","authors":"Alex Yamauchi","info":"Input parser for records which require minor text processing before they can be parsed as JSON","licenses":["Apache-2.0"],"metadata":{},"sha":"2ce9129ae34c7e95bfe11f0ee569d717c68fa8f07e5f847554e25a2cf3cb45cc","project_uri":"https://rubygems.org/gems/fluent-plugin-jsonish","gem_uri":"https://rubygems.org/gems/fluent-plugin-jsonish-1.0.0.gem","homepage_uri":"https://github.com/bodhi-space/fluent-plugin-jsonish","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jsonish/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0.10.0"}]},"built_at":"2017-03-15T00:00:00.000Z","created_at":"2017-03-15T22:24:38.881Z","description":"Input parser for records which require minor text processing before they can be parsed as JSON","downloads_count":258,"number":"1.0.0","summary":"Input parser for records which require minor text processing before they can be parsed as JSON. Also allows names of standard Time parser methods to be passed as time_format arguments and sets a reasonable default (iso8601).","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json-lookup","downloads":327,"version":"0.1.0","version_downloads":327,"platform":"ruby","authors":"Micah Hausler","info":"Filter plugin for looking up a json object out of a record","licenses":["MIT"],"metadata":{},"sha":"e26b95785c8fa440c1a05c292b2deb819034deb5a78efd341530af050c49b7be","project_uri":"https://rubygems.org/gems/fluent-plugin-json-lookup","gem_uri":"https://rubygems.org/gems/fluent-plugin-json-lookup-0.1.0.gem","homepage_uri":"https://github.com/skuid/fluent-plugin-json-lookup","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json-lookup/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":"~> 3.1.4"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2017-02-07T00:00:00.000Z","created_at":"2017-02-07T20:41:23.974Z","description":"Filter plugin for looking up a json object out of a record","downloads_count":327,"number":"0.1.0","summary":"Filter plugin for looking up a json object out of a record","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json-nest2flat","downloads":40082,"version":"0.0.5","version_downloads":35439,"platform":"ruby","authors":"Fukui ReTu","info":"Output filter plugin to convert to a flat structure the JSON that is nest","licenses":["APL2.0"],"metadata":{},"sha":"39220049b003de83254bb389bdb7f1b1e4ff757d65d536fc59a7b940baa9159c","project_uri":"https://rubygems.org/gems/fluent-plugin-json-nest2flat","gem_uri":"https://rubygems.org/gems/fluent-plugin-json-nest2flat-0.0.5.gem","homepage_uri":"https://github.com/fukuiretu/fluent-plugin-json-nest2flat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json-nest2flat/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2014-05-21T00:00:00.000Z","created_at":"2014-05-21T15:20:20.827Z","description":"Output filter plugin to convert to a flat structure the JSON that is nest","downloads_count":35439,"number":"0.0.5","summary":"Output filter plugin to convert to a flat structure the JSON that is nest","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json-parser","downloads":6230,"version":"0.0.3","version_downloads":4276,"platform":"ruby","authors":"anarcher","info":"fluentd plugin to json parse single field, or to combine log structure into single field","licenses":["APLv2"],"metadata":{},"sha":"80a522e81c968debcd01acee276fc1f5fdcda926736d9bbca4d593f3ec1b8037","project_uri":"https://rubygems.org/gems/fluent-plugin-json-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-json-parser-0.0.3.gem","homepage_uri":"https://github.com/anarcher/fluent-plugin-json-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json-parser/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-08-18T00:00:00.000Z","created_at":"2014-08-18T16:59:25.159Z","description":"fluentd plugin to json parse single field, or to combine log structure into single field","downloads_count":4276,"number":"0.0.3","summary":"plugin to parse/combine fluentd log messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json-schema-filter","downloads":1242,"version":"0.0.3","version_downloads":752,"platform":"ruby","authors":"Anthony Johnson","info":"Fluentd Filter plugin to validate incoming records against a json schema. It is thought that this would be helpful for maintaing a consistent record database.","licenses":[],"metadata":{},"sha":"88e426dbc49cbaa24bcff6be180efbdf3b2e316f5216c492156c3c93a032adc9","project_uri":"https://rubygems.org/gems/fluent-plugin-json-schema-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-json-schema-filter-0.0.3.gem","homepage_uri":"https://github.com/ansoni/fluent-plugin-json-schema-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json-schema-filter/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"codeclimate-test-reporter","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"travis","requirements":"~> 1.8"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"json-schema","requirements":"~> 2.6"}]},"built_at":"2016-09-26T00:00:00.000Z","created_at":"2016-09-26T17:40:18.416Z","description":"Fluentd Filter plugin to validate incoming records against a json schema. It is thought that this would be helpful for maintaing a consistent record database.","downloads_count":752,"number":"0.0.3","summary":"Fluentd Filter plugin to validate incoming records against a json schema","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json_serializer","downloads":1095,"version":"0.0.4","version_downloads":1067,"platform":"ruby","authors":"Zaki_XL","info":"fluent plugin for Json serialize","licenses":["MIT"],"metadata":{},"sha":"9ee93e3f82b719ee3a57a0116f826c0ce050dad7e0db27d7f81ba9e24b955d83","project_uri":"https://rubygems.org/gems/fluent-plugin-json_serializer","gem_uri":"https://rubygems.org/gems/fluent-plugin-json_serializer-0.0.4.gem","homepage_uri":"http://need4answer.blogspot.jp/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json_serializer/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.8"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.00"},{"name":"oj","requirements":"~> 2.11"}]},"built_at":"2015-04-08T00:00:00.000Z","created_at":"2015-04-08T15:00:20.672Z","description":"fluent plugin for Json serialize","downloads_count":1067,"number":"0.0.4","summary":"fluent plugin for Json serialize","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-jsontcp","downloads":407,"version":"1.1","version_downloads":407,"platform":"ruby","authors":"Kim Gert Nielsen","info":"Plugin for fluentd to send JSON to a TCP socket","licenses":[],"metadata":{},"sha":"b5e67fb652e6f8290591bcdf90a14bfb0d9bbbff51b1f84c8cd4d1bd03caed04","project_uri":"https://rubygems.org/gems/fluent-plugin-jsontcp","gem_uri":"https://rubygems.org/gems/fluent-plugin-jsontcp-1.1.gem","homepage_uri":"https://greyhat.dk","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jsontcp/1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"}]},"built_at":"2016-09-28T00:00:00.000Z","created_at":"2016-09-28T10:31:06.328Z","description":"Plugin for fluentd to send JSON to a TCP socket","downloads_count":407,"number":"1.1","summary":"Plugin for fluentd to send JSON to a TCP socket","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-json-transform","downloads":2352,"version":"0.0.2","version_downloads":891,"platform":"ruby","authors":"Grayson Chao, Matthew Jourard","info":"Input parser plugin which allows arbitrary transformation of input JSON","licenses":["MIT"],"metadata":{},"sha":"5f9476b93d4cc3646454a2abefa9ebfc2910340aab32ab6b5b5b706a8df89bbe","project_uri":"https://rubygems.org/gems/fluent-plugin-json-transform","gem_uri":"https://rubygems.org/gems/fluent-plugin-json-transform-0.0.2.gem","homepage_uri":"https://github.com/mjourard/fluent-plugin-json-transform/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-json-transform/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[]},"built_at":"2016-07-27T00:00:00.000Z","created_at":"2016-07-27T07:20:49.419Z","description":"Input parser plugin which allows arbitrary transformation of input JSON","downloads_count":891,"number":"0.0.2","summary":"Input parser plugin which allows arbitrary transformation of input JSON","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-jstat","downloads":4932,"version":"0.0.3","version_downloads":2806,"platform":"ruby","authors":"wukawa","info":"jstat input plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"54f8b41e5fb6cbfac5537719c5e71b24136ea28618cfff47661de811de2e4b5f","project_uri":"https://rubygems.org/gems/fluent-plugin-jstat","gem_uri":"https://rubygems.org/gems/fluent-plugin-jstat-0.0.3.gem","homepage_uri":"https://github.com/wyukawa/fluent-plugin-jstat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jstat/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-03-20T00:00:00.000Z","created_at":"2014-03-20T07:31:02.510Z","description":"jstat input plugin for Fluent event collector","downloads_count":2806,"number":"0.0.3","summary":"jstat input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-jubatus","downloads":2761,"version":"0.0.2","version_downloads":1450,"platform":"ruby","authors":"MATSUMOTO Katsuyoshi","info":"Jubatus output plugin for fluentd","licenses":[],"metadata":{},"sha":"90699582933210e3f8a22fc0591ab6984eca5c3694fe6183e02e8682eff808ae","project_uri":"https://rubygems.org/gems/fluent-plugin-jubatus","gem_uri":"https://rubygems.org/gems/fluent-plugin-jubatus-0.0.2.gem","homepage_uri":"https://github.com/katsyoshi/fluent-plugin-jubatus","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jubatus/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"jubatus","requirements":">= 0"}]},"built_at":"2014-04-20T00:00:00.000Z","created_at":"2014-04-20T13:55:54.104Z","description":"Jubatus output plugin for fluentd","downloads_count":1450,"number":"0.0.2","summary":"Jubatus output plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-juniper-telemetry","downloads":3378,"version":"0.3.0","version_downloads":630,"platform":"ruby","authors":"Damien Garros","info":"Input plugin for Fluentd for Juniper devices telemetry data streaming : Jvision / analyticsd etc ..","licenses":["Apache 2.0"],"metadata":{},"sha":"b154a8a91f2dd6f504c319b6e63c28282b6f27ee71228f8c1dada2285d299c52","project_uri":"https://rubygems.org/gems/fluent-plugin-juniper-telemetry","gem_uri":"https://rubygems.org/gems/fluent-plugin-juniper-telemetry-0.3.0.gem","homepage_uri":"https://github.com/JNPRAutomate/fluentd-plugin-juniper-telemetry","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-juniper-telemetry/0.3.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.29"},{"name":"protobuf","requirements":">= 0"}]},"built_at":"2016-12-23T00:00:00.000Z","created_at":"2016-12-23T00:25:14.860Z","description":"Input plugin for Fluentd for Juniper devices telemetry data streaming : Jvision / analyticsd etc ..","downloads_count":630,"number":"0.3.0","summary":"Input plugin for Fluentd for Juniper devices telemetry data streaming : Jvision / analyticsd etc ..","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-jvm-gclog","downloads":4866,"version":"0.0.4","version_downloads":2696,"platform":"ruby","authors":"Shinji Tanaka","info":"Fluentd input plugin for JavaVM gc.log.","licenses":["Apache2"],"metadata":{},"sha":"0573f38bd54e486a7cbf217c5dce27ac38e38e8672a14bba96e21043454d696c","project_uri":"https://rubygems.org/gems/fluent-plugin-jvm-gclog","gem_uri":"https://rubygems.org/gems/fluent-plugin-jvm-gclog-0.0.4.gem","homepage_uri":"https://github.com/stanaka/fluent-plugin-jvm-gclog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jvm-gclog/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"jvm_gclog","requirements":">= 0.0.2"}]},"built_at":"2015-06-10T00:00:00.000Z","created_at":"2015-06-10T02:49:51.216Z","description":"Fluentd input plugin for JavaVM gc.log.","downloads_count":2696,"number":"0.0.4","summary":"Fluentd input plugin for JavaVM gc.log.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-jvmwatcher","downloads":7807,"version":"0.1.5","version_downloads":3679,"platform":"ruby","authors":"MasayukiMiyake","info":"It is the input plugin of fluentd which collects the condition of Java VM.","licenses":[],"metadata":{},"sha":"31a7a709633b3a731acf9060ceb356bf359c7ae481fbe2eb5f8960c47fdd47b5","project_uri":"https://rubygems.org/gems/fluent-plugin-jvmwatcher","gem_uri":"https://rubygems.org/gems/fluent-plugin-jvmwatcher-0.1.5.gem","homepage_uri":"https://github.com/MasayukiMiyake97/fluent-plugin-jvmwatcher.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jvmwatcher/0.1.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-05-19T00:00:00.000Z","created_at":"2013-05-19T13:53:35.443Z","description":"It is the input plugin of fluentd which collects the condition of Java VM.","downloads_count":3679,"number":"0.1.5","summary":"It is the input plugin of fluentd which collects the condition of Java VM.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-jwt-filter","downloads":2440,"version":"0.0.5","version_downloads":744,"platform":"ruby","authors":"Toyokazu Akiyama","info":"Fluent Filter plugin for encrypting and decrypting messages using JSON Web Token technology (JSON Web Encryption, JSON Web Signature and JSON Web Key)","licenses":["MIT"],"metadata":{},"sha":"7c67d00d791d8d401fd254e0a62e8114a83db3fd943d490799fbce19185ffced","project_uri":"https://rubygems.org/gems/fluent-plugin-jwt-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-jwt-filter-0.0.5.gem","homepage_uri":"https://github.com/toyokazu/fluent-plugin-jwt-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-jwt-filter/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.0"},{"name":"json-jwt","requirements":">= 1.5.2"}]},"built_at":"2016-03-05T00:00:00.000Z","created_at":"2016-03-05T23:12:42.985Z","description":"Fluent Filter plugin for encrypting and decrypting messages using JSON Web Token technology (JSON Web Encryption, JSON Web Signature and JSON Web Key)","downloads_count":744,"number":"0.0.5","summary":"Fluent Filter plugin for encrypting and decrypting messages using JSON Web Token technology (JSON Web Encryption, JSON Web Signature and JSON Web Key)","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kafka","downloads":135067,"version":"0.5.5","version_downloads":11474,"platform":"ruby","authors":"Hidemasa Togashi, Masahiro Nakagawa","info":"Fluentd plugin for Apache Kafka &gt; 0.8","licenses":[],"metadata":{},"sha":"7e36281fc2349e7ab3bd64d5ce5eac2046fb2f822c8daf6c797ff32653ce3f08","project_uri":"https://rubygems.org/gems/fluent-plugin-kafka","gem_uri":"https://rubygems.org/gems/fluent-plugin-kafka-0.5.5.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-kafka","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kafka/0.5.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.0.8"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"ltsv","requirements":">= 0"},{"name":"ruby-kafka","requirements":"~> 0.3.16"}]},"built_at":"2017-04-19T00:00:00.000Z","created_at":"2017-04-19T22:20:21.022Z","description":"Fluentd plugin for Apache Kafka &gt; 0.8","downloads_count":11474,"number":"0.5.5","summary":"Fluentd plugin for Apache Kafka &gt; 0.8","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kafkaclient","downloads":998,"version":"0.0.1","version_downloads":998,"platform":"ruby","authors":"Kazuki Minamiya","info":"Kafka client Plugin which supports version 0.9 of kafka.","licenses":["APLv2"],"metadata":{},"sha":"ab1065e604f6221d8089bb7dfb6fee61afda401de7b080d59886037467d459d7","project_uri":"https://rubygems.org/gems/fluent-plugin-kafkaclient","gem_uri":"https://rubygems.org/gems/fluent-plugin-kafkaclient-0.0.1.gem","homepage_uri":"https://github.com/nantani/fluent-plugin-kafkaclient","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kafkaclient/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"activesupport","requirements":"< 5.1, >= 4.2.0"},{"name":"fluentd","requirements":">= 0"},{"name":"msgpack","requirements":">= 0"},{"name":"ruby-kafka","requirements":">= 0"},{"name":"yajl","requirements":">= 0"}]},"built_at":"2016-04-03T00:00:00.000Z","created_at":"2016-04-03T07:28:07.434Z","description":"Kafka client Plugin which supports version 0.9 of kafka.","downloads_count":998,"number":"0.0.1","summary":"Kafka client plugin which supports version 0.9 of kafka.","rubygems_version":">= 0","ruby_version":">= 2.2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kafka-enchanced","downloads":6171,"version":"0.5.35","version_downloads":252,"platform":"ruby","authors":"Paschenko Konstantin","info":"Fluentd plugin for Apache Kafka &gt; 0.8","licenses":[],"metadata":{},"sha":"1b05e2e7825d9b0f667630b8c92d3ef2fc254986791da2bc381d42e4749e394e","project_uri":"https://rubygems.org/gems/fluent-plugin-kafka-enchanced","gem_uri":"https://rubygems.org/gems/fluent-plugin-kafka-enchanced-0.5.35.gem","homepage_uri":"https://github.com/zhron4x/fluent-plugin-kafka-enchanced","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kafka-enchanced/0.5.35","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.0.8"}],"runtime":[{"name":"avro-builder","requirements":">= 0"},{"name":"avro_turf_enchanced","requirements":">= 0"},{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"ltsv","requirements":">= 0"},{"name":"ruby-kafka","requirements":"= 0.3.16.beta2"},{"name":"zookeeper","requirements":">= 0"}]},"built_at":"2017-03-31T00:00:00.000Z","created_at":"2017-03-31T15:16:06.999Z","description":"Fluentd plugin for Apache Kafka &gt; 0.8","downloads_count":252,"number":"0.5.35","summary":"Fluentd plugin for Apache Kafka &gt; 0.8","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kafka-zendesk","downloads":559,"version":"0.1.4","version_downloads":559,"platform":"ruby","authors":"Hidemasa Togashi","info":"Fluentd plugin for Apache Kafka &gt; 0.8","licenses":[],"metadata":{},"sha":"608126f708b2a2bd98ac4a2210990a817d8d4a730c93aa0c3b6a74155ac4f2fc","project_uri":"https://rubygems.org/gems/fluent-plugin-kafka-zendesk","gem_uri":"https://rubygems.org/gems/fluent-plugin-kafka-zendesk-0.1.4.gem","homepage_uri":"https://github.com/khouse/fluent-plugin-kafka","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kafka-zendesk/0.1.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"ltsv","requirements":">= 0"},{"name":"msgpack","requirements":">= 0"},{"name":"poseidon_cluster","requirements":">= 0"},{"name":"yajl-ruby","requirements":">= 0"},{"name":"zookeeper","requirements":">= 0"}]},"built_at":"2016-05-05T00:00:00.000Z","created_at":"2016-05-05T15:50:04.210Z","description":"Fluentd plugin for Apache Kafka &gt; 0.8","downloads_count":559,"number":"0.1.4","summary":"Fluentd plugin for Apache Kafka &gt; 0.8","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kanicounter","downloads":2106,"version":"0.0.1","version_downloads":2106,"platform":"ruby","authors":"tatsuhito","info":"kanicounter","licenses":null,"metadata":{},"sha":"2cc3c6b7760b4f976c88feb42d91ffc347807ce43c9d478cd80d8828d1a0faaf","project_uri":"https://rubygems.org/gems/fluent-plugin-kanicounter","gem_uri":"https://rubygems.org/gems/fluent-plugin-kanicounter-0.0.1.gem","homepage_uri":"https://github.com/TatsuhitoMuramatsu/fluent-plugin-kanicounter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kanicounter/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2012-06-20T00:00:00.000Z","created_at":"2012-06-20T11:49:24.113Z","description":"kanicounter","downloads_count":2106,"number":"0.0.1","summary":"Output filter plugin to count messages that matches \"kani\"","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-katsubushi","downloads":847,"version":"0.1.0","version_downloads":847,"platform":"ruby","authors":"FUJIWARA Shunichiro","info":"A fluentd filter plugin to inject id getting from katsubushi.","licenses":["Apache-2.0"],"metadata":{},"sha":"3c17d7f705a1c4a4b913b7fd6e92eeb5e817f5ecdd2b0926f427edfe1ab3d2e0","project_uri":"https://rubygems.org/gems/fluent-plugin-katsubushi","gem_uri":"https://rubygems.org/gems/fluent-plugin-katsubushi-0.1.0.gem","homepage_uri":"https://github.com/fujiwara/fluent-plugin-katsubushi","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-katsubushi/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"minitest","requirements":"~> 5.0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"memcached","requirements":"~> 1.8.0"}]},"built_at":"2016-06-07T00:00:00.000Z","created_at":"2016-06-07T00:43:52.394Z","description":"A fluentd filter plugin to inject id getting from katsubushi.","downloads_count":847,"number":"0.1.0","summary":"A fluentd filter plugin to inject id getting from katsubushi.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-keep-forward","downloads":18165,"version":"0.1.8","version_downloads":1438,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to keep forwarding to a node","licenses":[],"metadata":{},"sha":"78a167672168975b4d2a38f1bf051555f68f43e717a93073c71e5c92582097e0","project_uri":"https://rubygems.org/gems/fluent-plugin-keep-forward","gem_uri":"https://rubygems.org/gems/fluent-plugin-keep-forward-0.1.8.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-keep-forward","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-keep-forward/0.1.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"delorean","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"rspec-its","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-03-28T00:00:00.000Z","created_at":"2015-03-28T15:41:16.461Z","description":"Fluentd plugin to keep forwarding to a node","downloads_count":1438,"number":"0.1.8","summary":"Fluentd plugin to keep forwarding to a node","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kestrel","downloads":9342,"version":"0.2.2","version_downloads":2259,"platform":"ruby","authors":"Junichiro Takagi","info":"fluentd input/output plugin for kestrel queue.","licenses":null,"metadata":{},"sha":"e30c53f4b4c29c241df6b16d03f778e48205990e296e13ea43e01001f98b8a10","project_uri":"https://rubygems.org/gems/fluent-plugin-kestrel","gem_uri":"https://rubygems.org/gems/fluent-plugin-kestrel-0.2.2.gem","homepage_uri":"http://github.com/tjun/fluent-plugin-kestrel","wiki_uri":"","documentation_uri":"http://github.com/tjun/fluent-plugin-kestrel","mailing_list_uri":"","source_code_uri":"http://github.com/tjun/fluent-plugin-kestrel","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 1.0.0"},{"name":"jeweler","requirements":"~> 1.8.3"},{"name":"rdoc","requirements":"~> 3.12"},{"name":"shoulda","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.3.5"},{"name":"simplecov-rcov","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.10"},{"name":"kestrel-client","requirements":">= 0.7.1"}]},"built_at":"2012-06-02T00:00:00.000Z","created_at":"2012-06-02T18:40:24.985Z","description":"fluentd input/output plugin for kestrel queue.","downloads_count":2259,"number":"0.2.2","summary":"fluentd input/output plugin for kestrel.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-key-picker","downloads":3216,"version":"0.0.3","version_downloads":1369,"platform":"ruby","authors":"Carlos Donderis","info":"Fluentd plugin for filtering / picking desired keys.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"3709faeee374fa513c81ea33fc168d1d1bd3b159beeaee74d5e0c1859ab7e08e","project_uri":"https://rubygems.org/gems/fluent-plugin-key-picker","gem_uri":"https://rubygems.org/gems/fluent-plugin-key-picker-0.0.3.gem","homepage_uri":"http://github.com/cads/fluent-plugin-key-picker","wiki_uri":"","documentation_uri":"https://github.com/CaDs/fluent-plugin-key-picker/blob/master/README.md","mailing_list_uri":"","source_code_uri":"https://github.com/CaDs/fluent-plugin-key-picker","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":"~> 0"},{"name":"rake","requirements":"~> 0"}],"runtime":[]},"built_at":"2014-09-19T00:00:00.000Z","created_at":"2014-09-19T02:32:16.653Z","description":"Fluentd plugin for filtering / picking desired keys.","downloads_count":1369,"number":"0.0.3","summary":"Pick those keys you want to use and discard the rest","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-keyvalue-parser","downloads":504,"version":"0.1.4","version_downloads":264,"platform":"ruby","authors":"Arun M J","info":"Fluentd parser plugin for key-value formatted logs.","licenses":["MIT"],"metadata":{},"sha":"709880652dbed7ae021ae9ad85df621e6417d6fb4499d3081545c0757fda8c5a","project_uri":"https://rubygems.org/gems/fluent-plugin-keyvalue-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-keyvalue-parser-0.1.4.gem","homepage_uri":"https://github.com/arunmj/fluent-plugin-keyvalue-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-keyvalue-parser/0.1.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2017-03-06T00:00:00.000Z","created_at":"2017-03-06T06:38:36.425Z","description":"Fluentd parser plugin for key-value formatted logs.","downloads_count":264,"number":"0.1.4","summary":"This Fluentd parser plugin can be used to parse key-value pairs.","rubygems_version":">= 0","ruby_version":"~> 2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kibana-server","downloads":3580,"version":"0.0.2","version_downloads":2365,"platform":"ruby","authors":"OKUNO Akihiro","info":"Fluentd plugin which serves Kibana within fluentd process","licenses":["Apache 2.0"],"metadata":{},"sha":"11a677aa55f81e8da95fdadece2fe92a26d75381649c6f9a327a628d5b531c62","project_uri":"https://rubygems.org/gems/fluent-plugin-kibana-server","gem_uri":"https://rubygems.org/gems/fluent-plugin-kibana-server-0.0.2.gem","homepage_uri":"https://github.com/choplin/fluent-plugin-kibana-server","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kibana-server/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-11-11T00:00:00.000Z","created_at":"2013-11-11T02:21:07.464Z","description":"Fluentd plugin which serves Kibana within fluentd process","downloads_count":2365,"number":"0.0.2","summary":"Fluentd plugin which serves Kibana within fluentd process","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-kinesis","downloads":242787,"version":"2.0.0.alpha.1.2","version_downloads":101,"platform":"ruby","authors":"Amazon Web Services","info":"Fluentd output plugin that sends events to Amazon Kinesis.","licenses":["Apache-2.0"],"metadata":{},"sha":"b3bf95a4b155026d82703345f211f63fa8fd600b29dbeb025437285923478f09","project_uri":"https://rubygems.org/gems/fluent-plugin-kinesis","gem_uri":"https://rubygems.org/gems/fluent-plugin-kinesis-2.0.0.alpha.1.2.gem","homepage_uri":"https://github.com/awslabs/aws-fluent-plugin-kinesis","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kinesis/2.0.0.alpha.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"fakefs","requirements":">= 0.8.1"},{"name":"mocha","requirements":">= 1.1.0"},{"name":"net-empty_port","requirements":">= 0.0.2"},{"name":"pry","requirements":">= 0.10.1"},{"name":"pry-byebug","requirements":">= 3.3.0"},{"name":"pry-stack_explorer","requirements":">= 0.4.9.2"},{"name":"rake","requirements":"~> 10.0"},{"name":"rubyzip","requirements":">= 1.0.0"},{"name":"test-unit","requirements":">= 3.0.8"},{"name":"test-unit-rr","requirements":">= 1.0.3"},{"name":"webmock","requirements":">= 1.24.2"}],"runtime":[{"name":"aws-sdk-firehose","requirements":">= 1.0.0.rc1"},{"name":"aws-sdk-kinesis","requirements":">= 1.0.0.rc1"},{"name":"fluentd","requirements":"< 2, >= 0.14.12"},{"name":"google-protobuf","requirements":">= 3.2.0"}]},"built_at":"2017-04-10T00:00:00.000Z","created_at":"2017-04-10T09:43:56.142Z","description":"","downloads_count":101,"number":"2.0.0.alpha.1.2","summary":"Fluentd output plugin that sends events to Amazon Kinesis.","rubygems_version":"> 1.3.1","ruby_version":">= 2.1","prerelease":true,"requirements":[]},{"name":"fluent-plugin-kinesis-aggregation","downloads":8047,"version":"0.2.2","version_downloads":5070,"platform":"ruby","authors":"Atlassian","info":"Fluentd output plugin that sends KPL style aggregated events to Amazon Kinesis.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"02a0aba58a4d936612b89f4f591480e071adea6f053b7aaa34a7cd10d097fa91","project_uri":"https://rubygems.org/gems/fluent-plugin-kinesis-aggregation","gem_uri":"https://rubygems.org/gems/fluent-plugin-kinesis-aggregation-0.2.2.gem","homepage_uri":"https://github.com/atlassian/fluent-plugin-kinesis-aggregation","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kinesis-aggregation/0.2.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit-rr","requirements":"~> 1.0"}],"runtime":[{"name":"aws-sdk-core","requirements":"< 3.0, >= 2.0.12"},{"name":"fluentd","requirements":"< 0.13, >= 0.10.53"},{"name":"google-protobuf","requirements":">= 3.0.0.alpha.4.0"},{"name":"msgpack","requirements":">= 0.5.8"}]},"built_at":"2016-02-11T00:00:00.000Z","created_at":"2016-02-11T23:58:13.192Z","description":"","downloads_count":5070,"number":"0.2.2","summary":"Fluentd output plugin that sends KPL style aggregated events to Amazon Kinesis.","rubygems_version":">= 0","ruby_version":">= 2.1","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kinesis-alt","downloads":3312,"version":"0.0.2","version_downloads":2134,"platform":"ruby","authors":"Genki Sugawara","info":"Output filter plugin for Amazon Kinesis","licenses":["MIT"],"metadata":{},"sha":"f967f38d9194215169cb14eb8de292d30675539601b0a3b8d9e1dc2553b9aaf8","project_uri":"https://rubygems.org/gems/fluent-plugin-kinesis-alt","gem_uri":"https://rubygems.org/gems/fluent-plugin-kinesis-alt-0.0.2.gem","homepage_uri":"https://bitbucket.org/winebarrel/fluent-plugin-kinesis-alt","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kinesis-alt/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":">= 1.31.3"},{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"}]},"built_at":"2013-12-24T00:00:00.000Z","created_at":"2013-12-24T02:26:47.534Z","description":"Output filter plugin for Amazon Kinesis","downloads_count":2134,"number":"0.0.2","summary":"Output filter plugin for Amazon Kinesis","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-kinesis-firehose","downloads":24188,"version":"0.1.2.beta","version_downloads":393,"platform":"ruby","authors":"Genki Sugawara","info":"Fluentd output plugin for Amazon Kinesis Firehose.","licenses":["MIT"],"metadata":{},"sha":"030d6350fdf1db9090a62fa7fba414e63c0d528fedbc42c2007d7f0062156b73","project_uri":"https://rubygems.org/gems/fluent-plugin-kinesis-firehose","gem_uri":"https://rubygems.org/gems/fluent-plugin-kinesis-firehose-0.1.2.beta.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-kinesis-firehose","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kinesis-firehose/0.1.2.beta","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2.1.28"},{"name":"fluentd","requirements":">= 0"},{"name":"multi_json","requirements":">= 0"}]},"built_at":"2015-12-12T00:00:00.000Z","created_at":"2015-12-12T07:59:53.331Z","description":"Fluentd output plugin for Amazon Kinesis Firehose.","downloads_count":393,"number":"0.1.2.beta","summary":"Fluentd output plugin for Amazon Kinesis Firehose.","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-kubernetes","downloads":11156,"version":"0.3.1","version_downloads":6673,"platform":"ruby","authors":"Jimmi Dyson","info":"Output filter plugin to add Kubernetes metadata","licenses":["ASL2"],"metadata":{},"sha":"430075baf692ef6524ac4d1f49428e1f4ef38136ed81d687b8b2df19ad132719","project_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes","gem_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes-0.3.1.gem","homepage_uri":"https://github.com/fabric8io/fluent-plugin-kubernetes","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kubernetes/0.3.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"copyright-header","requirements":">= 0"},{"name":"minitest","requirements":"~> 4.0"},{"name":"minitest-vcr","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-03-09T00:00:00.000Z","created_at":"2015-03-09T15:05:38.781Z","description":"Output filter plugin to add Kubernetes metadata","downloads_count":6673,"number":"0.3.1","summary":"Output filter plugin to add Kubernetes metadata","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kubernetes_metadata_filter","downloads":126426,"version":"0.26.3","version_downloads":56678,"platform":"ruby","authors":"Jimmi Dyson","info":"Filter plugin to add Kubernetes metadata","licenses":["ASL2"],"metadata":{},"sha":"9d12453a5640d69d2bb9785f0fd26e8d052f918412fe203892dc17283afbdb64","project_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes_metadata_filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes_metadata_filter-0.26.3.gem","homepage_uri":"https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kubernetes_metadata_filter/0.26.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bump","requirements":">= 0"},{"name":"bundler","requirements":"~> 1.3"},{"name":"copyright-header","requirements":">= 0"},{"name":"minitest","requirements":"~> 4.0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"test-unit-rr","requirements":"~> 1.0.3"},{"name":"vcr","requirements":">= 0"},{"name":"webmock","requirements":">= 0"},{"name":"yajl-ruby","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.0"},{"name":"kubeclient","requirements":"~> 1.1.4"},{"name":"lru_redux","requirements":">= 0"}]},"built_at":"2017-02-27T00:00:00.000Z","created_at":"2017-02-27T16:09:06.197Z","description":"Filter plugin to add Kubernetes metadata","downloads_count":56678,"number":"0.26.3","summary":"Filter plugin to add Kubernetes metadata","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kubernetes_metadata_filter_v0.14","downloads":429,"version":"0.24.1","version_downloads":429,"platform":"ruby","authors":"Jimmi Dyson","info":"Filter plugin to add Kubernetes metadata","licenses":["ASL2"],"metadata":{},"sha":"62c2a5e306741a47cf22266f71057975931484b4813c169dbb3dc29c18a9588c","project_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes_metadata_filter_v0.14","gem_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes_metadata_filter_v0.14-0.24.1.gem","homepage_uri":"https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kubernetes_metadata_filter_v0.14/0.24.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bump","requirements":">= 0"},{"name":"bundler","requirements":"~> 1.3"},{"name":"copyright-header","requirements":">= 0"},{"name":"minitest","requirements":"~> 4.0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"test-unit-rr","requirements":"~> 1.0.3"},{"name":"vcr","requirements":">= 0"},{"name":"webmock","requirements":">= 0"},{"name":"yajl-ruby","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.0"},{"name":"fluent-plugin-docker_metadata_filter","requirements":">= 0"},{"name":"kubeclient","requirements":"~> 1.1.4"},{"name":"lru_redux","requirements":">= 0"}]},"built_at":"2016-09-01T00:00:00.000Z","created_at":"2016-09-01T14:30:47.516Z","description":"Filter plugin to add Kubernetes metadata","downloads_count":429,"number":"0.24.1","summary":"Filter plugin to add Kubernetes metadata","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kubernetes_metadata_input","downloads":2807,"version":"0.21.11","version_downloads":854,"platform":"ruby","authors":"Anton Sherkhonov","info":"Input plugin to collect Kubernetes metadata","licenses":["ASL2"],"metadata":{},"sha":"889fe9d79533b1ea5a38c4de721afceb3841dde0201abf0a677b5555897f160b","project_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes_metadata_input","gem_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes_metadata_input-0.21.11.gem","homepage_uri":"https://github.com/t0ffel/fluent-plugin-kubernetes_metadata_input","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kubernetes_metadata_input/0.21.11","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bump","requirements":">= 0"},{"name":"bundler","requirements":"~> 1.3"},{"name":"copyright-header","requirements":">= 0"},{"name":"minitest","requirements":"~> 4.0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"test-unit-rr","requirements":"~> 1.0.3"},{"name":"vcr","requirements":">= 0"},{"name":"webmock","requirements":">= 0"},{"name":"yajl-ruby","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"kubeclient","requirements":"~> 1.1.1"},{"name":"lru_redux","requirements":">= 0"}]},"built_at":"2016-06-14T00:00:00.000Z","created_at":"2016-06-14T17:08:03.982Z","description":"Input plugin to collect Kubernetes metadata","downloads_count":854,"number":"0.21.11","summary":"Input plugin to collect Kubernetes metadata","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kubernetes_remote_syslog","downloads":638,"version":"0.3.4","version_downloads":353,"platform":"ruby","authors":"George Goh","info":"Fluentd output plugin for remote syslog, specific to kubernetes logs","licenses":["MIT"],"metadata":{},"sha":"d8bd207089056a86d0ab76238556e65a6ddc55122315133c17766bc0363ec0b2","project_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes_remote_syslog","gem_uri":"https://rubygems.org/gems/fluent-plugin-kubernetes_remote_syslog-0.3.4.gem","homepage_uri":"https://github.com/georgegoh/fluent-plugin-kubernetes_remote_syslog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kubernetes_remote_syslog/0.3.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit-minitest","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0"},{"name":"fluent-mixin-plaintextformatter","requirements":">= 0"},{"name":"fluent-mixin-rewrite-tag-name","requirements":">= 0"},{"name":"remote_syslog_logger","requirements":"~> 1.0.0"}]},"built_at":"2016-12-28T00:00:00.000Z","created_at":"2016-12-28T02:52:55.100Z","description":"","downloads_count":353,"number":"0.3.4","summary":"Fluentd output plugin for remote syslog, specific to kubernetes logs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kuromoji","downloads":1990,"version":"0.0.2","version_downloads":984,"platform":"ruby","authors":"Hiroshi Toyama","info":"Output kuromoji analysis Plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"3316638170a243f71d9f9509ba76225dde38d5bfeccb3adc3b93ee60a96da94e","project_uri":"https://rubygems.org/gems/fluent-plugin-kuromoji","gem_uri":"https://rubygems.org/gems/fluent-plugin-kuromoji-0.0.2.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-kuromoji","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kuromoji/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"fluent-plugin-twitter","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"spork","requirements":">= 0"}],"runtime":[{"name":"kuromoji-ruby","requirements":">= 0"}]},"built_at":"2015-06-02T00:00:00.000Z","created_at":"2015-06-02T01:27:43.658Z","description":"Output kuromoji analysis Plugin for fluentd","downloads_count":984,"number":"0.0.2","summary":"Output kuromoji analysis Plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kv-parser","downloads":3730,"version":"0.0.1","version_downloads":3730,"platform":"ruby","authors":"kiyoto","info":"Fluentd parser plugin to parse key value pairs","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"e6e899c536f3a5d50f32ff892ab981f18913f52c2f558c03192d9f3922361623","project_uri":"https://rubygems.org/gems/fluent-plugin-kv-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-kv-parser-0.0.1.gem","homepage_uri":"https://github.com/kiyoto/fluent-plugin-kv-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kv-parser/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.1"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2014-12-17T00:00:00.000Z","created_at":"2014-12-17T23:38:44.047Z","description":"Fluentd parser plugin to parse key value pairs","downloads_count":3730,"number":"0.0.1","summary":"Fluentd parser plugin to parse key value pairs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-kvp-filter","downloads":774,"version":"0.1.1","version_downloads":580,"platform":"ruby","authors":"Matt DeBoer","info":"Fluent filter plugin for parsing key/value fields in records","licenses":["MIT"],"metadata":{},"sha":"28245da35875fe5da924ac2148b5f12006769836c6b1ea7952965b16f685de1c","project_uri":"https://rubygems.org/gems/fluent-plugin-kvp-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-kvp-filter-0.1.1.gem","homepage_uri":"https://github.com/matt-deboer/fluent-plugin-kvp-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-kvp-filter/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"},{"name":"logfmt","requirements":">= 0"}]},"built_at":"2017-02-20T00:00:00.000Z","created_at":"2017-02-20T18:35:46.258Z","description":"Fluent filter plugin for parsing key/value fields in records","downloads_count":580,"number":"0.1.1","summary":"Fluent filter plugin for parsing key/value fields in records","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-lambda","downloads":7311,"version":"0.2.1","version_downloads":5079,"platform":"ruby","authors":"Genki Sugawara","info":"Output plugin for AWS Lambda.","licenses":["MIT"],"metadata":{},"sha":"eb31c9fd54e74bd13e08032684bd268cf2c406b9b6e70d905bfc027ef507323e","project_uri":"https://rubygems.org/gems/fluent-plugin-lambda","gem_uri":"https://rubygems.org/gems/fluent-plugin-lambda-0.2.1.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-lambda","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-lambda/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"}],"runtime":[{"name":"aws-sdk-core","requirements":"~> 2.1"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-03-19T00:00:00.000Z","created_at":"2016-03-19T07:36:40.981Z","description":"Output plugin for AWS Lambda.","downloads_count":5079,"number":"0.2.1","summary":"Output plugin for AWS Lambda.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-latency","downloads":3076,"version":"0.0.2","version_downloads":1681,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to measure latency until receiving the messages","licenses":["MIT"],"metadata":{},"sha":"60a6a0c9a59ed03a0668a66502c367aa88a9889bdbc32a4989ea6107c478c16c","project_uri":"https://rubygems.org/gems/fluent-plugin-latency","gem_uri":"https://rubygems.org/gems/fluent-plugin-latency-0.0.2.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-latency","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-latency/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-11-26T00:00:00.000Z","created_at":"2014-11-26T13:05:50.949Z","description":"Fluentd plugin to measure latency until receiving the messages","downloads_count":1681,"number":"0.0.2","summary":"Fluentd plugin to measure latency until receiving the messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-lazy-json-parser","downloads":2991,"version":"0.0.4","version_downloads":1282,"platform":"ruby","authors":"mathpl","info":"fluentd plugin to json parse single field if possible or simply forward the data if impossible. Can also combine log structure into single field","licenses":["APLv2"],"metadata":{},"sha":"9a7da42f40c91aa6096899831c994ab3343c767febd58c64a1b7a6f9adb0c292","project_uri":"https://rubygems.org/gems/fluent-plugin-lazy-json-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-lazy-json-parser-0.0.4.gem","homepage_uri":"https://github.com/mathpl/fluent-plugin-lazy-json-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-lazy-json-parser/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-05-09T00:00:00.000Z","created_at":"2016-05-09T21:39:45.799Z","description":"fluentd plugin to json parse single field if possible or simply forward the data if impossible. Can also combine log structure into single field","downloads_count":1282,"number":"0.0.4","summary":"plugin to parse/combine fluentd log messages if possible","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-leftronic","downloads":2013,"version":"0.0.4","version_downloads":1710,"platform":"ruby","authors":"toyama0919","info":"Leftronic output plugin for Fluentd.","licenses":["MIT"],"metadata":{},"sha":"7fd4dfc37cec9c7e50ad797bd26023de23bd45bfc03589b98cea68976c6787e7","project_uri":"https://rubygems.org/gems/fluent-plugin-leftronic","gem_uri":"https://rubygems.org/gems/fluent-plugin-leftronic-0.0.4.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-leftronic/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-leftronic/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"leftronic","requirements":">= 0"}]},"built_at":"2013-08-25T00:00:00.000Z","created_at":"2013-08-25T09:04:49.421Z","description":"Leftronic output plugin for Fluentd.","downloads_count":1710,"number":"0.0.4","summary":"Leftronic output plugin for Fluentd.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-librato","downloads":3635,"version":"0.0.1","version_downloads":3635,"platform":"ruby","authors":"kiyoto","info":"Fluentd plugin to post data to Librato Metrics","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"4c86de755f92c58ad250a65d9f5c7f034f06d7bc170d8ca19c840fea5ff83696","project_uri":"https://rubygems.org/gems/fluent-plugin-librato","gem_uri":"https://rubygems.org/gems/fluent-plugin-librato-0.0.1.gem","homepage_uri":"https://github.com/kiyoto/fluent-plugin-librato","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-librato/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"librato-metrics","requirements":">= 0"}]},"built_at":"2014-07-23T00:00:00.000Z","created_at":"2014-07-23T05:56:07.329Z","description":"","downloads_count":3635,"number":"0.0.1","summary":"Fluentd plugin to post data to Librato Metrics","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-librato-metrics","downloads":4155,"version":"0.2.3","version_downloads":2316,"platform":"ruby","authors":"Sadayuki Furuhashi","info":"Librato metrics output plugin for Fluent event collector","licenses":null,"metadata":{},"sha":"e0f04c08fe46ee96efa37fad25d667066c00bf3c376accffbd4b2d0d468b8c76","project_uri":"https://rubygems.org/gems/fluent-plugin-librato-metrics","gem_uri":"https://rubygems.org/gems/fluent-plugin-librato-metrics-0.2.3.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-librato-metrics/0.2.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2012-03-30T00:00:00.000Z","created_at":"2012-03-30T21:38:39.274Z","description":"Librato metrics output plugin for Fluent event collector","downloads_count":2316,"number":"0.2.3","summary":"Librato metrics output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-line-notify","downloads":392,"version":"0.1.0","version_downloads":392,"platform":"ruby","authors":"Atsushi Takayama","info":"fluent-plugin-line-notify is a fluentd plugin to call LINE Notify API.","licenses":["MIT"],"metadata":{},"sha":"8c8f1940b22f27c3865f9beb806b226868189b75f772221349d2c447cb25507c","project_uri":"https://rubygems.org/gems/fluent-plugin-line-notify","gem_uri":"https://rubygems.org/gems/fluent-plugin-line-notify-0.1.0.gem","homepage_uri":"https://github.com/edvakf/fluent-plugin-line-notify","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-line-notify/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13.1"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1.5"},{"name":"test-unit-rr","requirements":"~> 1.0.5"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"httparty","requirements":">= 0"}]},"built_at":"2016-10-01T00:00:00.000Z","created_at":"2016-10-01T15:19:48.020Z","description":"fluent-plugin-line-notify is a fluentd plugin to call LINE Notify API.","downloads_count":392,"number":"0.1.0","summary":"fluentd output plugin for LINE Notify","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-loadaverage","downloads":901,"version":"0.0.1","version_downloads":901,"platform":"ruby","authors":"mogulla3","info":"Fluent input plugin to collect load average via uptime command.","licenses":[],"metadata":{},"sha":"8ee3dc4ae9348a707a6838990a3ac76923949d86ddcd0b4c76f256960b6a7ab1","project_uri":"https://rubygems.org/gems/fluent-plugin-loadaverage","gem_uri":"https://rubygems.org/gems/fluent-plugin-loadaverage-0.0.1.gem","homepage_uri":"https://github.com/mogulla3/fluent-plugin-loadaverage","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-loadaverage/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-09-20T00:00:00.000Z","created_at":"2015-09-20T15:18:42.538Z","description":"Fluent input plugin to collect load average via uptime command.","downloads_count":901,"number":"0.0.1","summary":"Fluent input plugin to collect load average via uptime command.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logdna","downloads":3287,"version":"0.1.7","version_downloads":217,"platform":"ruby","authors":"Edwin Lai","info":"Fluentd plugin for supplying output to LogDNA.","licenses":["MIT"],"metadata":{},"sha":"0a58c54b1ccd2e2f029bbfeba6a8dafc28b1282a8546712bee95070fba2792bc","project_uri":"https://rubygems.org/gems/fluent-plugin-logdna","gem_uri":"https://rubygems.org/gems/fluent-plugin-logdna-0.1.7.gem","homepage_uri":"https://github.com/logdna/fluent-plugin-logdna","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logdna/0.1.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.12.0"},{"name":"http","requirements":">= 2.0.3, ~> 2.0"}]},"built_at":"2017-04-20T00:00:00.000Z","created_at":"2017-04-20T23:42:10.133Z","description":"Fluentd plugin for supplying output to LogDNA.","downloads_count":217,"number":"0.1.7","summary":"LogDNA plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logentries","downloads":15723,"version":"0.2.10","version_downloads":3805,"platform":"ruby","authors":"Woorank","info":"Logentries output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"c05949ff9715e08b4dad2fd98b9ddd9e598adc54309f5d107b2e67aeb46b975d","project_uri":"https://rubygems.org/gems/fluent-plugin-logentries","gem_uri":"https://rubygems.org/gems/fluent-plugin-logentries-0.2.10.gem","homepage_uri":"https://github.com/Woorank/fluent-plugin-logentries","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logentries/0.2.10","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2015-03-05T00:00:00.000Z","created_at":"2015-03-05T09:27:58.679Z","description":"","downloads_count":3805,"number":"0.2.10","summary":"Logentries output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logentries_ssl","downloads":263,"version":"0.1.0","version_downloads":263,"platform":"ruby","authors":"larte","info":"Plugin to send records to logentries","licenses":["Apache-2.0"],"metadata":{},"sha":"78e2be560b9605959edf4c16ea0f4b4490fa25e53fdb2b7284c8b3ea59d71af3","project_uri":"https://rubygems.org/gems/fluent-plugin-logentries_ssl","gem_uri":"https://rubygems.org/gems/fluent-plugin-logentries_ssl-0.1.0.gem","homepage_uri":"https://github.com/larte/fluent-plugin-logentries_ssl","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logentries_ssl/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14"},{"name":"mocha","requirements":">= 0"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.10"}]},"built_at":"2017-03-20T00:00:00.000Z","created_at":"2017-03-20T15:43:14.376Z","description":"Plugin to send records to logentries","downloads_count":263,"number":"0.1.0","summary":"Plugin to send records to logentries","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logentries-stridespark","downloads":248,"version":"0.2.11","version_downloads":248,"platform":"ruby","authors":"StrideSpark","info":"Logentries output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"202511dab9d93b91c48fe44816df86a181402ed21e2254dbcb530d3196b2c906","project_uri":"https://rubygems.org/gems/fluent-plugin-logentries-stridespark","gem_uri":"https://rubygems.org/gems/fluent-plugin-logentries-stridespark-0.2.11.gem","homepage_uri":"https://github.com/stridespark/fluent-plugin-logentries","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logentries-stridespark/0.2.11","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2017-03-14T00:00:00.000Z","created_at":"2017-03-14T03:41:16.825Z","description":"","downloads_count":248,"number":"0.2.11","summary":"Logentries output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logentries-tmpfix","downloads":2869,"version":"0.2.13","version_downloads":1277,"platform":"ruby","authors":"bigwheel","info":"Logentries output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"1bb8a43ae2490225c9460457435a3e3f952b960315926629a0d9509f7d7f37b9","project_uri":"https://rubygems.org/gems/fluent-plugin-logentries-tmpfix","gem_uri":"https://rubygems.org/gems/fluent-plugin-logentries-tmpfix-0.2.13.gem","homepage_uri":"https://github.com/bigwheel/fluent-plugin-logentries","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logentries-tmpfix/0.2.13","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2016-04-12T00:00:00.000Z","created_at":"2016-04-12T05:55:11.980Z","description":"","downloads_count":1277,"number":"0.2.13","summary":"Logentries output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logfmt-parser","downloads":1205,"version":"0.0.1","version_downloads":1205,"platform":"ruby","authors":"forresty","info":"Fluentd parser plugin to parse logfmt format","licenses":["MIT"],"metadata":{},"sha":"33889e614ec8a54cf4d3dadfe395d5c38f3d9096451e8187c74922bdf42ff41d","project_uri":"https://rubygems.org/gems/fluent-plugin-logfmt-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-logfmt-parser-0.0.1.gem","homepage_uri":"https://github.com/forresty/fluent-plugin-logfmt-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logfmt-parser/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.1"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"},{"name":"logfmt","requirements":">= 0"}]},"built_at":"2015-02-06T00:00:00.000Z","created_at":"2015-02-06T09:50:37.405Z","description":"Fluentd parser plugin to parse logfmt format","downloads_count":1205,"number":"0.0.1","summary":"Fluentd parser plugin to parse logfmt format","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-loggly","downloads":50216,"version":"0.1.0.pre","version_downloads":283,"platform":"ruby","authors":"Patrik Antonsson","info":"Fluentd pluging (fluentd.org) for output to loggly (loggly.com)","licenses":["Apache-2.0"],"metadata":{},"sha":"a0979a26321e0af9137074dcc8ea14cf21dd037da35b0499a4e69a830df5b521","project_uri":"https://rubygems.org/gems/fluent-plugin-loggly","gem_uri":"https://rubygems.org/gems/fluent-plugin-loggly-0.1.0.pre.gem","homepage_uri":"https://github.com/patant/fluent-plugin-loggly","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-loggly/0.1.0.pre","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"net-http-persistent","requirements":">= 2.7"},{"name":"yajl-ruby","requirements":">= 1.0"}]},"built_at":"2016-04-20T00:00:00.000Z","created_at":"2016-04-20T11:46:19.425Z","description":"Fluentd pluging (fluentd.org) for output to loggly (loggly.com)","downloads_count":283,"number":"0.1.0.pre","summary":"Fluentd plugin for output to loggly","rubygems_version":"> 1.3.1","ruby_version":">= 1.9.3","prerelease":true,"requirements":[]},{"name":"fluent-plugin-logio","downloads":1149,"version":"1.1.0","version_downloads":731,"platform":"ruby","authors":"Black Roland","info":"Log.io output plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"b17c2a733599277461113b6bc455f24d05671a3d258ff852ed92511f24f3c140","project_uri":"https://rubygems.org/gems/fluent-plugin-logio","gem_uri":"https://rubygems.org/gems/fluent-plugin-logio-1.1.0.gem","homepage_uri":"https://github.com/black-roland/fluent-plugin-logio","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logio/1.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[]},"built_at":"2016-06-25T00:00:00.000Z","created_at":"2016-06-25T12:25:59.979Z","description":"Log.io output plugin for Fluentd","downloads_count":731,"number":"1.1.0","summary":"Fluentd Log.io plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logmatic","downloads":2845,"version":"0.9.0","version_downloads":195,"platform":"ruby","authors":"Logmatic support team","info":"Logmatic output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"09ec2a5dbdf52003206a45559f572a446add82b704fae979562b4cb681d8242a","project_uri":"https://rubygems.org/gems/fluent-plugin-logmatic","gem_uri":"https://rubygems.org/gems/fluent-plugin-logmatic-0.9.0.gem","homepage_uri":"http://logmatic.io","wiki_uri":"http://doc.logmatic.io/","documentation_uri":"http://doc.logmatic.io/","mailing_list_uri":"","source_code_uri":"https://github.com/logmatic/fluent-plugin-logmatic","bug_tracker_uri":"https://github.com/logmatic/fluent-plugin-logmatic/issues","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2017-05-03T00:00:00.000Z","created_at":"2017-05-03T09:08:23.503Z","description":"","downloads_count":195,"number":"0.9.0","summary":"Logmatic output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logsene","downloads":3169,"version":"0.0.3","version_downloads":1280,"platform":"ruby","authors":"Sematext","info":"fluent plugin for logsene","licenses":["MIT"],"metadata":{},"sha":"6ed245ff12347401258bfe05b3ae1d19eed57525b3996713b47b3ad2b87886b6","project_uri":"https://rubygems.org/gems/fluent-plugin-logsene","gem_uri":"https://rubygems.org/gems/fluent-plugin-logsene-0.0.3.gem","homepage_uri":"https://github.com/mbonaci/fluent-plugin-logsene","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logsene/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-08-17T00:00:00.000Z","created_at":"2015-08-17T21:24:19.880Z","description":"fluent plugin for logsene","downloads_count":1280,"number":"0.0.3","summary":"Logsene is a centralized log management solution from Sematext. The plugin is fluentd output plugin for Logsene","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logtank-http","downloads":4368,"version":"0.0.5","version_downloads":1051,"platform":"ruby","authors":"Peter Grman","info":"enhanced input plugin for HTTP based on fluentd's HTTP plugin in core","licenses":["Apache License 2.0"],"metadata":{},"sha":"25f9d3acd369d692cbbd2932c3c78bb554fbe3ff9a3b3f4822431e12ddd444cb","project_uri":"https://rubygems.org/gems/fluent-plugin-logtank-http","gem_uri":"https://rubygems.org/gems/fluent-plugin-logtank-http-0.0.5.gem","homepage_uri":"https://github.com/logtank/fluent-plugin-http","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logtank-http/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"}],"runtime":[{"name":"cool.io","requirements":"< 2.0.0, >= 1.2.2"},{"name":"fluentd","requirements":">= 0"},{"name":"http_parser.rb","requirements":"< 0.7.0, >= 0.5.1"}]},"built_at":"2015-05-12T00:00:00.000Z","created_at":"2015-05-12T09:32:05.938Z","description":"enhanced input plugin for HTTP based on fluentd's HTTP plugin in core","downloads_count":1051,"number":"0.0.5","summary":"enhanced input plugin for HTTP","rubygems_version":">= 0","ruby_version":">= 2.1","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logtank-rethinkdb","downloads":4795,"version":"0.2.3","version_downloads":1099,"platform":"ruby","authors":"Vinh Nguyen, Peter Grman","info":"RethinkDB plugin for Fluentd","licenses":[],"metadata":{},"sha":"6da7a49da0390752abb62dd6c36f238569cc4f10491db3e38aeb9993c753ab4e","project_uri":"https://rubygems.org/gems/fluent-plugin-logtank-rethinkdb","gem_uri":"https://rubygems.org/gems/fluent-plugin-logtank-rethinkdb-0.2.3.gem","homepage_uri":"https://github.com/logtank/fluent-plugin-rethink","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logtank-rethinkdb/0.2.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":"~> 4.7.3"},{"name":"rake","requirements":">= 0.9.2"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"rethinkdb","requirements":">= 2.0.0"}]},"built_at":"2015-04-24T00:00:00.000Z","created_at":"2015-04-24T12:51:34.460Z","description":"RethinkDB plugin for Fluentd","downloads_count":1099,"number":"0.2.3","summary":"RethinkDB plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logzio","downloads":7051,"version":"0.0.10","version_downloads":428,"platform":"ruby","authors":"Yury Kotov, Roi Rav-Hon","info":"Fluentd pluging (fluent.org) for output to Logz.io (logz.io)","licenses":["Apache-2.0"],"metadata":{},"sha":"50421bc6fc8ffe5689589c74cabef32007a8ee32009cb9a2f6839e8c067cb186","project_uri":"https://rubygems.org/gems/fluent-plugin-logzio","gem_uri":"https://rubygems.org/gems/fluent-plugin-logzio-0.0.10.gem","homepage_uri":"https://github.com/logzio/fluent-plugin-logzio","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logzio/0.0.10","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.4"},{"name":"rspec","requirements":"~> 3.3"},{"name":"test-unit","requirements":"~> 3.1"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"},{"name":"net-http-persistent","requirements":"~> 2.7"}]},"built_at":"2017-04-27T00:00:00.000Z","created_at":"2017-04-27T07:50:26.948Z","description":"Fluentd pluging (fluent.org) for output to Logz.io (logz.io)","downloads_count":428,"number":"0.0.10","summary":"Fluentd plugin for output to Logz.io","rubygems_version":">= 0","ruby_version":">= 1.9.3","prerelease":false,"requirements":[]},{"name":"fluent-plugin-logzio-ng","downloads":421,"version":"0.0.7","version_downloads":421,"platform":"ruby","authors":"Kostiantyn Lysenko, Yury Kotov, Roi Rav-Hon","info":"Another one Fluentd pluging (fluent.org) for output to Logz.io (logz.io)","licenses":["Apache-2.0"],"metadata":{},"sha":"e45531d240e6def30dbaf0829b689db47a587558c21b130c262de162d3820c9c","project_uri":"https://rubygems.org/gems/fluent-plugin-logzio-ng","gem_uri":"https://rubygems.org/gems/fluent-plugin-logzio-ng-0.0.7.gem","homepage_uri":"https://github.com/logzio/fluent-plugin-logzio-ng","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-logzio-ng/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.4"},{"name":"rspec","requirements":"~> 3.3"},{"name":"test-unit","requirements":"~> 3.1"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"},{"name":"net-http-persistent","requirements":"~> 2.7"}]},"built_at":"2016-12-23T00:00:00.000Z","created_at":"2016-12-23T09:36:10.065Z","description":"Another one Fluentd pluging (fluent.org) for output to Logz.io (logz.io)","downloads_count":421,"number":"0.0.7","summary":"Another one Fluentd plugin for output to Logz.io","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-lookup","downloads":2668,"version":"0.0.3","version_downloads":1299,"platform":"ruby","authors":"Neozaru","info":"Fluentd custom plugin to replace fields values using lookup table file","licenses":["WTFPL"],"metadata":{},"sha":"9fbda54defcd8139e558a6884c2c559c7e2c8151553f543a06c34c33c8ca267f","project_uri":"https://rubygems.org/gems/fluent-plugin-lookup","gem_uri":"https://rubygems.org/gems/fluent-plugin-lookup-0.0.3.gem","homepage_uri":"https://github.com/Neozaru/fluent-plugin-lookup.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-lookup/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2015-04-15T00:00:00.000Z","created_at":"2015-04-15T19:16:52.476Z","description":"Fluentd custom plugin to replace fields values using lookup table file","downloads_count":1299,"number":"0.0.3","summary":"Fluentd custom plugin to replace fields values using lookup table file","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-lossycount","downloads":2050,"version":"0.0.1","version_downloads":2050,"platform":"ruby","authors":"moaikids","info":"Lossy count output plugin for Fluentd...","licenses":["Apache License Version 2.0"],"metadata":{},"sha":"8a58238f5c3f86e5a6a58d735de3fd1c8e706cfd4f93191c09e9ef1e531d82d0","project_uri":"https://rubygems.org/gems/fluent-plugin-lossycount","gem_uri":"https://rubygems.org/gems/fluent-plugin-lossycount-0.0.1.gem","homepage_uri":"https://github.com/moaikids/fluent-plugin-lossycount","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-lossycount/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-08-31T00:00:00.000Z","created_at":"2013-08-31T07:21:05.622Z","description":"Lossy count output plugin for Fluentd...","downloads_count":2050,"number":"0.0.1","summary":"Lossy count output plugin for Fluentd","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-ltsv-parser","downloads":11507,"version":"0.0.12","version_downloads":1257,"platform":"ruby","authors":"anarcher","info":"fluentd plugin to ltsv parse single field, or to combine log structure into single field","licenses":["APLv2"],"metadata":{},"sha":"9ca2ddd2f0a3c4863715128cf17697e814ab734089bfe3a514206ffa386e9af3","project_uri":"https://rubygems.org/gems/fluent-plugin-ltsv-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-ltsv-parser-0.0.12.gem","homepage_uri":"https://github.com/anarcher/fluent-plugin-ltsv-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ltsv-parser/0.0.12","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-10-29T00:00:00.000Z","created_at":"2014-10-29T10:27:39.901Z","description":"fluentd plugin to ltsv parse single field, or to combine log structure into single field","downloads_count":1257,"number":"0.0.12","summary":"plugin to parse/combine fluentd log messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mackerel","downloads":68308,"version":"0.1.3","version_downloads":54923,"platform":"ruby","authors":"tksmd, hatz48, stanaka, Songmu","info":"fluent plugin to send metrics to mackerel.io","licenses":["Apache-2.0"],"metadata":{},"sha":"0edfcdbceb9d423bc2b08773d761f7c9905b6b724134eef2883bb7cf193fa76d","project_uri":"https://rubygems.org/gems/fluent-plugin-mackerel","gem_uri":"https://rubygems.org/gems/fluent-plugin-mackerel-0.1.3.gem","homepage_uri":"https://github.com/mackerelio/fluent-plugin-mackerel","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mackerel/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 1.0.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mackerel-client","requirements":">= 0"}]},"built_at":"2015-08-14T00:00:00.000Z","created_at":"2015-08-14T15:44:48.546Z","description":"fluent plugin to send metrics to mackerel.io","downloads_count":54923,"number":"0.1.3","summary":"fluent plugin to send metrics to mackerel.io","rubygems_version":">= 0","ruby_version":">= 1.9.3","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mail","downloads":58267,"version":"0.2.4","version_downloads":26493,"platform":"ruby","authors":"Yuichi UEMURA, Naotoshi Seo","info":"output plugin for Mail","licenses":["Apache-2.0"],"metadata":{},"sha":"f913cd4827c649eb3ce89e82a57d5fdb96184f194c3ca0fa9f58c2b5f52e7c38","project_uri":"https://rubygems.org/gems/fluent-plugin-mail","gem_uri":"https://rubygems.org/gems/fluent-plugin-mail-0.2.4.gem","homepage_uri":"https://github.com/u-ichi/fluent-plugin-mail","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mail/0.2.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-03-07T00:00:00.000Z","created_at":"2016-03-07T15:57:55.807Z","description":"output plugin for Mail","downloads_count":26493,"number":"0.2.4","summary":"output plugin for Mail","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mailrelay","downloads":755,"version":"0.0.0","version_downloads":755,"platform":"ruby","authors":"Yudai Kato","info":"trace mail relayed in intra network.","licenses":["MIT"],"metadata":{},"sha":"d8bfcd931ef69435250da805a99d0ed511ab9c90b278977ce2b32c35cd7cc75a","project_uri":"https://rubygems.org/gems/fluent-plugin-mailrelay","gem_uri":"https://rubygems.org/gems/fluent-plugin-mailrelay-0.0.0.gem","homepage_uri":"https://github.com/yudai09/fluent-plugin-mailrelay.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mailrelay/0.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"lru_redux","requirements":">= 0.8.4"}]},"built_at":"2016-07-18T00:00:00.000Z","created_at":"2016-07-18T08:37:33.618Z","description":"trace mail relayed in intra network.","downloads_count":755,"number":"0.0.0","summary":"Output plugin to trace mail relayed in intranetwork.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-map","downloads":82662,"version":"0.2.1","version_downloads":383,"platform":"ruby","authors":"Kohei Tomita, Hiroshi Hatake, Kenji Okomoto","info":"fluent-plugin-map is the non-buffered plugin that can convert an event log to different event log(s). ","licenses":["Apache-2.0"],"metadata":{},"sha":"ac5a8163149973f9355cf089b0309ea74219211e2c4e5356ef1ef2bb80c7c090","project_uri":"https://rubygems.org/gems/fluent-plugin-map","gem_uri":"https://rubygems.org/gems/fluent-plugin-map-0.2.1.gem","homepage_uri":"https://github.com/fluent-plugins-nursery/fluent-plugin-map","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-map/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"fluentd","requirements":"< 2, >= 0.14.0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1"}],"runtime":[]},"built_at":"2017-04-25T00:00:00.000Z","created_at":"2017-04-25T07:47:18.222Z","description":"fluent-plugin-map is the non-buffered plugin that can convert an event log to different event log(s). ","downloads_count":383,"number":"0.2.1","summary":"fluent-plugin-map is the non-buffered plugin that can convert an event log to different event log(s).","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-measure_time","downloads":5455,"version":"0.2.1","version_downloads":989,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to measure elapsed time to process messages","licenses":["MIT"],"metadata":{},"sha":"cceee873333cfcb792fc43ce9f226a123d19cb5c6bf9568cfd0c83995eedab43","project_uri":"https://rubygems.org/gems/fluent-plugin-measure_time","gem_uri":"https://rubygems.org/gems/fluent-plugin-measure_time-0.2.1.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-measure_time","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-measure_time/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"rspec-its","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-04-09T00:00:00.000Z","created_at":"2016-04-09T14:50:21.918Z","description":"Fluentd plugin to measure elapsed time to process messages","downloads_count":989,"number":"0.2.1","summary":"Fluentd plugin to measure elapsed time to process messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mecab","downloads":1499,"version":"0.0.1","version_downloads":1499,"platform":"ruby","authors":"MATSUMOTO Katsuyoshi","info":"fluentd plugin for MeCab","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"e80499464ef0e7b9445e101ac9be7a8931f21fce8e4b8f085de2d8515ccb8f0f","project_uri":"https://rubygems.org/gems/fluent-plugin-mecab","gem_uri":"https://rubygems.org/gems/fluent-plugin-mecab-0.0.1.gem","homepage_uri":"http://github.com/katsyoshi/fluent-plugin-mecab","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mecab/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"natto","requirements":">= 0"}]},"built_at":"2014-02-10T00:00:00.000Z","created_at":"2014-02-10T11:25:54.978Z","description":"fluentd plugin for MeCab","downloads_count":1499,"number":"0.0.1","summary":"fluentd plugin for MeCab","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-memcached","downloads":4029,"version":"0.0.7","version_downloads":811,"platform":"ruby","authors":"innossh","info":"Memcached output plugin for Fluent","licenses":["Apache-2.0"],"metadata":{},"sha":"47d6525811ba65c31d2b5392945e197e9e217cbaba27f2397d8c39ba34e2bddf","project_uri":"https://rubygems.org/gems/fluent-plugin-memcached","gem_uri":"https://rubygems.org/gems/fluent-plugin-memcached-0.0.7.gem","homepage_uri":"https://github.com/innossh/fluent-plugin-memcached","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-memcached/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"dalli","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-12-01T00:00:00.000Z","created_at":"2015-12-01T15:08:24.778Z","description":"","downloads_count":811,"number":"0.0.7","summary":"Memcached output plugin for Fluent","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mesosphere-filter","downloads":9599,"version":"0.1.11","version_downloads":3283,"platform":"ruby","authors":"Joseph Hughes","info":"Filter plugin to add Mesosphere metadata","licenses":["ASL2"],"metadata":{},"sha":"eb1eed538cf3162124e34e853cce330c4c18b0fa8c7676aaad1c5d6549e24726","project_uri":"https://rubygems.org/gems/fluent-plugin-mesosphere-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-mesosphere-filter-0.1.11.gem","homepage_uri":"https://github.com/joshughes/fluent-plugin-mesosphere-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mesosphere-filter/0.1.11","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"codeclimate-test-reporter","requirements":">= 0"},{"name":"minitest","requirements":"~> 5.0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":"~> 1.23"},{"name":"fluentd","requirements":">= 0.10.43"},{"name":"lru_redux","requirements":"~> 1.1"},{"name":"oj","requirements":">= 2.13.1"}]},"built_at":"2016-09-06T00:00:00.000Z","created_at":"2016-09-06T02:55:52.476Z","description":"Filter plugin to add Mesosphere metadata","downloads_count":3283,"number":"0.1.11","summary":"Filter plugin to add Mesosphere metadata to fluentd from Chronos and Marathon","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-metricsense","downloads":33801,"version":"0.3.2","version_downloads":3524,"platform":"ruby","authors":"Sadayuki Furuhashi","info":"MetricSense - application metrics aggregation plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"ed3bf5bfcba3dd1d10081a55bbd73d0e3242386aa03c43bc77fb125bcc457458","project_uri":"https://rubygems.org/gems/fluent-plugin-metricsense","gem_uri":"https://rubygems.org/gems/fluent-plugin-metricsense-0.3.2.gem","homepage_uri":"https://github.com/treasure-data/fluent-plugin-metricsense","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-metricsense/0.3.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 1.0.0"},{"name":"rake","requirements":">= 0.8.7"},{"name":"simplecov","requirements":">= 0.10.0"},{"name":"test-unit","requirements":">= 3.1.1"}],"runtime":[{"name":"dogapi","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.6"}]},"built_at":"2017-01-27T00:00:00.000Z","created_at":"2017-01-27T08:12:29.639Z","description":"MetricSense - application metrics aggregation plugin for Fluentd","downloads_count":3524,"number":"0.3.2","summary":"MetricSense - application metrics aggregation plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-midi","downloads":3291,"version":"0.1.0","version_downloads":1347,"platform":"ruby","authors":"meganemura","info":"MIDI Input/Output plugin for Fluentd event collector","licenses":["MIT"],"metadata":{},"sha":"7a220ac56531d934039730d51296e458906461333398e2d4ec8bbc098f429b1b","project_uri":"https://rubygems.org/gems/fluent-plugin-midi","gem_uri":"https://rubygems.org/gems/fluent-plugin-midi-0.1.0.gem","homepage_uri":"https://github.com/meganemura/fluent-plugin-midi","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-midi/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"rtmidi","requirements":">= 0.3"}]},"built_at":"2014-06-29T00:00:00.000Z","created_at":"2014-06-29T05:57:03.072Z","description":"MIDI Input/Output plugin for Fluentd event collector","downloads_count":1347,"number":"0.1.0","summary":"MIDI Input/Output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mixi_community","downloads":4351,"version":"0.0.3","version_downloads":1587,"platform":"ruby","authors":"todesking","info":"Fluentd input plugin, source from Mixi community","licenses":[],"metadata":{},"sha":"0fdc7c13941c5eca2fe20a6f2c7f8fb42702bd5afc4a0e7622bae203a08f9a8b","project_uri":"https://rubygems.org/gems/fluent-plugin-mixi_community","gem_uri":"https://rubygems.org/gems/fluent-plugin-mixi_community-0.0.3.gem","homepage_uri":"https://github.com/todesking/fluent-plugin-mixi_community","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mixi_community/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mixi-community","requirements":">= 0.0.4"},{"name":"pit","requirements":">= 0"}]},"built_at":"2013-10-25T00:00:00.000Z","created_at":"2013-10-25T05:44:58.953Z","description":null,"downloads_count":1587,"number":"0.0.3","summary":"Fluentd input plugin, source from Mixi community","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-mixpanel","downloads":13397,"version":"0.0.9","version_downloads":1822,"platform":"ruby","authors":"Kazuyuki Honda","info":"Fluentd plugin to input/output event track data to mixpanel","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"90688f6cfdc98d4408980f3cbb09768ebf481a09a28343f9357ee529e5058359","project_uri":"https://rubygems.org/gems/fluent-plugin-mixpanel","gem_uri":"https://rubygems.org/gems/fluent-plugin-mixpanel-0.0.9.gem","homepage_uri":"https://github.com/hakobera/fluent-plugin-mixpanel","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mixpanel/0.0.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.55"},{"name":"mixpanel-ruby","requirements":"~> 2.2.0"}]},"built_at":"2016-09-28T00:00:00.000Z","created_at":"2016-09-28T04:19:10.307Z","description":"Fluentd plugin to input/output event track data to mixpanel","downloads_count":1822,"number":"0.0.9","summary":"Fluentd plugin to input/output event track data to mixpanel","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mixpanel-enchanced","downloads":926,"version":"0.0.13","version_downloads":408,"platform":"ruby","authors":"zhron4x","info":"Fluentd plugin to input/output event track data to mixpanel","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"3a261c0cd349fff61d29f4760501709890e76f4e67f920776f3dce1b6c9f6444","project_uri":"https://rubygems.org/gems/fluent-plugin-mixpanel-enchanced","gem_uri":"https://rubygems.org/gems/fluent-plugin-mixpanel-enchanced-0.0.13.gem","homepage_uri":"https://github.com/zhron4x/fluent-plugin-mixpanel-enchanced","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mixpanel-enchanced/0.0.13","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.55"},{"name":"mixpanel-ruby","requirements":"~> 2.2.0"}]},"built_at":"2017-02-08T00:00:00.000Z","created_at":"2017-02-08T16:17:25.032Z","description":"Fluentd plugin to input/output event track data to mixpanel","downloads_count":408,"number":"0.0.13","summary":"Fluentd plugin to input/output event track data to mixpanel","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mobile-carrier","downloads":4932,"version":"0.0.4","version_downloads":1480,"platform":"ruby","authors":"HARUYAMA Seigo","info":"judge mobile carrier by ip address.","licenses":["APLv2"],"metadata":{},"sha":"53208bbf3c582751dbfb9bc035350530309a9b9da305c3f6af6c9dbf98e2b7cf","project_uri":"https://rubygems.org/gems/fluent-plugin-mobile-carrier","gem_uri":"https://rubygems.org/gems/fluent-plugin-mobile-carrier-0.0.4.gem","homepage_uri":"http://github.com/haruyama/fluent-plugin-mobile-carrier","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mobile-carrier/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-04-19T00:00:00.000Z","created_at":"2014-04-19T08:39:30.687Z","description":"judge mobile carrier by ip address.","downloads_count":1480,"number":"0.0.4","summary":"Fluentd plugin to judge mobile carrier by ip address.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mongo","downloads":110809,"version":"1.0.0.rc2","version_downloads":149,"platform":"ruby","authors":"Masahiro Nakagawa","info":"MongoDB plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"0c3aabe83e7da8443ce350820e26a7da30d160d7d32999a544f5f15c21c888f7","project_uri":"https://rubygems.org/gems/fluent-plugin-mongo","gem_uri":"https://rubygems.org/gems/fluent-plugin-mongo-1.0.0.rc2.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-mongo","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mongo/1.0.0.rc2","mailing_list_uri":"","source_code_uri":"https://github.com/fluent/fluent-plugin-mongo","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"},{"name":"test-unit","requirements":">= 3.0.0"},{"name":"timecop","requirements":"~> 0.8.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.12"},{"name":"mongo","requirements":"~> 2.2.0"}]},"built_at":"2017-03-22T00:00:00.000Z","created_at":"2017-03-22T23:16:45.993Z","description":"MongoDB plugin for Fluentd","downloads_count":149,"number":"1.0.0.rc2","summary":"MongoDB plugin for Fluentd","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-mongokpi","downloads":4119,"version":"0.0.2","version_downloads":1624,"platform":"ruby","authors":"Hatayama Hideharu","info":"Fluent BufferedOutput plugin: counting chunk, inserting counts to make kpi count on MongoDB","licenses":["APLv2"],"metadata":{},"sha":"c917042ec8fd8b2953057796e90ce910181f45c32f07f9d5fe12954c5583d3ee","project_uri":"https://rubygems.org/gems/fluent-plugin-mongokpi","gem_uri":"https://rubygems.org/gems/fluent-plugin-mongokpi-0.0.2.gem","homepage_uri":"https://bitbucket.org/hidepiy/fluent-plugin-mongokpi","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mongokpi/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"bson_ext","requirements":"= 1.9.2"},{"name":"fluentd","requirements":">= 0"},{"name":"mongo","requirements":"= 1.9.2"}]},"built_at":"2013-12-19T00:00:00.000Z","created_at":"2013-12-19T17:30:21.566Z","description":"Fluent BufferedOutput plugin: counting chunk, inserting counts to make kpi count on MongoDB","downloads_count":1624,"number":"0.0.2","summary":"Fluent BufferedOutput plugin: counting chunk, inserting counts to make kpi count on MongoDB","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-mongo-slow-query","downloads":11745,"version":"0.1.1","version_downloads":6172,"platform":"ruby","authors":"Siyang Cao","info":"Fluent input plugin for MongoDB to collect slow operation log","licenses":[""],"metadata":{},"sha":"b7216e0ea5507ce06cd0e92684fd5107737b55c81e22461de7f6374f5d4366db","project_uri":"https://rubygems.org/gems/fluent-plugin-mongo-slow-query","gem_uri":"https://rubygems.org/gems/fluent-plugin-mongo-slow-query-0.1.1.gem","homepage_uri":"https://github.com/caosiyang/fluent-plugin-mongo-slow-query","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mongo-slow-query/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[]},"built_at":"2015-08-24T00:00:00.000Z","created_at":"2015-08-25T03:55:29.367Z","description":"Fluent input plugin for MongoDB to collect slow operation log","downloads_count":6172,"number":"0.1.1","summary":"Fluent input plugin for MongoDB to collect slow operation log","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mongostat","downloads":356,"version":"0.0.2","version_downloads":295,"platform":"ruby","authors":"Kouta Asai","info":"fluentd input plugin for mongostat.","licenses":[],"metadata":{},"sha":"9eaf9dc92b074f304210edcef285d3c3c3b93131bf5107347703696c3b1858a2","project_uri":"https://rubygems.org/gems/fluent-plugin-mongostat","gem_uri":"https://rubygems.org/gems/fluent-plugin-mongostat-0.0.2.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mongostat/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"minitest","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-02-20T00:00:00.000Z","created_at":"2017-02-20T05:15:02.086Z","description":"fluentd input plugin for mongostat.","downloads_count":295,"number":"0.0.2","summary":"fluentd input plugin for mongostat.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mongo-typed","downloads":2694,"version":"0.1.0","version_downloads":2694,"platform":"ruby","authors":"MORIYA Taro","info":"Typed mongo output plugin","licenses":["MIT"],"metadata":{},"sha":"0e8949cf8ea53738795858cb8c14c19a5ccfc9588ec6d1e126775418a5216db5","project_uri":"https://rubygems.org/gems/fluent-plugin-mongo-typed","gem_uri":"https://rubygems.org/gems/fluent-plugin-mongo-typed-0.1.0.gem","homepage_uri":"http://github.com/tarom/fluent-plugin-mongo-typed","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mongo-typed/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.0.0"},{"name":"jeweler","requirements":"~> 1.8.4"},{"name":"rdoc","requirements":"~> 3.12"}],"runtime":[{"name":"fluent-plugin-mongo","requirements":"~> 0.6.13"},{"name":"fluent-plugin-mongo","requirements":"~> 0.6.13"}]},"built_at":"2013-02-14T15:00:00.000Z","created_at":"2013-02-15T05:42:01.905Z","description":"Typed mongo output plugin","downloads_count":2694,"number":"0.1.0","summary":"Typed mongo output plugin","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-monolog","downloads":1677,"version":"0.1.6","version_downloads":155,"platform":"ruby","authors":"imunew","info":"Fluentd parser plugin to parse log text from monolog","licenses":["MIT"],"metadata":{},"sha":"fd214ef29d71fbdce5f268074cc432411c15f6ed8571553f6dde2800fad851c9","project_uri":"https://rubygems.org/gems/fluent-plugin-monolog","gem_uri":"https://rubygems.org/gems/fluent-plugin-monolog-0.1.6.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-monolog/0.1.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-05-12T00:00:00.000Z","created_at":"2017-05-12T02:30:35.062Z","description":"Fluentd parser plugin to parse log text from monolog","downloads_count":155,"number":"0.1.6","summary":"Fluentd parser plugin to parse log text from monolog","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-monolog-influxdb","downloads":1294,"version":"0.1.0","version_downloads":1294,"platform":"ruby","authors":"Giuseppe Iannello","info":"Output filter plugin to rewrite Monolog JSON output to be inserted into InfluxDB","licenses":["MIT"],"metadata":{},"sha":"da323d48ab5881bb9ec17bf5b6eae3c1e409e46bdbe4b7702784ebdc75cc333e","project_uri":"https://rubygems.org/gems/fluent-plugin-monolog-influxdb","gem_uri":"https://rubygems.org/gems/fluent-plugin-monolog-influxdb-0.1.0.gem","homepage_uri":"https://github.com/giannello/fluent-plugin-monolog-influxdb","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-monolog-influxdb/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"}]},"built_at":"2014-11-22T00:00:00.000Z","created_at":"2014-11-22T17:39:03.706Z","description":"Output filter plugin to rewrite Monolog JSON output to be inserted into InfluxDB","downloads_count":1294,"number":"0.1.0","summary":"Output filter plugin to rewrite Monolog JSON output to be inserted into InfluxDB","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-moogaiops","downloads":243,"version":"0.1.0","version_downloads":243,"platform":"ruby","authors":"stephen","info":"Matcher (Output plugin) to send Fluentd events to the Moog AIOps REST LAM","licenses":["MIT"],"metadata":{},"sha":"bf9cbde63f670578a8cf59e6e351e92376c01fea076a0b0a27ea7239c4be2259","project_uri":"https://rubygems.org/gems/fluent-plugin-moogaiops","gem_uri":"https://rubygems.org/gems/fluent-plugin-moogaiops-0.1.0.gem","homepage_uri":"https://github.com/moog-stephen/fluent-plugin-moogaiops","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-moogaiops/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":"< 0.14, >= 0.12"},{"name":"json","requirements":"~> 2.0"},{"name":"rest-client","requirements":"~> 2.0"}]},"built_at":"2017-03-17T00:00:00.000Z","created_at":"2017-03-17T13:44:41.308Z","description":"Matcher (Output plugin) to send Fluentd events to the Moog AIOps REST LAM","downloads_count":243,"number":"0.1.0","summary":"Send Fluentd output to the Moog AIOps REST LAM","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mqtt","downloads":5139,"version":"0.0.9","version_downloads":160,"platform":"ruby","authors":"Yuuna Kurita","info":"fluentd input plugin for mqtt server","licenses":["MIT"],"metadata":{},"sha":"cedbd67c00cade9652036da2d01e774b2a437d189c9cca16e82c8256ddea6948","project_uri":"https://rubygems.org/gems/fluent-plugin-mqtt","gem_uri":"https://rubygems.org/gems/fluent-plugin-mqtt-0.0.9.gem","homepage_uri":"http://github.com/yuuna/fluent-plugin-mqtt","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mqtt/0.0.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mqtt","requirements":"~> 0.3.1"},{"name":"test-unit","requirements":">= 0"},{"name":"yajl-ruby","requirements":">= 0"}]},"built_at":"2017-05-11T00:00:00.000Z","created_at":"2017-05-11T20:03:02.410Z","description":"fluentd input plugin for mqtt server","downloads_count":160,"number":"0.0.9","summary":"fluentd input plugin for mqtt server","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mqtt-io","downloads":8445,"version":"0.3.1","version_downloads":167,"platform":"ruby","authors":"Toyokazu Akiyama","info":"fluentd input/output plugin for mqtt broker","licenses":["Apache License Version 2.0"],"metadata":{},"sha":"176375f91a15279ed32fafc77a1337a3fe5b49e96e59528d12918e4f81bd1a67","project_uri":"https://rubygems.org/gems/fluent-plugin-mqtt-io","gem_uri":"https://rubygems.org/gems/fluent-plugin-mqtt-io-0.3.1.gem","homepage_uri":"https://github.com/toyokazu/fluent-plugin-mqtt-io","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mqtt-io/0.3.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.14"},{"name":"mqtt","requirements":"~> 0.4"}]},"built_at":"2017-05-07T00:00:00.000Z","created_at":"2017-05-07T12:39:31.214Z","description":"fluentd input/output plugin for mqtt broker","downloads_count":167,"number":"0.3.1","summary":"fluentd input/output plugin for mqtt broker","rubygems_version":">= 0","ruby_version":">= 2.2.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-msgpack-parser","downloads":998,"version":"0.1.0","version_downloads":998,"platform":"ruby","authors":"Tomás Rojas","info":"MessagePack parser for Fluentd","licenses":[],"metadata":{},"sha":"73e65491605fea3127bea283c9c462717fb07b7db2944bea8d658e9dcd777972","project_uri":"https://rubygems.org/gems/fluent-plugin-msgpack-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-msgpack-parser-0.1.0.gem","homepage_uri":"https://github.com/bitex-la/fluent-plugin-msgpack-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-msgpack-parser/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"msgpack","requirements":">= 0"}]},"built_at":"2016-04-01T00:00:00.000Z","created_at":"2016-04-01T19:01:38.740Z","description":"","downloads_count":998,"number":"0.1.0","summary":"MessagePack parser for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-msgpack-rpc","downloads":4043,"version":"0.3.0","version_downloads":2078,"platform":"ruby","authors":"Nobuyuki Kubota","info":"Input plugin for Fluent using MessagePack-RPC","licenses":null,"metadata":{},"sha":"398db9040202bddfe1903ba8c92ad977bbb2aaa311278370d9f82d56dfcd7743","project_uri":"https://rubygems.org/gems/fluent-plugin-msgpack-rpc","gem_uri":"https://rubygems.org/gems/fluent-plugin-msgpack-rpc-0.3.0.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-msgpack-rpc","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-msgpack-rpc/0.3.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"msgpack-rpc","requirements":"~> 0.5.1"}]},"built_at":"2012-11-08T00:00:00.000Z","created_at":"2012-11-08T10:57:07.259Z","description":"Input plugin for Fluent using MessagePack-RPC","downloads_count":2078,"number":"0.3.0","summary":"Input plugin for Fluent using MessagePack-RPC","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-mssql","downloads":1625,"version":"0.0.1","version_downloads":1625,"platform":"ruby","authors":"Hidemasa Togashi","info":"Fluentd plugin to insert into Microsoft SQL Server.","licenses":["Apache Lisence version 2.0"],"metadata":{},"sha":"87be8feeeb1c694f80fa0142da1624b41aef0af2b291803a147d2cfcbbdae44d","project_uri":"https://rubygems.org/gems/fluent-plugin-mssql","gem_uri":"https://rubygems.org/gems/fluent-plugin-mssql-0.0.1.gem","homepage_uri":"http://github.com/htgc/fluent-plugin-mssql/fork","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mssql/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"dbi","requirements":">= 0"}]},"built_at":"2014-02-07T00:00:00.000Z","created_at":"2014-02-07T15:27:09.660Z","description":"Fluentd plugin to insert into Microsoft SQL Server.","downloads_count":1625,"number":"0.0.1","summary":"Fluentd plugin to insert into Microsoft SQL Server.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-mssql2","downloads":1790,"version":"0.0.8","version_downloads":1485,"platform":"ruby","authors":"u89012","info":"A no frills fluentd buffered plugin to write to microsoft sql server","licenses":["MIT"],"metadata":{},"sha":"27c4c51cbff39eb9b26566e9dc298e24dea45ac75cf477c779d03f61cff7a37f","project_uri":"https://rubygems.org/gems/fluent-plugin-mssql2","gem_uri":"https://rubygems.org/gems/fluent-plugin-mssql2-0.0.8.gem","homepage_uri":"http://github.com/u89012/fluent-plugin-mssql2","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mssql2/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"sequel","requirements":"~> 4.8"},{"name":"tiny_tds","requirements":"~> 0.6"}]},"built_at":"2014-07-10T00:00:00.000Z","created_at":"2014-07-15T14:10:20.638Z","description":"A no frills fluentd buffered plugin to write to microsoft sql server","downloads_count":1485,"number":"0.0.8","summary":"A no frills fluentd buffered plugin to write to microsoft sql server","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mule","downloads":1013,"version":"1.0.3","version_downloads":273,"platform":"ruby","authors":"Rodrigo Martinez","info":"Extract entries from Mule log4j key-value pairs","licenses":["MIT"],"metadata":{},"sha":"9cd047e5992cd50a7126949fd41a93469f0abc3d1ce112cad418c1a453106b72","project_uri":"https://rubygems.org/gems/fluent-plugin-mule","gem_uri":"https://rubygems.org/gems/fluent-plugin-mule-1.0.3.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mule/1.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[]},"built_at":"2017-02-21T00:00:00.000Z","created_at":"2017-02-21T00:48:01.037Z","description":"Extract entries from Mule log4j key-value pairs","downloads_count":273,"number":"1.0.3","summary":"Fluentd filter plugin. Extracts fields from Mule/ESBUtils formatted entries containing key value pairs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-multi-format-parser","downloads":75201,"version":"0.1.1","version_downloads":29245,"platform":"ruby","authors":"Masahiro Nakagawa","info":"Multi format parser plugin for Fluentd","licenses":["Apache License (2.0)"],"metadata":{},"sha":"efb8808b77e757dcdbd99a0b5cf3ef99b7ac6e96489d8c50f0ba095619f07158","project_uri":"https://rubygems.org/gems/fluent-plugin-multi-format-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-multi-format-parser-0.1.1.gem","homepage_uri":"https://github.com/repeatedly/fluent-plugin-multi-format-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-multi-format-parser/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.46"}]},"built_at":"2017-01-10T00:00:00.000Z","created_at":"2017-01-10T02:09:56.968Z","description":"Multi format parser plugin for Fluentd","downloads_count":29245,"number":"0.1.1","summary":"Multi format parser plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-multiline-extended","downloads":422,"version":"1.0.2","version_downloads":247,"platform":"ruby","authors":"Alex Yamauchi","info":"Extend tail and parser plugins to support logs with separators beyond just a single-line regex to match the first line.","licenses":["Apache-2.0"],"metadata":{},"sha":"8b99641830e115013e832bd292e552078164dd415a0bc2c0226362d6624d56c7","project_uri":"https://rubygems.org/gems/fluent-plugin-multiline-extended","gem_uri":"https://rubygems.org/gems/fluent-plugin-multiline-extended-1.0.2.gem","homepage_uri":"https://github.com/bodhi-space/fluent-plugin-multiline-extended","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-multiline-extended/1.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-03-20T00:00:00.000Z","created_at":"2017-03-20T23:40:44.306Z","description":"Extend tail and parser plugins to support logs with separators beyond just a single-line regex to match the first line.","downloads_count":247,"number":"1.0.2","summary":"Fluent plugin extending the multiline parser","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-multiline-parser","downloads":2248,"version":"0.1.1","version_downloads":1026,"platform":"ruby","authors":"Jerry Zhou","info":"fluentd plugin to parse single field, or to combine log structure into single field, and support multiline format","licenses":["Apache-2.0"],"metadata":{},"sha":"d5ac3b6026d02fa5e321b9e1ab3e2c5bbfb45910ba0562531b0ddfc47c06bb3a","project_uri":"https://rubygems.org/gems/fluent-plugin-multiline-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-multiline-parser-0.1.1.gem","homepage_uri":"https://github.com/quick-sort/fluent-plugin-multiline-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-multiline-parser/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"thread_safe","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"}]},"built_at":"2016-04-01T00:00:00.000Z","created_at":"2016-04-01T07:08:17.782Z","description":"fluentd plugin to parse single field, or to combine log structure into single field, and support multiline format","downloads_count":1026,"number":"0.1.1","summary":"plugin to parse/combine multiline fluentd log messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-multiprocess","downloads":58170,"version":"0.2.2","version_downloads":14528,"platform":"ruby","authors":"Sadayuki Furuhashi","info":"Multiprocess agent plugin for Fluentd event collector","licenses":["Apache 2.0"],"metadata":{},"sha":"548667d5601dfb049c9c5cd977b5edbc0eb663fa261bb80ef45906a9e562dd34","project_uri":"https://rubygems.org/gems/fluent-plugin-multiprocess","gem_uri":"https://rubygems.org/gems/fluent-plugin-multiprocess-0.2.2.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-multiprocess","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-multiprocess/0.2.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"serverengine","requirements":">= 1.6"}]},"built_at":"2016-11-22T00:00:00.000Z","created_at":"2016-11-22T09:28:02.959Z","description":"Multiprocess agent plugin for Fluentd event collector","downloads_count":14528,"number":"0.2.2","summary":"Multiprocess agent plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-munin","downloads":15586,"version":"0.3.2","version_downloads":5616,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd Input plugin to fetch munin-node metrics data with custom intervals. It supports all of munin plugins.","licenses":[],"metadata":{},"sha":"4ddec1c5ab8065715200027952d4667f2ee2adddccf731156a0ad52a4dc56091","project_uri":"https://rubygems.org/gems/fluent-plugin-munin","gem_uri":"https://rubygems.org/gems/fluent-plugin-munin-0.3.2.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-munin","wiki_uri":"","documentation_uri":"https://github.com/y-ken/fluent-plugin-munin#readme","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"munin-ruby","requirements":">= 0"}]},"built_at":"2013-07-13T00:00:00.000Z","created_at":"2013-07-13T09:22:40.001Z","description":null,"downloads_count":5616,"number":"0.3.2","summary":"Fluentd Input plugin to fetch munin-node metrics data with custom intervals. It supports all of munin plugins.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-munin-node","downloads":4922,"version":"0.1.7","version_downloads":896,"platform":"ruby","authors":"Genki Sugawara","info":"Fluentd input plugin for Munin node.","licenses":["MIT"],"metadata":{},"sha":"7ebcffbc88e06b4d1c53d4c4248dec03192fe5ef928c54a40fd335e268fe76f2","project_uri":"https://rubygems.org/gems/fluent-plugin-munin-node","gem_uri":"https://rubygems.org/gems/fluent-plugin-munin-node-0.1.7.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-munin-node","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-munin-node/0.1.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"munin-ruby","requirements":">= 0.1.4"}]},"built_at":"2015-09-16T00:00:00.000Z","created_at":"2015-09-16T13:59:42.630Z","description":"Fluentd input plugin for Munin node.","downloads_count":896,"number":"0.1.7","summary":"Fluentd input plugin for Munin node.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mutate_filter","downloads":3975,"version":"0.2.1","version_downloads":1320,"platform":"ruby","authors":"Jonathan Serafini","info":"A mutate filter for Fluent which functions like Logstash.","licenses":[],"metadata":{},"sha":"7ea6505180ee7880ccdc6d1d63b2fa5578c6cb37c2be431edd433562774fd208","project_uri":"https://rubygems.org/gems/fluent-plugin-mutate_filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-mutate_filter-0.2.1.gem","homepage_uri":"https://github.com/JonathanSerafini/fluent-plugin-mutate_filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mutate_filter/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":"< 0.15.0, >= 0.12.0"}]},"built_at":"2016-06-16T00:00:00.000Z","created_at":"2016-06-16T18:10:29.360Z","description":"","downloads_count":1320,"number":"0.2.1","summary":"A mutate filter for Fluent which functions like Logstash.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql","downloads":33714,"version":"0.2.1","version_downloads":3086,"platform":"ruby","authors":"TAGOMORI Satoshi, Toyama Hiroshi","info":"fluent plugin to insert mysql as json(single column) or insert statement","licenses":["Apache-2.0"],"metadata":{},"sha":"c4c649c24e281cb8b446ce3ecb0e1c8d828122779ca2288d973fe75094656c9f","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-0.2.1.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-mysql","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":"~> 0.8.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.8"},{"name":"jsonpath","requirements":">= 0"},{"name":"mysql2-cs-bind","requirements":">= 0"}]},"built_at":"2016-11-14T00:00:00.000Z","created_at":"2016-11-14T07:32:41.747Z","description":"fluent plugin to insert mysql as json(single column) or insert statement","downloads_count":3086,"number":"0.2.1","summary":"fluent plugin to insert mysql","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql-appender","downloads":8898,"version":"0.5.1","version_downloads":191,"platform":"ruby","authors":"TERASAKI Tsuyoshi","info":"Simple incremental id's insert.","licenses":["MIT"],"metadata":{},"sha":"06acde52c84cdbbdb6f9fd074a7c54ec3b3541a72fbe39e1ad5ecbf9935dc642","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql-appender","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-appender-0.5.1.gem","homepage_uri":"https://github.com/realworld-jp/fluent-plugin-mysql-appender","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql-appender/0.5.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mysql2","requirements":">= 0"},{"name":"td","requirements":">= 0"},{"name":"td-client","requirements":">= 0"}]},"built_at":"2017-04-18T00:00:00.000Z","created_at":"2017-04-18T11:50:15.741Z","description":"Simple incremental id's insert.","downloads_count":191,"number":"0.5.1","summary":"Fluentd input plugin to insert from MySQL database server.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql-binlog","downloads":5147,"version":"0.0.2","version_downloads":5140,"platform":"ruby","authors":"IZUMIYA Hiroyuki","info":"MySQL Binlog input plugin for Fluentd event collector.","licenses":[],"metadata":{},"sha":"9ae60cce8f589dca3fb28592336985900cd4efcfeca7a985c5b8916a700dca03","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql-binlog","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-binlog-0.0.2.gem","homepage_uri":"https://github.com/izumiya/fluent-plugin-mysql-binlog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql-binlog/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"activesupport","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"kodama","requirements":">= 0"}]},"built_at":"2013-08-07T00:00:00.000Z","created_at":"2013-08-07T08:35:31.268Z","description":"MySQL Binlog input plugin for Fluentd event collector.","downloads_count":5140,"number":"0.0.2","summary":"MySQL Binlog input plugin for Fluentd event collector.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql-bulk","downloads":16541,"version":"0.0.8","version_downloads":6359,"platform":"ruby","authors":"Hiroshi Toyama","info":"fluent plugin mysql bulk insert is high performance and on duplicate key update respond.","licenses":["MIT"],"metadata":{},"sha":"ff9310838d5cdc588c89712014ac6fea079485540187c4a4bd776667fd8a21a4","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql-bulk","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-bulk-0.0.8.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-mysql-bulk","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql-bulk/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"spork","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mysql2-cs-bind","requirements":">= 0"}]},"built_at":"2016-01-07T00:00:00.000Z","created_at":"2016-01-07T02:18:47.126Z","description":"fluent plugin mysql bulk insert is high performance and on duplicate key update respond.","downloads_count":6359,"number":"0.0.8","summary":"fluent plugin mysql bulk insert is high performance and on duplicate key update respond.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql_explain","downloads":1210,"version":"0.0.1","version_downloads":1210,"platform":"ruby","authors":"Takahiro Kikumoto","info":"A Fluent filter plugin to execute EXPLAIN in mysql for a sql specified by the key","licenses":["MIT"],"metadata":{},"sha":"dbea028c1728b79180e7228a1075d97cc4fb5c234e65345050bb9c0e37cdcf0c","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql_explain","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql_explain-0.0.1.gem","homepage_uri":"https://github.com/kikumoto/fluent-plugin-mysql_explain","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql_explain/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"},{"name":"mysql2","requirements":">= 0"}]},"built_at":"2015-11-28T00:00:00.000Z","created_at":"2015-11-28T03:12:59.853Z","description":"A Fluent filter plugin to execute EXPLAIN in mysql for a sql specified by the key","downloads_count":1210,"number":"0.0.1","summary":"A Fluent filter plugin to execute EXPLAIN in mysql for a sql specified by the key","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql-load","downloads":2870,"version":"0.0.2","version_downloads":1693,"platform":"ruby","authors":"Fukui ReTu","info":"BufferedOutput plugin to mysql import","licenses":["APL2.0"],"metadata":{},"sha":"0f744bd0a70c7b933a9677cb4fc7b792f15c9f9a43d219f586dc29a4933d4689","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql-load","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-load-0.0.2.gem","homepage_uri":"https://github.com/fukuiretu/fluent-plugin-mysql-load","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql-load/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mysql2","requirements":">= 0"}]},"built_at":"2014-05-17T00:00:00.000Z","created_at":"2014-05-17T04:30:25.899Z","description":"BufferedOutput plugin to mysql import","downloads_count":1693,"number":"0.0.2","summary":"BufferedOutput plugin to mysql import","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql-prepared-statement","downloads":5132,"version":"0.0.5","version_downloads":937,"platform":"ruby","authors":"Hiroshi Toyama","info":"fluent plugin mysql prepared statement","licenses":["MIT"],"metadata":{},"sha":"b7ce6370a0fe29b6cd2bec43c62adb224c8c7c3dca5a94af597654f025410f13","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql-prepared-statement","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-prepared-statement-0.0.5.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-mysql-prepared-statement","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql-prepared-statement/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"spork","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mysql2-cs-bind","requirements":">= 0"}]},"built_at":"2015-09-14T00:00:00.000Z","created_at":"2015-09-14T05:41:49.919Z","description":"fluent plugin mysql prepared statement","downloads_count":937,"number":"0.0.5","summary":"fluent plugin mysql prepared statement","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql-query","downloads":10100,"version":"0.3.0","version_downloads":1720,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd Input plugin to execute mysql query and fetch rows. It is useful for stationary interval metrics measurement.","licenses":["Apache-2.0"],"metadata":{},"sha":"38facc3a127a4a258b771835a231b358bcc21ea6d33c3723dc5a9042e735d1af","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql-query","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-query-0.3.0.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-mysql-query","wiki_uri":"","documentation_uri":"https://github.com/y-ken/fluent-plugin-mysql-query#readme","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mysql2","requirements":">= 0"}]},"built_at":"2015-07-28T00:00:00.000Z","created_at":"2015-07-28T09:31:39.584Z","description":"","downloads_count":1720,"number":"0.3.0","summary":"Fluentd Input plugin to execute mysql query and fetch rows. It is useful for stationary interval metrics measurement.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysqlrecord","downloads":797,"version":"0.0.1","version_downloads":797,"platform":"ruby","authors":"polidog","info":"test","licenses":["MIT"],"metadata":{},"sha":"926580371c17559b63fbed9ea4c9a49a6ad6809ec68b95bbfc5c515253d368de","project_uri":"https://rubygems.org/gems/fluent-plugin-mysqlrecord","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysqlrecord-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysqlrecord/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-12-03T00:00:00.000Z","created_at":"2015-12-03T15:03:10.687Z","description":"test","downloads_count":797,"number":"0.0.1","summary":"test","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysql-replicator","downloads":20938,"version":"0.6.1","version_downloads":235,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd input plugin to track insert/update/delete event from MySQL database server. Not only that, it could multiple table replication and generate nested document for Elasticsearch/Solr. It's comming support replicate to another RDB/noSQL.","licenses":["Apache-2.0"],"metadata":{},"sha":"2cabc26cbda3acc25ac5e9c451127a03b0759947fef57f0a1f94f69319c9b55b","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql-replicator","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-replicator-0.6.1.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-mysql-replicator","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql-replicator/0.6.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"webmock","requirements":"~> 1.24.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"mysql2","requirements":">= 0"},{"name":"rsolr","requirements":">= 0"}]},"built_at":"2017-04-15T00:00:00.000Z","created_at":"2017-04-15T13:35:56.263Z","description":"","downloads_count":235,"number":"0.6.1","summary":"Fluentd input plugin to track insert/update/delete event from MySQL database server. Not only that, it could multiple table replication and generate nested document for Elasticsearch/Solr. It's comming support replicate to another RDB/noSQL.","rubygems_version":">= 0","ruby_version":"> 2.1","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysqlslowquery","downloads":44329,"version":"0.0.7","version_downloads":23243,"platform":"ruby","authors":"Yuku Takahashi","info":"Fluent input plugin for MySQL slow query log file.","licenses":["MIT"],"metadata":{},"sha":"36afbc69df7d2ad1053e8cb336b9e6c407b415bbe81ffe71b50a5ad6d0d046f1","project_uri":"https://rubygems.org/gems/fluent-plugin-mysqlslowquery","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysqlslowquery-0.0.7.gem","homepage_uri":"https://github.com/taka84u9/fluent-plugin-mysqlslowquery","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysqlslowquery/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.12.0"},{"name":"myslog","requirements":"~> 0.0"}]},"built_at":"2015-08-04T00:00:00.000Z","created_at":"2015-08-04T07:10:21.709Z","description":"Fluent input plugin for MySQL slow query log file.","downloads_count":23243,"number":"0.0.7","summary":"Fluent input plugin for MySQL slow query log file.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-mysqlslowquerylog","downloads":4106,"version":"0.0.2","version_downloads":2569,"platform":"ruby","authors":"Satoshi SUZUKI","info":"Fluentd plugin to concat MySQL slowquerylog.","licenses":[],"metadata":{},"sha":"96bc4efa8d26ba311fd1f32d36b435883198f5caacd37f3658b32773cb5665ee","project_uri":"https://rubygems.org/gems/fluent-plugin-mysqlslowquerylog","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysqlslowquerylog-0.0.2.gem","homepage_uri":"https://github.com/studio3104/fluent-plugin-mysqlslowquerylog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysqlslowquerylog/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-01-11T00:00:00.000Z","created_at":"2013-01-11T02:20:29.856Z","description":"Fluentd plugin to concat MySQL slowquerylog.","downloads_count":2569,"number":"0.0.2","summary":"Fluentd plugin to concat MySQL slowquerylog.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-mysql-status","downloads":336,"version":"0.0.1","version_downloads":336,"platform":"ruby","authors":"IKUTA Masahito","info":"Fluentd input plugin that monitor status of MySQL Server.","licenses":["APLv2"],"metadata":{},"sha":"d631b7c3062ec3b069ae58ca461db5d400897d46a7ca51f3bfff6a3f1d4327a3","project_uri":"https://rubygems.org/gems/fluent-plugin-mysql-status","gem_uri":"https://rubygems.org/gems/fluent-plugin-mysql-status-0.0.1.gem","homepage_uri":"http://github.com/gumi/fluent-plugin-mysql-status","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-mysql-status/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.0, ~> 3.1"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.55"},{"name":"mysql2","requirements":"~> 0.3.11"}]},"built_at":"2016-12-23T00:00:00.000Z","created_at":"2016-12-23T19:32:12.497Z","description":"Fluentd input plugin that monitor status of MySQL Server.","downloads_count":336,"number":"0.0.1","summary":"Fluentd input plugin that monitor status of MySQL Server.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-namedpipe","downloads":2162,"version":"0.0.2","version_downloads":1266,"platform":"ruby","authors":"anarcher","info":"fluentd plugin to named pipe input ","licenses":["APLv2"],"metadata":{},"sha":"9151aaf7fac1db9a7f8d3b23eb66e038fe2a9960ecea4c7e7b83b7997dfd2678","project_uri":"https://rubygems.org/gems/fluent-plugin-namedpipe","gem_uri":"https://rubygems.org/gems/fluent-plugin-namedpipe-0.0.2.gem","homepage_uri":"https://github.com/anarcher/fluent-plugin-namedpipe","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-namedpipe/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-10-29T00:00:00.000Z","created_at":"2014-10-29T10:25:21.336Z","description":"fluentd plugin to named pipe input ","downloads_count":1266,"number":"0.0.2","summary":"fluentd plugin to named pipe input","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-named_pipe","downloads":3731,"version":"0.1.2","version_downloads":1764,"platform":"ruby","authors":"Naotoshi Seo","info":"Named pipe input/output plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"cb2d443a56e98a97ec530790c3e0e6d4225da5355b5f02b36f8f0a7087074d0f","project_uri":"https://rubygems.org/gems/fluent-plugin-named_pipe","gem_uri":"https://rubygems.org/gems/fluent-plugin-named_pipe-0.1.2.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-named_pipe","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-named_pipe/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.58"},{"name":"mkfifo","requirements":">= 0"},{"name":"ruby-fifo","requirements":"= 0.0.1"}]},"built_at":"2015-11-28T00:00:00.000Z","created_at":"2015-11-28T04:49:09.328Z","description":"Named pipe input/output plugin for Fluentd","downloads_count":1764,"number":"0.1.2","summary":"Named pipe input/output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-nata2","downloads":4235,"version":"0.0.1","version_downloads":4235,"platform":"ruby","authors":"studio3104","info":"fluent-plugin to post slow query logs to Nata2 server","licenses":["MIT"],"metadata":{},"sha":"5c7c9a4257039c3fa69fbbdb1720fbe00649c419facd02f4efdedf9cd00fdc1a","project_uri":"https://rubygems.org/gems/fluent-plugin-nata2","gem_uri":"https://rubygems.org/gems/fluent-plugin-nata2-0.0.1.gem","homepage_uri":"https://github.com/studio3104/fluent-plugin-nata2","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-nata2/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.45"},{"name":"fluent-mixin-rewrite-tag-name","requirements":">= 0"},{"name":"mysql-slowquery-parser","requirements":">= 0"}]},"built_at":"2014-07-15T00:00:00.000Z","created_at":"2014-07-15T06:06:16.467Z","description":"fluent-plugin to post slow query logs to Nata2 server","downloads_count":4235,"number":"0.0.1","summary":"fluent-plugin to post slow query logs to Nata2 server","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-nats","downloads":8160,"version":"0.0.5","version_downloads":1852,"platform":"ruby","authors":"Eduardo Aceituno","info":"nats plugin for fluentd, an event collector","licenses":[],"metadata":{},"sha":"b07c2e14e210a3154ecdd64ca123b30303163d973a8b53e896bbc6c5a6aeb5a3","project_uri":"https://rubygems.org/gems/fluent-plugin-nats","gem_uri":"https://rubygems.org/gems/fluent-plugin-nats-0.0.5.gem","homepage_uri":"https://github.com/achied/fluent-plugin-nats","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-nats/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"eventmachine","requirements":"= 0.12.10"},{"name":"fluentd","requirements":">= 0.10.7"},{"name":"nats","requirements":">= 0.4.22"}]},"built_at":"2013-02-27T00:00:00.000Z","created_at":"2013-02-27T01:02:53.701Z","description":"nats plugin for fluentd, an event collector","downloads_count":1852,"number":"0.0.5","summary":"nats plugin for fluentd, an event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-ncmb","downloads":1671,"version":"0.1.1","version_downloads":1024,"platform":"ruby","authors":"suzuki.yuta, goya.tomohiro","info":"fluentd plugin for NIFTY Cloud mobile backend","licenses":[],"metadata":{},"sha":"843e3c386f0a1d71b7d7493d9e91282823b8582e223ac4c82379440005bd16c4","project_uri":"https://rubygems.org/gems/fluent-plugin-ncmb","gem_uri":"https://rubygems.org/gems/fluent-plugin-ncmb-0.1.1.gem","homepage_uri":"http://mb.cloud.nifty.com/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ncmb/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"fluentd","requirements":"< 2, >= 0.10.9"},{"name":"ncmb-ruby-client","requirements":"~> 0.1"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit-rr","requirements":"~> 1.0"}],"runtime":[]},"built_at":"2015-07-22T00:00:00.000Z","created_at":"2015-07-22T12:11:24.751Z","description":"fluentd plugin for NIFTY Cloud mobile backend","downloads_count":1024,"number":"0.1.1","summary":"fluentd plugin for NIFTY Cloud mobile backend","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-nested-hash-filter","downloads":3642,"version":"0.2.0","version_downloads":1051,"platform":"ruby","authors":"sugilog","info":"Fluent Plugin for converting nested hash into flatten key-value pair.","licenses":[],"metadata":{},"sha":"88759b1d64d03044c15e3afdbe198b6ca531bc962fdb9c4003a135c6f524e372","project_uri":"https://rubygems.org/gems/fluent-plugin-nested-hash-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-nested-hash-filter-0.2.0.gem","homepage_uri":"https://github.com/sugilog/fluent-plugin-nested-hash-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-nested-hash-filter/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"faker","requirements":">= 0"},{"name":"guard","requirements":">= 0"},{"name":"guard-test","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-07-20T00:00:00.000Z","created_at":"2015-07-20T08:32:44.721Z","description":"Fluent Plugin for converting nested hash into flatten key-value pair.","downloads_count":1051,"number":"0.2.0","summary":"Fluent Plugin for converting nested hash into flatten key-value pair.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-netflow","downloads":12483,"version":"1.0.0.rc2","version_downloads":65,"platform":"ruby","authors":"Masahiro Nakagawa","info":"Netflow plugin for Fluentd","licenses":["Apache License (2.0)"],"metadata":{},"sha":"26792c33df65519b342c34f4fb1fbe5c344e56d5808e128fa7f81fb1f39ff72a","project_uri":"https://rubygems.org/gems/fluent-plugin-netflow","gem_uri":"https://rubygems.org/gems/fluent-plugin-netflow-1.0.0.rc2.gem","homepage_uri":"https://github.com/repeatedly/fluent-plugin-netflow","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-netflow/1.0.0.rc2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"bindata","requirements":"~> 2.1"},{"name":"fluentd","requirements":"< 2, >= 0.14.10"}]},"built_at":"2017-05-16T00:00:00.000Z","created_at":"2017-05-16T01:14:38.553Z","description":"Netflow plugin for Fluentd","downloads_count":65,"number":"1.0.0.rc2","summary":"Netflow plugin for Fluentd","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-netflow-enchanced","downloads":94,"version":"1.0.0.rc1","version_downloads":94,"platform":"ruby","authors":"Masahiro Nakagawa","info":"Netflow plugin for Fluentd","licenses":["Apache License (2.0)"],"metadata":{},"sha":"47b2008b53062c701975eb91a86c976a69c011a8e762f5e65620c194837a336b","project_uri":"https://rubygems.org/gems/fluent-plugin-netflow-enchanced","gem_uri":"https://rubygems.org/gems/fluent-plugin-netflow-enchanced-1.0.0.rc1.gem","homepage_uri":"https://github.com/repeatedly/fluent-plugin-netflow","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-netflow-enchanced/1.0.0.rc1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"bindata","requirements":"~> 2.1"},{"name":"fluentd","requirements":"< 2, >= 0.14.10"}]},"built_at":"2017-04-26T00:00:00.000Z","created_at":"2017-04-26T13:51:40.360Z","description":"Netflow plugin for Fluentd","downloads_count":94,"number":"1.0.0.rc1","summary":"Netflow plugin for Fluentd","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-netflow-multiplier","downloads":1683,"version":"0.1.1","version_downloads":710,"platform":"ruby","authors":"Shintaro Kojima","info":"Fluentd filter plugin to multiply sampled netflow counters by sampling rate. It finds counters and sampling rate field in each netflow and calculate into other counter fields.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"79206d22460d472ee89011494b3239b4c046bc255fd5d99637e5a2a8b54ffdd1","project_uri":"https://rubygems.org/gems/fluent-plugin-netflow-multiplier","gem_uri":"https://rubygems.org/gems/fluent-plugin-netflow-multiplier-0.1.1.gem","homepage_uri":"https://github.com/codeout/fluent-plugin-netflow-multiplier","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-netflow-multiplier/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2016-08-22T00:00:00.000Z","created_at":"2016-08-22T05:34:52.221Z","description":"Fluentd filter plugin to multiply sampled netflow counters by sampling rate. It finds counters and sampling rate field in each netflow and calculate into other counter fields.","downloads_count":710,"number":"0.1.1","summary":"Fluentd filter plugin to multiply sampled netflow counters by sampling rate.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-network-probe","downloads":2914,"version":"0.1.0","version_downloads":1720,"platform":"ruby","authors":"Yuichi UEMURA","info":"Fluentd input plugin to probe network latency and keepalive, similar to smokeping","licenses":[],"metadata":{},"sha":"9632a33d32c61aa80d41cadbceb6b60631184bb6e465413ed7d770b01788be26","project_uri":"https://rubygems.org/gems/fluent-plugin-network-probe","gem_uri":"https://rubygems.org/gems/fluent-plugin-network-probe-0.1.0.gem","homepage_uri":"https://github.com/u-ichi/fluent-plugin-network-probe","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-network-probe/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"eventmachine","requirements":">= 0"},{"name":"fluentd","requirements":">= 0.10.7"}]},"built_at":"2013-12-04T00:00:00.000Z","created_at":"2013-12-04T16:03:21.254Z","description":"Fluentd input plugin to probe network latency and keepalive, similar to smokeping","downloads_count":1720,"number":"0.1.0","summary":"Fluentd input plugin to probe network latency and keepalive, similar to smokeping","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-newrelic_metrics","downloads":2272,"version":"0.0.3","version_downloads":976,"platform":"ruby","authors":"Hiroshi Toyama","info":"Newrelic metrics input plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"a4fe1c16913f8090101cf36f0b5da834484e069eca9e60bd779084b8f82b9073","project_uri":"https://rubygems.org/gems/fluent-plugin-newrelic_metrics","gem_uri":"https://rubygems.org/gems/fluent-plugin-newrelic_metrics-0.0.3.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-newrelic_metrics","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-newrelic_metrics/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7.2"},{"name":"fluentd","requirements":"~> 0.10.58"},{"name":"pry","requirements":"~> 0.10.1"},{"name":"rake","requirements":"~> 10.3.2"},{"name":"rubocop","requirements":"~> 0.24.1"},{"name":"rubygems-tasks","requirements":"~> 0.2"},{"name":"yard","requirements":"~> 0.8"}],"runtime":[{"name":"rest-client","requirements":">= 0"}]},"built_at":"2015-07-02T00:00:00.000Z","created_at":"2015-07-02T04:55:22.582Z","description":"Newrelic metrics input plugin for fluentd","downloads_count":976,"number":"0.0.3","summary":"Newrelic metrics input plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-newrelic-summary","downloads":1216,"version":"0.0.2","version_downloads":691,"platform":"ruby","authors":"Hiroaki Sano","info":"Fluent input plugin to get NewRelic application summary.","licenses":["MIT"],"metadata":{},"sha":"b84fcf48588a18e9059fbc484ff9064fdbfc7c0cc849f76d58ee86b4fc06e738","project_uri":"https://rubygems.org/gems/fluent-plugin-newrelic-summary","gem_uri":"https://rubygems.org/gems/fluent-plugin-newrelic-summary-0.0.2.gem","homepage_uri":"https://github.com/hiroakis/fluent-plugin-newrelic-summary","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-newrelic-summary/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-02-23T00:00:00.000Z","created_at":"2016-02-23T03:03:26.451Z","description":"","downloads_count":691,"number":"0.0.2","summary":"Fluent input plugin to get NewRelic application summary.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-newrelictransform","downloads":2508,"version":"0.0.3","version_downloads":1063,"platform":"ruby","authors":"chandrashekar Tippur","info":"FLuentd plugin for Newrelic alerts... WIP","licenses":["MIT"],"metadata":{},"sha":"0a5d2b4e504caef4403e96aee28819c8b140073eddffe784fabad6dbf6559aa5","project_uri":"https://rubygems.org/gems/fluent-plugin-newrelictransform","gem_uri":"https://rubygems.org/gems/fluent-plugin-newrelictransform-0.0.3.gem","homepage_uri":"https://github.com/ctippur/fluent-plugin-newrelic","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-newrelictransform/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0.9.2, ~> 0.9"},{"name":"rspec","requirements":">= 2.11.0, ~> 2.11"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.9, ~> 0.10"}]},"built_at":"2015-01-30T00:00:00.000Z","created_at":"2015-03-25T19:53:11.020Z","description":"FLuentd plugin for Newrelic alerts... WIP","downloads_count":1063,"number":"0.0.3","summary":"Fluentd input plugin for Newrelic alerts","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-newsyslog","downloads":3406,"version":"0.1.2","version_downloads":628,"platform":"ruby","authors":"Kevin Scheunemann","info":"A fluent plugin that includes a syslog parser that handles both rfc3164 and rfc5424 formats ","licenses":[],"metadata":{},"sha":"000bb8ff66d3ed13ca5a16968a27436f480594994fe8610e163405d586255f17","project_uri":"https://rubygems.org/gems/fluent-plugin-newsyslog","gem_uri":"https://rubygems.org/gems/fluent-plugin-newsyslog-0.1.2.gem","homepage_uri":"https://github.com/athenahealth/fluent-plugin-newsyslog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-newsyslog/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"flexmock","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":"~> 0.6.4"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"test-unit-rr","requirements":"~> 1.0.3"},{"name":"timecop","requirements":">= 0.3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.59"}]},"built_at":"2017-03-03T00:00:00.000Z","created_at":"2017-03-03T01:38:25.857Z","description":"A fluent plugin that includes a syslog parser that handles both rfc3164 and rfc5424 formats ","downloads_count":628,"number":"0.1.2","summary":"A better fluentd syslog input and parser plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-nginx-status","downloads":1769,"version":"1.0.0","version_downloads":1769,"platform":"ruby","authors":"Robert Pitt","info":"Nginx status page monitor for FleuntD","licenses":[],"metadata":{},"sha":"f496e526a0760d083b1a68f42b3909b43c9e2c670400ceb0944e0f4af11f1790","project_uri":"https://rubygems.org/gems/fluent-plugin-nginx-status","gem_uri":"https://rubygems.org/gems/fluent-plugin-nginx-status-1.0.0.gem","homepage_uri":"https://github.com/robertpitt/fluent-plugin-nginx-status","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-nginx-status/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.9"}]},"built_at":"2014-04-11T00:00:00.000Z","created_at":"2014-04-11T17:31:01.476Z","description":"Nginx status page monitor for FleuntD","downloads_count":1769,"number":"1.0.0","summary":"Nginx status page monitor for FleuntD","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-nicorepo","downloads":1366,"version":"0.0.1","version_downloads":1366,"platform":"ruby","authors":"upinetree","info":"Fluent input plugin for Nicorepo.","licenses":["MIT"],"metadata":{},"sha":"5bb86291c93315a934043456b754cc110210b1af9fb8cf87c84f16a4e921d476","project_uri":"https://rubygems.org/gems/fluent-plugin-nicorepo","gem_uri":"https://rubygems.org/gems/fluent-plugin-nicorepo-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-nicorepo/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"nicorepo","requirements":">= 0"}]},"built_at":"2014-06-09T00:00:00.000Z","created_at":"2014-06-09T11:50:30.682Z","description":"Fluent input plugin for Nicorepo.","downloads_count":1366,"number":"0.0.1","summary":"Fluent input plugin for Nicorepo","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-norikra","downloads":41671,"version":"0.4.2","version_downloads":9341,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"process events on fluentd with SQL like query, with built-in Norikra server if needed.","licenses":["Apache-2.0"],"metadata":{},"sha":"dfd4b18795b60a47f56ac0ff585620a41b3f7f3a9966d62bdefd7e7c32dcd5a9","project_uri":"https://rubygems.org/gems/fluent-plugin-norikra","gem_uri":"https://rubygems.org/gems/fluent-plugin-norikra-0.4.2.gem","homepage_uri":"https://github.com/norikra/fluent-plugin-norikra","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-norikra/0.4.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"norikra-client","requirements":">= 1.4.0"},{"name":"rack","requirements":"~> 1.6"}]},"built_at":"2016-07-19T00:00:00.000Z","created_at":"2016-07-19T08:24:18.956Z","description":"process events on fluentd with SQL like query, with built-in Norikra server if needed.","downloads_count":9341,"number":"0.4.2","summary":"Fluentd plugin to do CEP with norikra","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-norikra-patched-7","downloads":1115,"version":"0.2.2","version_downloads":1115,"platform":"ruby","authors":"Yohei Yoshimuta","info":"Patched(see https://github.com/norikra/fluent-plugin-norikra/issues/7). process events on fluentd with SQL like query, with built-in Norikra server if needed.","licenses":["APLv2"],"metadata":{},"sha":"28d507f2c128ab83a38ed411f97952a48c409f2ebadca7d4b865c581ad8c0104","project_uri":"https://rubygems.org/gems/fluent-plugin-norikra-patched-7","gem_uri":"https://rubygems.org/gems/fluent-plugin-norikra-patched-7-0.2.2.gem","homepage_uri":"https://github.com/yoheimuta/fluent-plugin-norikra","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-norikra-patched-7/0.2.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"norikra-client","requirements":">= 0.0.7"}]},"built_at":"2015-04-30T00:00:00.000Z","created_at":"2015-04-30T08:37:17.924Z","description":"Patched(see https://github.com/norikra/fluent-plugin-norikra/issues/7). process events on fluentd with SQL like query, with built-in Norikra server if needed.","downloads_count":1115,"number":"0.2.2","summary":"Fluentd plugin to do CEP with norikra","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-nostat","downloads":4194,"version":"0.2.2","version_downloads":693,"platform":"ruby","authors":"No JinHo","info":"Linux Resource Monitoring Input plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"919d55f78a24d1e0f8ba6ff30ec5552c701a906cd926cdca515ade581131e418","project_uri":"https://rubygems.org/gems/fluent-plugin-nostat","gem_uri":"https://rubygems.org/gems/fluent-plugin-nostat-0.2.2.gem","homepage_uri":"http://github.com/nozino/fluent-plugin-nostat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-nostat/0.2.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.7"}]},"built_at":"2016-04-12T00:00:00.000Z","created_at":"2016-04-12T08:44:43.025Z","description":"Linux Resource Monitoring Input plugin for Fluent event collector","downloads_count":693,"number":"0.2.2","summary":"Linux Resource Monitoring Input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-notifier","downloads":22193,"version":"1.0.0","version_downloads":1118,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"check matched messages and emit alert message with throttling by conditions...","licenses":["Apache-2.0"],"metadata":{},"sha":"54c391f0cd725e000092ed137c98f3e1eb03635eb07a5cdadcf46b26d1d09094","project_uri":"https://rubygems.org/gems/fluent-plugin-notifier","gem_uri":"https://rubygems.org/gems/fluent-plugin-notifier-1.0.0.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-notifier","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-notifier/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-02-01T00:00:00.000Z","created_at":"2017-02-01T12:20:54.160Z","description":"check matched messages and emit alert message with throttling by conditions...","downloads_count":1118,"number":"1.0.0","summary":"check matched messages and emit alert message","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-nsca","downloads":4105,"version":"1.0.0","version_downloads":1115,"platform":"ruby","authors":"MIYAKAWA Taku","info":"Fluentd output plugin to send service checks to an NSCA / Nagios monitoring server","licenses":["Apache License, v2.0"],"metadata":{},"sha":"fd1a09c13582906258d19178989ec3ef586b36f5a258fb8084b25442092cc1c2","project_uri":"https://rubygems.org/gems/fluent-plugin-nsca","gem_uri":"https://rubygems.org/gems/fluent-plugin-nsca-1.0.0.gem","homepage_uri":"https://github.com/miyakawataku/fluent-plugin-nsca","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-nsca/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"send_nsca","requirements":"= 0.5.0"}]},"built_at":"2015-03-06T00:00:00.000Z","created_at":"2015-03-06T14:58:25.146Z","description":"Fluentd output plugin to send service checks to an NSCA / Nagios monitoring server","downloads_count":1115,"number":"1.0.0","summary":"Fluentd output plugin to send service checks to an NSCA / Nagios monitoring server","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-nsq","downloads":11943,"version":"0.0.6","version_downloads":5528,"platform":"ruby","authors":"lxfontes, dterror","info":"NSQ output plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"8955d737d00748360a09bb105c0790c8d5d94cfb3b622707cf2ee5538e60dfb7","project_uri":"https://rubygems.org/gems/fluent-plugin-nsq","gem_uri":"https://rubygems.org/gems/fluent-plugin-nsq-0.0.6.gem","homepage_uri":"https://github.com/uken/fluent-plugin-nsq","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-nsq/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"},{"name":"nsq-ruby","requirements":"~> 1.0"}]},"built_at":"2015-09-07T00:00:00.000Z","created_at":"2015-09-07T14:42:05.380Z","description":"NSQ output plugin for Fluentd","downloads_count":5528,"number":"0.0.6","summary":"output plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-numeric-counter","downloads":43636,"version":"1.0.0","version_downloads":1026,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Counts messages, with specified key and numeric value in specified range","licenses":["Apache-2.0"],"metadata":{},"sha":"462a3c0db9466ffc000286df1baa9e0fd0e2ac8098f200f5b2361a2aadeb7b02","project_uri":"https://rubygems.org/gems/fluent-plugin-numeric-counter","gem_uri":"https://rubygems.org/gems/fluent-plugin-numeric-counter-1.0.0.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-numeric-counter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-numeric-counter/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-02-01T00:00:00.000Z","created_at":"2017-02-01T07:30:23.050Z","description":"Counts messages, with specified key and numeric value in specified range","downloads_count":1026,"number":"1.0.0","summary":"Fluentd plugin to count messages with specified numeric values","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-numeric-monitor","downloads":68846,"version":"1.0.3","version_downloads":2227,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Fluentd plugin to calculate min/max/avg/Xpercentile values, and emit these data as message","licenses":["Apache-2.0"],"metadata":{},"sha":"23c2a144594f3fd0ab014bdb3186af0f93f3c147577320e3f63c62e1c369e913","project_uri":"https://rubygems.org/gems/fluent-plugin-numeric-monitor","gem_uri":"https://rubygems.org/gems/fluent-plugin-numeric-monitor-1.0.3.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-numeric-monitor","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-numeric-monitor/1.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-02-01T00:00:00.000Z","created_at":"2017-02-01T07:18:30.633Z","description":"Fluentd plugin to calculate min/max/avg/Xpercentile values, and emit these data as message","downloads_count":2227,"number":"1.0.3","summary":"Fluentd plugin to calculate min/max/avg/Xpercentile values","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ohai","downloads":1294,"version":"0.0.1","version_downloads":1294,"platform":"ruby","authors":"Florian Rosenberg","info":"The plugin reads ohai data from the system and emits it to fluentd. It can be configured to re-run at a certain interval.","licenses":["MIT"],"metadata":{},"sha":"6c6feca05cd7cceab8b3978bbc357441bdb9e832ed69f39dd2c6c6da97ae902c","project_uri":"https://rubygems.org/gems/fluent-plugin-ohai","gem_uri":"https://rubygems.org/gems/fluent-plugin-ohai-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ohai/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[]},"built_at":"2014-08-04T00:00:00.000Z","created_at":"2014-08-04T20:22:46.539Z","description":"The plugin reads ohai data from the system and emits it to fluentd. It can be configured to re-run at a certain interval.","downloads_count":1294,"number":"0.0.1","summary":"Plugin for fluentd to read data from ohai.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-onlineuser","downloads":1828,"version":"0.0.1","version_downloads":1828,"platform":"ruby","authors":"Yuyang Lan","info":"Fluentd plugin to count online users. It's based on Redis and the sorted set data type.","licenses":[],"metadata":{},"sha":"bae2a4e616ac2ff160c948e24b9d0fc02788313df7e833c2c0826ac0d7bf0088","project_uri":"https://rubygems.org/gems/fluent-plugin-onlineuser","gem_uri":"https://rubygems.org/gems/fluent-plugin-onlineuser-0.0.1.gem","homepage_uri":"https://github.com/lanyuyang/fluent-plugin-onlineuser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-onlineuser/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"redis","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2013-04-16T00:00:00.000Z","created_at":"2013-04-16T07:44:06.538Z","description":"Fluentd plugin to count online users. It's based on Redis and the sorted set data type.","downloads_count":1828,"number":"0.0.1","summary":"Online Users Counter","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-oomkiller","downloads":1099,"version":"0.0.1","version_downloads":1099,"platform":"ruby","authors":"Megumi Nakamura","info":"Fluentd plugin to get oom killer log from system message.","licenses":["MIT"],"metadata":{},"sha":"c065f4801344de93dc9c05ec0a84a61d7590e875e9f7784e7def5dfdeb082385","project_uri":"https://rubygems.org/gems/fluent-plugin-oomkiller","gem_uri":"https://rubygems.org/gems/fluent-plugin-oomkiller-0.0.1.gem","homepage_uri":"https://github.com/nakamegu/fluent-plugin-oomkiller","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-oomkiller/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.8"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-02-13T00:00:00.000Z","created_at":"2015-02-13T07:26:09.541Z","description":"Fluentd plugin to get oom killer log from system message.","downloads_count":1099,"number":"0.0.1","summary":"Fluentd plugin to get oom killer log.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-openldap-monitor","downloads":1474,"version":"0.0.1","version_downloads":1474,"platform":"ruby","authors":"Satoshi SUZUKI","info":"fluentd input plugin to get openldap monitor","licenses":["MIT"],"metadata":{},"sha":"1afdb512b4caa4072596de82cb7809206ae3b5e41528c821aed17fca20b88278","project_uri":"https://rubygems.org/gems/fluent-plugin-openldap-monitor","gem_uri":"https://rubygems.org/gems/fluent-plugin-openldap-monitor-0.0.1.gem","homepage_uri":"https://github.com/studio3104/fluent-plugin-openldap-monitor","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-openldap-monitor/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"},{"name":"net-ldap","requirements":">= 0"}]},"built_at":"2014-05-19T00:00:00.000Z","created_at":"2014-05-19T06:02:29.001Z","description":"fluentd input plugin to get openldap monitor","downloads_count":1474,"number":"0.0.1","summary":"fluentd input plugin to get openldap monitor","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-openshift_metadata_input","downloads":775,"version":"0.1.1","version_downloads":775,"platform":"ruby","authors":"Anton Sherkhonov","info":"Input plugin to collect Openshift metadata","licenses":["ASL2"],"metadata":{},"sha":"b1e24ae3771a45f19c09144ddc73046535a3c765ee789f2f08ccef6e3b1612dc","project_uri":"https://rubygems.org/gems/fluent-plugin-openshift_metadata_input","gem_uri":"https://rubygems.org/gems/fluent-plugin-openshift_metadata_input-0.1.1.gem","homepage_uri":"https://github.com/viaq/fluent-plugin-openshift_metadata_input","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-openshift_metadata_input/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bump","requirements":">= 0"},{"name":"bundler","requirements":"~> 1.3"},{"name":"copyright-header","requirements":">= 0"},{"name":"minitest","requirements":"~> 4.0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"test-unit-rr","requirements":"~> 1.0.3"},{"name":"vcr","requirements":">= 0"},{"name":"webmock","requirements":">= 0"},{"name":"yajl-ruby","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"lru_redux","requirements":">= 0"},{"name":"openshift_client","requirements":">= 0"}]},"built_at":"2016-07-08T00:00:00.000Z","created_at":"2016-07-08T20:34:39.002Z","description":"Input plugin to collect Openshift metadata","downloads_count":775,"number":"0.1.1","summary":"Input plugin to collect Openshift metadata","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-opentsdb","downloads":1997,"version":"0.1.1","version_downloads":1997,"platform":"ruby","authors":"Emmet Murphy","info":"Fluentd plugin to graph fluent-plugin-numeric-monitor values in OpenTSDB","licenses":[],"metadata":{},"sha":"d752f70f7b7fc4f4548077e57673bbd4c9ad5da072fa5eda180c886715d2e57c","project_uri":"https://rubygems.org/gems/fluent-plugin-opentsdb","gem_uri":"https://rubygems.org/gems/fluent-plugin-opentsdb-0.1.1.gem","homepage_uri":"https://github.com/emurphy/fluent-plugin-opentsdb","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-opentsdb/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-02-11T00:00:00.000Z","created_at":"2013-02-11T22:51:34.299Z","description":"Fluentd plugin to graph fluent-plugin-numeric-monitor values in OpenTSDB","downloads_count":1997,"number":"0.1.1","summary":"Fluentd plugin to graph fluent-plugin-numeric-monitor values in OpenTSDB","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-order","downloads":2117,"version":"0.0.1","version_downloads":2117,"platform":"ruby","authors":"Fukui ReTu","info":"Output filter plugin to rearrange the order of the elements","licenses":["APL2.0"],"metadata":{},"sha":"4abacd4d222660e0d7333ce3115673416166b3a110a2083e38a9b4deb0ec5295","project_uri":"https://rubygems.org/gems/fluent-plugin-order","gem_uri":"https://rubygems.org/gems/fluent-plugin-order-0.0.1.gem","homepage_uri":"https://github.com/fukuiretu/fluent-plugin-order","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-order/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2014-01-18T00:00:00.000Z","created_at":"2014-01-18T03:21:57.665Z","description":"Output filter plugin to rearrange the order of the elements","downloads_count":2117,"number":"0.0.1","summary":"Output filter plugin to rearrange the order of the elements","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-osmocom-spectrum-sense","downloads":939,"version":"0.0.3","version_downloads":399,"platform":"ruby","authors":"enukane","info":"fluentd plugin to get SDR input from osmocom_spectrum_sense","licenses":["MIT"],"metadata":{},"sha":"7c0461a51ffee65f4f6042eced078de0eae6b5b8c67bfdcca057b57b05654979","project_uri":"https://rubygems.org/gems/fluent-plugin-osmocom-spectrum-sense","gem_uri":"https://rubygems.org/gems/fluent-plugin-osmocom-spectrum-sense-0.0.3.gem","homepage_uri":"https://github.com/enukane/fluent-plugin-osmocom-spectrum-sense","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-osmocom-spectrum-sense/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.11"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-09-26T00:00:00.000Z","created_at":"2016-09-26T08:19:07.930Z","description":"fluentd plugin to get SDR input from osmocom_spectrum_sense","downloads_count":399,"number":"0.0.3","summary":"fluentd plugin for SDR input","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-osquery","downloads":2116,"version":"0.0.1","version_downloads":2116,"platform":"ruby","authors":"Hidenori Suzuki","info":"osquery input plugin","licenses":["MIT"],"metadata":{},"sha":"ed89bf5a4cd401d4adda10c9db450f044b94ac7b7ba4283bb150b3e5b30815c2","project_uri":"https://rubygems.org/gems/fluent-plugin-osquery","gem_uri":"https://rubygems.org/gems/fluent-plugin-osquery-0.0.1.gem","homepage_uri":"https://github.com/6pongi/fluent-plugin-osquery","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-osquery/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2015-08-18T00:00:00.000Z","created_at":"2015-08-18T16:24:58.671Z","description":"osquery input plugin","downloads_count":2116,"number":"0.0.1","summary":"a fluent plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-oui-filter","downloads":1330,"version":"0.0.6","version_downloads":366,"platform":"ruby","authors":"Tokyo Home SOC","info":"Return vendor ID from MAC address.","licenses":["MIT"],"metadata":{},"sha":"51c05a52c559793266949b2ed487adc8da4a17dbfa5ef755097b58bbb060b78d","project_uri":"https://rubygems.org/gems/fluent-plugin-oui-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-oui-filter-0.0.6.gem","homepage_uri":"http://www.homesoc.tokyo","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-oui-filter/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[]},"built_at":"2016-12-03T00:00:00.000Z","created_at":"2016-12-03T08:47:18.259Z","description":"Return vendor ID from MAC address.","downloads_count":366,"number":"0.0.6","summary":"Return vendor ID from MAC address.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out_apache_log_format","downloads":738,"version":"0.0.6","version_downloads":738,"platform":"ruby","authors":"jorge moratilla","info":"This output filter generates Combined Common Log Format entries","licenses":["MIT"],"metadata":{},"sha":"0c8b445e48c03ea70a16a5528846e87eecc6eb4c012f1574cef3b70baa98ce4f","project_uri":"https://rubygems.org/gems/fluent-plugin-out_apache_log_format","gem_uri":"https://rubygems.org/gems/fluent-plugin-out_apache_log_format-0.0.6.gem","homepage_uri":"https://bitbucket.org/jmoratilla/fluent-plugin-out_apache_log_format","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out_apache_log_format/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-08-11T00:00:00.000Z","created_at":"2016-08-11T13:14:37.172Z","description":"This output filter generates Combined Common Log Format entries","downloads_count":738,"number":"0.0.6","summary":"This output filter generates Combined Common Log Format entries","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out_chatwork","downloads":5513,"version":"0.0.99.0","version_downloads":791,"platform":"ruby","authors":"sue445","info":"[DEPRECATION] This is deprecated. Please install https://rubygems.org/gems/fluent-plugin-chatwork instead of fluent-plugin-out_chatwork","licenses":["MIT"],"metadata":{},"sha":"7dccb98f381f9de99c67ce76c54b959cd22df4abde8e5612aeceb8f38f90f5e5","project_uri":"https://rubygems.org/gems/fluent-plugin-out_chatwork","gem_uri":"https://rubygems.org/gems/fluent-plugin-out_chatwork-0.0.99.0.gem","homepage_uri":"https://github.com/sue445/fluent-plugin-out_chatwork","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out_chatwork/0.0.99.0","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"codeclimate-test-reporter","requirements":"~> 1.0.0"},{"name":"coveralls","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluent-plugin-chatwork","requirements":">= 1.0.0"}]},"built_at":"2016-12-09T00:00:00.000Z","created_at":"2016-12-09T17:45:39.652Z","description":"[DEPRECATION] This is deprecated. Please install https://rubygems.org/gems/fluent-plugin-chatwork instead of fluent-plugin-out_chatwork","downloads_count":791,"number":"0.0.99.0","summary":"[DEPRECATION] This is deprecated. Please install https://rubygems.org/gems/fluent-plugin-chatwork instead of fluent-plugin-out_chatwork","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out_datadog_event","downloads":1991,"version":"0.1.2","version_downloads":1292,"platform":"ruby","authors":"Yohei Kawahara(inokappa)","info":"fluentd output plugin for datadog event","licenses":["MIT"],"metadata":{},"sha":"741f28fd0fc68eebc11bc041f7be275649b166be55c51baf48dc0f3865c22c1f","project_uri":"https://rubygems.org/gems/fluent-plugin-out_datadog_event","gem_uri":"https://rubygems.org/gems/fluent-plugin-out_datadog_event-0.1.2.gem","homepage_uri":"https://github.com/inokappa/fluent-plugin-out_datadog_event","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out_datadog_event/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"dogapi","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[]},"built_at":"2015-04-29T00:00:00.000Z","created_at":"2015-04-29T15:21:14.674Z","description":"fluentd output plugin for datadog event","downloads_count":1292,"number":"0.1.2","summary":"fluentd output plugin for datadog event","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-falcon","downloads":1498,"version":"0.1.9","version_downloads":361,"platform":"ruby","authors":"tsingakbar","info":"A Fluentd output plugin to send logs to falcon's push API","licenses":["Apache-2.0"],"metadata":{},"sha":"2d8dae7925d9b2bbf8fde536224223f1b51f3ebdffb338038a88a9bc097a4778","project_uri":"https://rubygems.org/gems/fluent-plugin-out-falcon","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-falcon-0.1.9.gem","homepage_uri":"https://github.com/tsingakbar/fluent-plugin-out-falcon","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-falcon/0.1.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 0"},{"name":"rake","requirements":"~> 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"net-http-persistent","requirements":">= 2.9.0, ~> 2.9.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2016-11-15T00:00:00.000Z","created_at":"2016-11-15T08:10:08.199Z","description":"A Fluentd output plugin to send logs to falcon's push API","downloads_count":361,"number":"0.1.9","summary":"A Fluentd output plugin to send logs to falcon's push API","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-file-with-fix-path","downloads":2382,"version":"0.1.0","version_downloads":1213,"platform":"ruby","authors":"fetaro","info":"FLuentd plugin for SNMP Traps... WIP","licenses":["MIT"],"metadata":{},"sha":"f8e49342d00bc556f29b41990826d7f8517560ab132d76ee85128079578b6131","project_uri":"https://rubygems.org/gems/fluent-plugin-out-file-with-fix-path","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-file-with-fix-path-0.1.0.gem","homepage_uri":"https://github.com/fetaro/fluent-plugin-out-file-with-fix-path.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-file-with-fix-path/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0.10.58"}]},"built_at":"2015-09-08T00:00:00.000Z","created_at":"2015-09-08T00:21:14.944Z","description":"FLuentd plugin for SNMP Traps... WIP","downloads_count":1213,"number":"0.1.0","summary":"Extention of fluentd out_file plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out_hosted_graphite","downloads":1974,"version":"0.0.2","version_downloads":1157,"platform":"ruby","authors":"inokappa","info":"fluentd output plugin for post to Hosted Graphite","licenses":["MIT"],"metadata":{},"sha":"8b830374be5c71bdd48d2ab08754da36b9af9e73da9b8d6a781731319ee3c844","project_uri":"https://rubygems.org/gems/fluent-plugin-out_hosted_graphite","gem_uri":"https://rubygems.org/gems/fluent-plugin-out_hosted_graphite-0.0.2.gem","homepage_uri":"https://github.com/inokappa/fluent-plugin-out_hosted_graphite","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out_hosted_graphite/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"hosted_graphite","requirements":">= 0"}]},"built_at":"2015-01-11T00:00:00.000Z","created_at":"2015-01-11T05:02:28.699Z","description":"fluentd output plugin for post to Hosted Graphite","downloads_count":1157,"number":"0.0.2","summary":"fluentd output plugin for post to Hosted Graphite","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-http","downloads":17866,"version":"0.2.0","version_downloads":951,"platform":"ruby","authors":"Marica Odagaki","info":"A generic Fluentd output plugin to send logs to an HTTP endpoint","licenses":["Apache-2.0"],"metadata":{},"sha":"475f5d2390898bfdab7913c43013c47119277b1c53078e5d928153b5c22bb827","project_uri":"https://rubygems.org/gems/fluent-plugin-out-http","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-http-0.2.0.gem","homepage_uri":"https://github.com/ento/fluent-plugin-out-http","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-http/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2017-03-13T00:00:00.000Z","created_at":"2017-03-13T02:44:29.920Z","description":"A generic Fluentd output plugin to send logs to an HTTP endpoint","downloads_count":951,"number":"0.2.0","summary":"A generic Fluentd output plugin to send logs to an HTTP endpoint","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-http-buffered","downloads":3348,"version":"0.0.1","version_downloads":3348,"platform":"ruby","authors":"Alexander Blagoev","info":"Send fluent buffered logs to an http endpoint","licenses":["MIT"],"metadata":{},"sha":"3b46bccdca75a82e42dce6fb969b077d627ce1e399de7b9d5750274c0adf2f9e","project_uri":"https://rubygems.org/gems/fluent-plugin-out-http-buffered","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-http-buffered-0.0.1.gem","homepage_uri":"http://github.com/ablagoev/fluent-plugin-out-http-buffered","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-http-buffered/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 1.3.4"},{"name":"rake","requirements":">= 0.9.2"},{"name":"rspec-mocks","requirements":">= 2.13.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2013-05-13T00:00:00.000Z","created_at":"2013-10-20T17:17:29.531Z","description":"Send fluent buffered logs to an http endpoint","downloads_count":3348,"number":"0.0.1","summary":"Fluentd http buffered output plugin","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-http-ext","downloads":3792,"version":"0.1.9","version_downloads":549,"platform":"ruby","authors":"Toshiya Kawasaki","info":"A generic Fluentd output plugin to send logs to an HTTP endpoint with SSL and Header option","licenses":["Apache-2.0"],"metadata":{},"sha":"61dd3852b5877e1c0809ce7056b95180ff72e15162fa477c2919df0b45ab6271","project_uri":"https://rubygems.org/gems/fluent-plugin-out-http-ext","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-http-ext-0.1.9.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-http-ext/0.1.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"coveralls","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2016-11-19T00:00:00.000Z","created_at":"2016-11-19T05:37:44.887Z","description":"A generic Fluentd output plugin to send logs to an HTTP endpoint with SSL and Header option","downloads_count":549,"number":"0.1.9","summary":"A generic Fluentd output plugin to send logs to an HTTP endpoint with SSL and Header option","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-http-ext-ignore-ssl-errors","downloads":395,"version":"0.0.1","version_downloads":395,"platform":"ruby","authors":"Joyce Chan","info":"A generic Fluentd output plugin to send logs to an HTTP endpoint with SSL and Header option, extended from kawasakitoshiya@gmail.com's similarily named gem'","licenses":["Apache-2.0"],"metadata":{},"sha":"34761ded461f0a90b54cc5057f4892dc4f075df5c8763b777a976cf81af159ec","project_uri":"https://rubygems.org/gems/fluent-plugin-out-http-ext-ignore-ssl-errors","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-http-ext-ignore-ssl-errors-0.0.1.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-http-ext-ignore-ssl-errors/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"coveralls","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2016-10-04T00:00:00.000Z","created_at":"2016-10-04T20:02:18.439Z","description":"A generic Fluentd output plugin to send logs to an HTTP endpoint with SSL and Header option, extended from kawasakitoshiya@gmail.com's similarily named gem'","downloads_count":395,"number":"0.0.1","summary":"A generic Fluentd output plugin to send logs to an HTTP endpoint with SSL and Header option, extended from kawasakitoshiya@gmail.com's similarily named gem'","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-kafka-rest","downloads":2009,"version":"0.1.1.2","version_downloads":524,"platform":"ruby","authors":"dobachi","info":"A fluentd output plugin for sending logs to Kafka REST Proxy","licenses":[],"metadata":{},"sha":"6c436f3315105c86e744234e8d57f0118b430ea3d7e9555be36768e3c900e3d4","project_uri":"https://rubygems.org/gems/fluent-plugin-out-kafka-rest","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-kafka-rest-0.1.1.2.gem","homepage_uri":"https://github.com/dobachi/fluent-plugin-out-kafka-rest","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-kafka-rest/0.1.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2016-04-27T00:00:00.000Z","created_at":"2016-04-27T17:35:56.239Z","description":"A fluentd output plugin for sending logs to Kafka REST Proxy","downloads_count":524,"number":"0.1.1.2","summary":"A fluentd output plugin for sending logs to Kafka REST Proxy","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-output-solr","downloads":7710,"version":"1.0.0","version_downloads":231,"platform":"ruby","authors":"Minoru Osuka","info":"Fluent output plugin for sending data to Apache Solr. It support SolrCloud not only Standalone Solr.","licenses":["Apache-2.0"],"metadata":{},"sha":"516440757ce43c44fad8d2753f8633bfa5767b449e1ab139f506ac61fbb956a1","project_uri":"https://rubygems.org/gems/fluent-plugin-output-solr","gem_uri":"https://rubygems.org/gems/fluent-plugin-output-solr-1.0.0.gem","homepage_uri":"https://github.com/mosuka/fluent-plugin-output-solr","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-output-solr/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14.6"},{"name":"minitest","requirements":"~> 5.8.3"},{"name":"rake","requirements":"~> 11.1.2"},{"name":"test-unit","requirements":"~> 3.1.5"},{"name":"webmock","requirements":"~> 1.22.3"},{"name":"zk-server","requirements":"~> 1.1.8"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.0"},{"name":"rsolr","requirements":"~> 1.0.12"},{"name":"rsolr-cloud","requirements":"~> 1.1.0"},{"name":"zk","requirements":"~> 1.9.5"}]},"built_at":"2017-03-29T00:00:00.000Z","created_at":"2017-03-29T12:40:25.419Z","description":"Fluent output plugin for sending data to Apache Solr. It support SolrCloud not only Standalone Solr.","downloads_count":231,"number":"1.0.0","summary":"Fluent output plugin for sending data to Apache Solr.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out_rawtcp","downloads":1952,"version":"0.0.1","version_downloads":1952,"platform":"ruby","authors":"lxfontes","info":"Raw tcp output plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"6df9cfffc6914a30e6bc21ea43c99c56b17454ee079aa89fb0a3de069f406bc2","project_uri":"https://rubygems.org/gems/fluent-plugin-out_rawtcp","gem_uri":"https://rubygems.org/gems/fluent-plugin-out_rawtcp-0.0.1.gem","homepage_uri":"https://github.com/lxfontes/fluent-plugin-out_rawtcp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out_rawtcp/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-07-28T00:00:00.000Z","created_at":"2014-07-28T16:19:50.833Z","description":"Raw tcp output plugin for Fluentd","downloads_count":1952,"number":"0.0.1","summary":"output plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-solr","downloads":9171,"version":"0.0.8","version_downloads":1189,"platform":"ruby","authors":"diogo, pitr, haruyama","info":"Solr output plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"55bf35cd7ba25f7b9bdca2412cfc0bed6cef55225009a1d114d545a08942f092","project_uri":"https://rubygems.org/gems/fluent-plugin-out-solr","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-solr-0.0.8.gem","homepage_uri":"https://github.com/haruyama/fluent-plugin-out-solr","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-solr/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-03-18T00:00:00.000Z","created_at":"2015-03-18T01:17:18.661Z","description":"Solr output plugin for Fluent event collector","downloads_count":1189,"number":"0.0.8","summary":"Solr output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-out-upsolver","downloads":255,"version":"0.0.1","version_downloads":255,"platform":"ruby","authors":"Shani Elharrar","info":"Fluentd out plugin to upsolver","licenses":["MIT"],"metadata":{},"sha":"54e21dc3e7a43d9ebc4c2ffe022335e8291f9276c9b312e3d0c3a129d286e0a5","project_uri":"https://rubygems.org/gems/fluent-plugin-out-upsolver","gem_uri":"https://rubygems.org/gems/fluent-plugin-out-upsolver-0.0.1.gem","homepage_uri":"https://github.com/Upsolver/fluent-plugin-out-upsolver","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-out-upsolver/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.4.2"},{"name":"test-unit","requirements":"~> 3.1.3"}],"runtime":[{"name":"curb","requirements":"~> 0.9.3"},{"name":"fluentd","requirements":"~> 0.12"}]},"built_at":"2017-02-26T00:00:00.000Z","created_at":"2017-02-26T09:07:04.893Z","description":"Fluentd out plugin to upsolver","downloads_count":255,"number":"0.0.1","summary":"Fluentd out plugin to upsolver","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-pagerduty","downloads":258,"version":"0.0.1","version_downloads":258,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd Input plugin to replay alert notification for PagerDuty API.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"d8e50956e30828513e4d55b1731639256e9e4134e8118a1a9fa64029bfa2b6fb","project_uri":"https://rubygems.org/gems/fluent-plugin-pagerduty","gem_uri":"https://rubygems.org/gems/fluent-plugin-pagerduty-0.0.1.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-pagerduty","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pagerduty/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"pagerduty","requirements":">= 0"}]},"built_at":"2017-03-19T00:00:00.000Z","created_at":"2017-03-19T03:23:23.869Z","description":"Fluentd Input plugin to replay alert notification for PagerDuty API.","downloads_count":258,"number":"0.0.1","summary":"Fluentd Input plugin to replay alert notification for PagerDuty API.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-parameterized-path","downloads":1062,"version":"0.2.1","version_downloads":262,"platform":"ruby","authors":"Masayasu Yamamoto","info":"Apply the value of the specified field to part of the path.","licenses":["Apache License 2.0"],"metadata":{},"sha":"697c973dae7b7c947e7121b7c36559ae95956083f2ac92d4e8402d606381969c","project_uri":"https://rubygems.org/gems/fluent-plugin-parameterized-path","gem_uri":"https://rubygems.org/gems/fluent-plugin-parameterized-path-0.2.1.gem","homepage_uri":"https://github.com/msysyamamoto/fluent-plugin-parameterized-path","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-parameterized-path/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.0"}]},"built_at":"2017-03-01T00:00:00.000Z","created_at":"2017-03-01T14:16:20.860Z","description":"Apply the value of the specified field to part of the path.","downloads_count":262,"number":"0.2.1","summary":"Apply the value of the specified field to part of the path.","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-parse_cookie","downloads":2797,"version":"0.0.3","version_downloads":1299,"platform":"ruby","authors":"Hirokazu Hata","info":"Fluentd plugin to parse cookie","licenses":["MIT"],"metadata":{},"sha":"061dbabd63c4bd2914721e03f6ce428a90d1c363cc47ee2d9d2a23d17080d67d","project_uri":"https://rubygems.org/gems/fluent-plugin-parse_cookie","gem_uri":"https://rubygems.org/gems/fluent-plugin-parse_cookie-0.0.3.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-parse_cookie/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-byebug","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-04-25T00:00:00.000Z","created_at":"2015-04-25T18:40:16.586Z","description":"Fluentd plugin to parse cookie","downloads_count":1299,"number":"0.0.3","summary":"Fluentd plugin to parse cookie","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-parse_multiple_value_query","downloads":2439,"version":"0.0.4","version_downloads":724,"platform":"ruby","authors":"Hirokazu Hata","info":"Fluentd plugin to parse query string with rails format","licenses":["MIT"],"metadata":{},"sha":"ff8552f4f558b24d32fe99fceec2000b272ee0d3ccd58c3ed00bcdafc1293a89","project_uri":"https://rubygems.org/gems/fluent-plugin-parse_multiple_value_query","gem_uri":"https://rubygems.org/gems/fluent-plugin-parse_multiple_value_query-0.0.4.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-parse_multiple_value_query/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-byebug","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"rack","requirements":"~> 1.3.1"}]},"built_at":"2016-02-04T00:00:00.000Z","created_at":"2016-02-04T11:06:02.595Z","description":"Fluentd plugin to parse query string with rails format","downloads_count":724,"number":"0.0.4","summary":"Fluentd plugin to parse query string with rails format","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-parser","downloads":384298,"version":"0.6.1","version_downloads":252629,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"fluentd plugin to parse single field, or to combine log structure into single field","licenses":["Apache-2.0"],"metadata":{},"sha":"8d9c0d7d371c04dba2fa3f2cd97c2877d97d42bea335a401aacf6d32cd73d57c","project_uri":"https://rubygems.org/gems/fluent-plugin-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-parser-0.6.1.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-parser/0.6.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"oj","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"}]},"built_at":"2016-04-25T00:00:00.000Z","created_at":"2016-04-25T02:02:37.298Z","description":"fluentd plugin to parse single field, or to combine log structure into single field","downloads_count":252629,"number":"0.6.1","summary":"plugin to parse/combine fluentd log messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-parser_cef","downloads":1287,"version":"0.3.1","version_downloads":308,"platform":"ruby","authors":"Tomoyuki Sugimura","info":"common event format(CEF) parser plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"e834ed0501d84ec49d75171b9c6e35033c88b497b9f67a9055fa358a413e41f0","project_uri":"https://rubygems.org/gems/fluent-plugin-parser_cef","gem_uri":"https://rubygems.org/gems/fluent-plugin-parser_cef-0.3.1.gem","homepage_uri":"https://github.com/lunardial/fluent-plugin-parser_cef","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-parser_cef/0.3.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":"~> 3.0"},{"name":"rspec-core","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 0.14, >= 0.12"}]},"built_at":"2017-02-23T00:00:00.000Z","created_at":"2017-02-23T06:57:53.477Z","description":"common event format(CEF) parser plugin for fluentd","downloads_count":308,"number":"0.3.1","summary":"common event format(CEF) parser plugin, currently only 'syslog' format is permitted","rubygems_version":">= 0","ruby_version":"~> 2.1","prerelease":false,"requirements":[]},{"name":"fluent-plugin-parserequestbody","downloads":3363,"version":"0.0.3","version_downloads":1425,"platform":"ruby","authors":"Keiichiro Nagashima","info":"Fluentd plugin for parse request body","licenses":["MIT"],"metadata":{},"sha":"509a2d42e601193da944c8090dd45512ce835ea7c218991c96b19d21799f1bba","project_uri":"https://rubygems.org/gems/fluent-plugin-parserequestbody","gem_uri":"https://rubygems.org/gems/fluent-plugin-parserequestbody-0.0.3.gem","homepage_uri":"https://github.com/k1row/fluent-plugin-requestbody.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-parserequestbody/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-08-13T00:00:00.000Z","created_at":"2014-08-13T10:24:53.369Z","description":"Fluentd plugin for parse request body","downloads_count":1425,"number":"0.0.3","summary":"Fluentd plugin for parse request body","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-path2tag","downloads":1474,"version":"1.0.4","version_downloads":222,"platform":"ruby","authors":"Shota Kuwahara","info":"Fluentd Output filter plugin.","licenses":["MIT"],"metadata":{},"sha":"ebaef18fb5fbfd7ce8ca1ede4c1f6c6d68033fe9b1acf03a38602a9feac6ab55","project_uri":"https://rubygems.org/gems/fluent-plugin-path2tag","gem_uri":"https://rubygems.org/gems/fluent-plugin-path2tag-1.0.4.gem","homepage_uri":"https://github.com/skuwa229/fluent-plugin-path2tag","wiki_uri":"","documentation_uri":"https://github.com/skuwa229/fluent-plugin-path2tag","mailing_list_uri":"","source_code_uri":"https://github.com/skuwa229/fluent-plugin-path2tag","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":"< 0.14.0, >= 0.10.0"}]},"built_at":"2017-04-04T00:00:00.000Z","created_at":"2017-04-04T09:13:26.311Z","description":"","downloads_count":222,"number":"1.0.4","summary":"Fluentd Output filter plugin.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-pcapng","downloads":955,"version":"0.0.1","version_downloads":955,"platform":"ruby","authors":"enukane","info":"Fluentd plugin for tshark (pcapng) monitoring from specified interface","licenses":["MIT"],"metadata":{},"sha":"55b84b653b893a7dd7d58ffc22fe274ae00a9cb8b5fcc15420bab78a8f87bbe8","project_uri":"https://rubygems.org/gems/fluent-plugin-pcapng","gem_uri":"https://rubygems.org/gems/fluent-plugin-pcapng-0.0.1.gem","homepage_uri":"https://github.com/enukane/fluent-plugin-pcapng","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pcapng/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2015-10-08T00:00:00.000Z","created_at":"2015-10-08T09:55:05.666Z","description":"Fluentd plugin for tshark (pcapng) monitoring from specified interface","downloads_count":955,"number":"0.0.1","summary":"Fluentd input plugin for monitoring packets received in specified interface","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-pgdist","downloads":3426,"version":"0.2.0","version_downloads":2035,"platform":"ruby","authors":"Kenji Hara","info":"Fluentd plugin for distribute insert into PostgreSQL","licenses":["MIT"],"metadata":{},"sha":"9f2895577518fc548489f6f6a04a791bc5c05d2437b12fc4228440c6e26dcbde","project_uri":"https://rubygems.org/gems/fluent-plugin-pgdist","gem_uri":"https://rubygems.org/gems/fluent-plugin-pgdist-0.2.0.gem","homepage_uri":"http://github.com/haracane/fluent-plugin-pgdist","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pgdist/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"ci_reporter","requirements":"~> 1.8.3"},{"name":"flog","requirements":"~> 3.2.1"},{"name":"jeweler","requirements":"~> 1.8.4"},{"name":"rdoc","requirements":"~> 3.12"},{"name":"redcarpet","requirements":"~> 2.2.2"},{"name":"rspec","requirements":"~> 2.12.0"},{"name":"simplecov","requirements":"~> 0.7.1"},{"name":"simplecov-rcov","requirements":"~> 0.2.3"},{"name":"yard","requirements":"~> 0.8.3"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.33"},{"name":"pg","requirements":"~> 0.15.1"}]},"built_at":"2013-05-02T00:00:00.000Z","created_at":"2013-05-02T11:00:19.135Z","description":"Fluentd plugin for distribute insert into PostgreSQL","downloads_count":2035,"number":"0.2.0","summary":"Fluentd plugin for distribute insert into PostgreSQL","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-pghstore","downloads":18985,"version":"0.2.7","version_downloads":213,"platform":"ruby","authors":"WAKAYAMA Shirou","info":"Output to PostgreSQL database which has a hstore extension","licenses":["Apache-2.0"],"metadata":{},"sha":"97a14263cc7c3c03c6d212449df5172dd860ada8b9ffd9dc941991e22ae11e98","project_uri":"https://rubygems.org/gems/fluent-plugin-pghstore","gem_uri":"https://rubygems.org/gems/fluent-plugin-pghstore-0.2.7.gem","homepage_uri":"https://github.com/shirou/fluent-plugin-pghstore","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pghstore/0.2.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":"< 2, >= 0.12.5"},{"name":"pg","requirements":"~> 0.18.1"},{"name":"rake","requirements":">= 11.0"},{"name":"rspec","requirements":"~> 3.2.0"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[]},"built_at":"2017-04-05T00:00:00.000Z","created_at":"2017-04-05T06:46:41.259Z","description":"Output to PostgreSQL database which has a hstore extension","downloads_count":213,"number":"0.2.7","summary":"Output to PostgreSQL database which has a hstore extension","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-pgjson","downloads":11522,"version":"0.0.8","version_downloads":2971,"platform":"ruby","authors":"OKUNO Akihiro","info":"This rubygem does not have a description or summary.","licenses":["Apache-2.0"],"metadata":{},"sha":"6edd103b3787ce5fd51dfe20aaea6d3826d0c17b0fa3728c87bce584d2c5b9df","project_uri":"https://rubygems.org/gems/fluent-plugin-pgjson","gem_uri":"https://rubygems.org/gems/fluent-plugin-pgjson-0.0.8.gem","homepage_uri":"https://github.com/choplin/fluent-plugin-pgjson","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pgjson/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"pg","requirements":">= 0"}]},"built_at":"2015-09-01T00:00:00.000Z","created_at":"2015-09-01T07:40:44.943Z","description":"","downloads_count":2971,"number":"0.0.8","summary":"","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-pg_stat","downloads":486,"version":"0.1.1","version_downloads":304,"platform":"ruby","authors":"Yusuke Hagihara","info":"PostgreSQL stat input plugin for Fleuentd","licenses":["Apache-2.0"],"metadata":{},"sha":"8ce1ce061630d861e475e34fdb9cbe085da5a0d45e422193957d993f0ad75a16","project_uri":"https://rubygems.org/gems/fluent-plugin-pg_stat","gem_uri":"https://rubygems.org/gems/fluent-plugin-pg_stat-0.1.1.gem","homepage_uri":"https://github.com/hagihala/fluent-plugin-pg_stat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pg_stat/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 12.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.12.0"},{"name":"pg","requirements":">= 0.19.0, ~> 0.19"}]},"built_at":"2017-01-25T00:00:00.000Z","created_at":"2017-01-25T02:35:33.420Z","description":"PostgreSQL stat input plugin for Fleuentd","downloads_count":304,"number":"0.1.1","summary":"PostgreSQL stat input plugin for Fleuentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-pi","downloads":2841,"version":"0.0.11","version_downloads":401,"platform":"ruby","authors":"Derek Endres","info":"Fluentd plugin to either get data from OSISoft PI, send to OSISoft PI or send to OSISoft QI","licenses":["OSISoft LLC"],"metadata":{},"sha":"6dc64aef78db64cb78f8b058b6b8b8ddc784080c287941f15a858b5dfdad8be0","project_uri":"https://rubygems.org/gems/fluent-plugin-pi","gem_uri":"https://rubygems.org/gems/fluent-plugin-pi-0.0.11.gem","homepage_uri":"https://github.com/osisoftresearch","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pi/0.0.11","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"adal","requirements":"~> 1.0.0"},{"name":"certified","requirements":"~> 1.0.0"},{"name":"rest-client","requirements":"~> 1.6.9"}]},"built_at":"2016-10-06T00:00:00.000Z","created_at":"2016-10-06T13:56:52.110Z","description":"Fluentd plugin to either get data from OSISoft PI, send to OSISoft PI or send to OSISoft QI","downloads_count":401,"number":"0.0.11","summary":"Fluentd plugin to either get data from OSISoft PI, send to OSISoft PI or send to OSISoft QI.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ping-message","downloads":85681,"version":"1.0.0","version_downloads":2216,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"for heartbeat monitoring of Fluentd processes","licenses":["Apache-2.0"],"metadata":{},"sha":"0d9d2c52511d8953ec5424b10f57af078c0d425186bdb7e243554dbc77932750","project_uri":"https://rubygems.org/gems/fluent-plugin-ping-message","gem_uri":"https://rubygems.org/gems/fluent-plugin-ping-message-1.0.0.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-ping-message","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ping-message/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-02-02T00:00:00.000Z","created_at":"2017-02-02T05:53:21.848Z","description":"for heartbeat monitoring of Fluentd processes","downloads_count":2216,"number":"1.0.0","summary":"Fluentd plugin to send/check ping messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ping_port","downloads":1653,"version":"0.0.2","version_downloads":988,"platform":"ruby","authors":"Hiroshi Toyama","info":"health check with port plugin for fluentd.","licenses":["MIT"],"metadata":{},"sha":"2eac80e3af94cf19f2852f1d18f4caa8b02ec0b49e68ef02fedb7b28bbddbb06","project_uri":"https://rubygems.org/gems/fluent-plugin-ping_port","gem_uri":"https://rubygems.org/gems/fluent-plugin-ping_port-0.0.2.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-ping_port","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ping_port/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7.2"},{"name":"fluentd","requirements":"~> 0.10.53"},{"name":"pry","requirements":"~> 0.10.1"},{"name":"rake","requirements":"~> 10.3.2"},{"name":"rubocop","requirements":"~> 0.24.1"},{"name":"rubygems-tasks","requirements":"~> 0.2"},{"name":"yard","requirements":"~> 0.8"}],"runtime":[]},"built_at":"2015-06-18T00:00:00.000Z","created_at":"2015-06-18T11:51:33.843Z","description":"health check with port plugin for fluentd.","downloads_count":988,"number":"0.0.2","summary":"health check with port plugin for fluentd.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-postgres","downloads":4612,"version":"0.0.1","version_downloads":4612,"platform":"ruby","authors":"TAGOMORI Satoshi, Diogo Terror, pitr","info":"fluent plugin to insert on PostgreSQL","licenses":["Apache 2.0"],"metadata":{},"sha":"679aaeb3bd60218a36c1063b7a7ab9db4645673e98d8b4724629d36b1767de45","project_uri":"https://rubygems.org/gems/fluent-plugin-postgres","gem_uri":"https://rubygems.org/gems/fluent-plugin-postgres-0.0.1.gem","homepage_uri":"https://github.com/uken/fluent-plugin-postgres","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-postgres/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"pg","requirements":">= 0"}]},"built_at":"2013-02-11T00:00:00.000Z","created_at":"2013-02-11T18:42:44.951Z","description":"fluent plugin to insert on PostgreSQL","downloads_count":4612,"number":"0.0.1","summary":"fluent plugin to insert on PostgreSQL","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-postgres-replicator","downloads":1261,"version":"0.0.2","version_downloads":766,"platform":"ruby","authors":"innossh","info":"PostgreSQL replication input plugin for Fluent","licenses":["Apache-2.0"],"metadata":{},"sha":"f198bc9e53f21a38250cf6949a6b587480f0291f1cb8a251805bf2739810e6a3","project_uri":"https://rubygems.org/gems/fluent-plugin-postgres-replicator","gem_uri":"https://rubygems.org/gems/fluent-plugin-postgres-replicator-0.0.2.gem","homepage_uri":"https://github.com/innossh/fluent-plugin-postgres-replicator","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-postgres-replicator/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"pg","requirements":">= 0"}]},"built_at":"2016-01-07T00:00:00.000Z","created_at":"2016-01-07T17:02:57.764Z","description":"","downloads_count":766,"number":"0.0.2","summary":"PostgreSQL replication input plugin for Fluent","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-presto_query","downloads":2342,"version":"0.0.3","version_downloads":974,"platform":"ruby","authors":"Hiroshi Toyama","info":"Fluentd Input plugin to execute Presto query and fetch rows.","licenses":["MIT"],"metadata":{},"sha":"b77ae8d24e37b1ceed3f6d0a161bfe8c7a321949330829f4fde5cb9f31f551d0","project_uri":"https://rubygems.org/gems/fluent-plugin-presto_query","gem_uri":"https://rubygems.org/gems/fluent-plugin-presto_query-0.0.3.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-presto_query","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-presto_query/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7.2"},{"name":"fluentd","requirements":"~> 0.10.60"},{"name":"pry","requirements":"~> 0.10.1"},{"name":"rake","requirements":"~> 10.3.2"},{"name":"rubocop","requirements":"~> 0.24.1"},{"name":"rubygems-tasks","requirements":"~> 0.2"},{"name":"yard","requirements":"~> 0.8"}],"runtime":[{"name":"parse-cron","requirements":">= 0"},{"name":"presto-client","requirements":">= 0"}]},"built_at":"2015-06-02T00:00:00.000Z","created_at":"2015-06-02T01:14:33.376Z","description":"Fluentd Input plugin to execute Presto query and fetch rows.","downloads_count":974,"number":"0.0.3","summary":"Fluentd Input plugin to execute Presto query and fetch rows.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-proc_count","downloads":561,"version":"0.0.2","version_downloads":197,"platform":"ruby","authors":"toyama0919","info":"process count check plugin for fluentd.","licenses":["MIT"],"metadata":{},"sha":"d0ed5655676ceb64d895feeac41afbfda25bda5b3282bd37bf7bc07329184f95","project_uri":"https://rubygems.org/gems/fluent-plugin-proc_count","gem_uri":"https://rubygems.org/gems/fluent-plugin-proc_count-0.0.2.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-proc_count","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-proc_count/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rubocop","requirements":">= 0"},{"name":"rubygems-tasks","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"yard","requirements":">= 0"}],"runtime":[{"name":"ffi","requirements":">= 0"},{"name":"sys-proctable","requirements":">= 0"}]},"built_at":"2017-04-19T00:00:00.000Z","created_at":"2017-04-19T07:35:54.356Z","description":"process count check plugin for fluentd.","downloads_count":197,"number":"0.0.2","summary":"process count check plugin for fluentd.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-prometheus","downloads":14468,"version":"0.3.0","version_downloads":2598,"platform":"ruby","authors":"Masahiro Sano","info":"A fluent plugin that collects metrics and exposes for Prometheus.","licenses":["MIT"],"metadata":{},"sha":"4822286547d9f630197b3de74724ee3b2f3809feaead969b100d862e0cdf4c32","project_uri":"https://rubygems.org/gems/fluent-plugin-prometheus","gem_uri":"https://rubygems.org/gems/fluent-plugin-prometheus-0.3.0.gem","homepage_uri":"https://github.com/kazegusuri/fluent-plugin-prometheus","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-prometheus/0.3.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"prometheus-client","requirements":">= 0"}]},"built_at":"2017-04-02T00:00:00.000Z","created_at":"2017-04-02T13:11:39.022Z","description":"A fluent plugin that collects metrics and exposes for Prometheus.","downloads_count":2598,"number":"0.3.0","summary":"A fluent plugin that collects metrics and exposes for Prometheus.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-prometheus-thread","downloads":453,"version":"0.1.3","version_downloads":453,"platform":"ruby","authors":"Masahiro Sano, James Harlow","info":"A td-agent plugin that collects metrics and exposes for Prometheus.","licenses":["MIT"],"metadata":{},"sha":"9f4b1b7e070d36ee37824a70cb845b87e3b75490de4bb5aa0dba39e8862eefe7","project_uri":"https://rubygems.org/gems/fluent-plugin-prometheus-thread","gem_uri":"https://rubygems.org/gems/fluent-plugin-prometheus-thread-0.1.3.gem","homepage_uri":"https://github.com/hythloday/fluent-plugin-prometheus","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-prometheus-thread/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"prometheus-client","requirements":">= 0"}]},"built_at":"2016-07-18T00:00:00.000Z","created_at":"2016-07-18T22:05:02.470Z","description":"A td-agent plugin that collects metrics and exposes for Prometheus.","downloads_count":453,"number":"0.1.3","summary":"A td-agent plugin that collects metrics and exposes for Prometheus.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-protocols-filter","downloads":1503,"version":"0.0.6","version_downloads":377,"platform":"ruby","authors":"Tokyo Home SOC","info":"Converts the protocol name protocol number.","licenses":["MIT"],"metadata":{},"sha":"278db66cacdf5749c46617e975396f20210104e4e935740d1497f00f2c32774d","project_uri":"https://rubygems.org/gems/fluent-plugin-protocols-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-protocols-filter-0.0.6.gem","homepage_uri":"https://github.com/airforon/fluent-plugin-protocols-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-protocols-filter/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.00"}]},"built_at":"2016-12-03T00:00:00.000Z","created_at":"2016-12-03T08:51:30.140Z","description":"Converts the protocol name protocol number.","downloads_count":377,"number":"0.0.6","summary":"Converts the protocol name protocol number.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-pull_forward","downloads":2389,"version":"0.0.2","version_downloads":1426,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Fluentd plugin that store data to be forwarded, and send these when client(input plugin) requests it, over HTTPS and authentication","licenses":["APLv2"],"metadata":{},"sha":"f9006fb18d0ad9eceb4e3530476c625e9c3854190ef8b7d7944fd0adda4e82d2","project_uri":"https://rubygems.org/gems/fluent-plugin-pull_forward","gem_uri":"https://rubygems.org/gems/fluent-plugin-pull_forward-0.0.2.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-pull_forward","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pull_forward/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-certificate","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"fluent-plugin-buffer-pullpool","requirements":">= 0"},{"name":"resolve-hostname","requirements":">= 0.0.4"}]},"built_at":"2014-08-18T00:00:00.000Z","created_at":"2014-08-18T07:33:22.306Z","description":"Fluentd plugin that store data to be forwarded, and send these when client(input plugin) requests it, over HTTPS and authentication","downloads_count":1426,"number":"0.0.2","summary":"Fluentd plugin to forward data, by pulling from input plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-pushover","downloads":2472,"version":"1.0.0","version_downloads":1038,"platform":"ruby","authors":"Jan Karásek","info":"Fluentd Output plugin to make a call with Pushover API.","licenses":[],"metadata":{},"sha":"be52ffd129f14c2508084fd3f690ce941deab12ffa44c665658bb77f67c5170e","project_uri":"https://rubygems.org/gems/fluent-plugin-pushover","gem_uri":"https://rubygems.org/gems/fluent-plugin-pushover-1.0.0.gem","homepage_uri":"https://github.com/hkar/fluent-plugin-pushover","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-pushover/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-05-08T00:00:00.000Z","created_at":"2015-05-08T19:53:07.206Z","description":"","downloads_count":1038,"number":"1.0.0","summary":"Fluentd Output plugin to make a call with Pushover API.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-qqwry","downloads":5630,"version":"0.1.0","version_downloads":1397,"platform":"ruby","authors":"Chris Song","info":"Fluentd output filter plugin to add information about geographical location of IP addresses with QQWry databases.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"49f191de59c5ff29029f4dfb99d185d1730f0439e8e82565c0ccdf3b5bba6f6e","project_uri":"https://rubygems.org/gems/fluent-plugin-qqwry","gem_uri":"https://rubygems.org/gems/fluent-plugin-qqwry-0.1.0.gem","homepage_uri":"https://github.com/fakechris/fluent-plugin-qqwry","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-qqwry/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-rewrite-tag-name","requirements":">= 0"},{"name":"qqwry","requirements":">= 0"}]},"built_at":"2014-06-19T00:00:00.000Z","created_at":"2014-06-19T02:50:18.485Z","description":"","downloads_count":1397,"number":"0.1.0","summary":"Fluentd output filter plugin to add information about geographical location of IP addresses with QQWry databases.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-querycombiner","downloads":3658,"version":"0.0.3","version_downloads":1194,"platform":"ruby","authors":"Takahiro Kamatani","info":"Fluent plugin to combine multiple queries.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"26c14239060f44410eb0626660c64a3d0d4a1e5631aa142fd97ebe0e19d17799","project_uri":"https://rubygems.org/gems/fluent-plugin-querycombiner","gem_uri":"https://rubygems.org/gems/fluent-plugin-querycombiner-0.0.3.gem","homepage_uri":"https://github.com/buhii/fluent-plugin-querycombiner","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-querycombiner/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2014-12-04T00:00:00.000Z","created_at":"2014-12-04T10:51:33.354Z","description":"Fluent plugin to combine multiple queries.","downloads_count":1194,"number":"0.0.3","summary":"Fluent plugin to combine multiple queries.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rabbitmq-json-trace-parser","downloads":870,"version":"0.1.0","version_downloads":870,"platform":"ruby","authors":"Max Riveiro","info":"Fluentd Parser plugin for RabbitMQ Trace log in JSON format.","licenses":["MIT"],"metadata":{},"sha":"c4811fb2bb234bd0f8be1635b416b84c8a182a528cea9430dbd2f92e0b23a362","project_uri":"https://rubygems.org/gems/fluent-plugin-rabbitmq-json-trace-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-rabbitmq-json-trace-parser-0.1.0.gem","homepage_uri":"https://github.com/kavu/fluent-plugin-rabbitmq-json-trace-parser","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rabbitmq-json-trace-parser/0.1.0","mailing_list_uri":"","source_code_uri":"https://github.com/kavu/fluent-plugin-rabbitmq-json-trace-parser","bug_tracker_uri":"https://github.com/kavu/fluent-plugin-rabbitmq-json-trace-parser/issues","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.1.4"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.58"}]},"built_at":"2015-10-27T00:00:00.000Z","created_at":"2015-10-27T13:17:28.577Z","description":"Fluentd Parser plugin for RabbitMQ Trace log in JSON format.","downloads_count":870,"number":"0.1.0","summary":"Fluentd Parser plugin for RabbitMQ Trace log in JSON format.","rubygems_version":">= 0","ruby_version":">= 1.9.3","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rackspace-cloud-files","downloads":3455,"version":"0.0.4","version_downloads":950,"platform":"ruby","authors":"Brint O'Hearn","info":"Rackspace Cloud Files output plugin for Fluent event collector","licenses":["Apache License 2.0"],"metadata":{},"sha":"2c2147d68f99efb7d2883fcd03494b94adb09a9000983264e9d17c7012128461","project_uri":"https://rubygems.org/gems/fluent-plugin-rackspace-cloud-files","gem_uri":"https://rubygems.org/gems/fluent-plugin-rackspace-cloud-files-0.0.4.gem","homepage_uri":"https://github.com/brint/fluent-plugin-rackspace-cloud-files","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rackspace-cloud-files/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.2.0, ~> 1.2"},{"name":"rake","requirements":">= 10.1.0, ~> 10.1"},{"name":"rubocop","requirements":">= 0.33, ~> 0.33"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.12, ~> 0.12.12"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0, ~> 0.3.0"},{"name":"fog","requirements":">= 1.33.0, ~> 1.33"},{"name":"yajl-ruby","requirements":">= 1.2.1, ~> 1.2"}]},"built_at":"2015-09-07T00:00:00.000Z","created_at":"2015-09-07T16:27:08.477Z","description":"Rackspace Cloud Files output plugin for Fluent event collector","downloads_count":950,"number":"0.0.4","summary":"Rackspace Cloud Files output plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rambler","downloads":3005,"version":"0.1.1","version_downloads":1727,"platform":"ruby","authors":"Keisuke Nishida","info":"Amazon S3 / Redshift output plugin for Fluentd event collector","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"81162044d3172e11604c5a965ce75f4bfb0b3ce65fd0f1ed237f0aaa7a831a85","project_uri":"https://rubygems.org/gems/fluent-plugin-rambler","gem_uri":"https://rubygems.org/gems/fluent-plugin-rambler-0.1.1.gem","homepage_uri":"https://github.com/k24d/fluent-plugin-rambler","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rambler/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-plugin-s3","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-plugin-s3","requirements":">= 0"}]},"built_at":"2013-08-24T15:00:00.000Z","created_at":"2013-08-24T19:06:56.818Z","description":"Amazon S3 / Redshift output plugin for Fluentd event collector","downloads_count":1727,"number":"0.1.1","summary":"Amazon S3 / Redshift output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-rancher","downloads":801,"version":"0.1.0","version_downloads":801,"platform":"ruby","authors":"BinZhao","info":"Output filter plugin to add rancher metadata","licenses":["ASL2"],"metadata":{},"sha":"e3bea8b940c5b36a89c06a0cceefa122c0d35f0457b6951839c500cafa09d90c","project_uri":"https://rubygems.org/gems/fluent-plugin-rancher","gem_uri":"https://rubygems.org/gems/fluent-plugin-rancher-0.1.0.gem","homepage_uri":"https://github.com/we87/fluent-plugin-rancher","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rancher/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"copyright-header","requirements":">= 0"},{"name":"minitest","requirements":"~> 4.0"},{"name":"minitest-vcr","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"docker-api","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-12-09T00:00:00.000Z","created_at":"2015-12-12T11:46:32.428Z","description":"Output filter plugin to add rancher metadata","downloads_count":801,"number":"0.1.0","summary":"Output filter plugin to add rancher metadata","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-random","downloads":1063,"version":"0.0.1","version_downloads":1063,"platform":"ruby","authors":"Neozaru","info":"Fluentd custom plugin to generate random values","licenses":["WTFPL"],"metadata":{},"sha":"d459a1da7c7d61de5c47c063364ca29bfae14f2c6e1628d9516095a86744cf1a","project_uri":"https://rubygems.org/gems/fluent-plugin-random","gem_uri":"https://rubygems.org/gems/fluent-plugin-random-0.0.1.gem","homepage_uri":"https://github.com/Neozaru/fluent-plugin-random.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-random/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2015-04-02T00:00:00.000Z","created_at":"2015-04-02T21:26:47.570Z","description":"Fluentd custom plugin to generate random values","downloads_count":1063,"number":"0.0.1","summary":"Fluentd custom plugin to generate random values","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-randomtag","downloads":1000,"version":"0.0.2","version_downloads":990,"platform":"ruby","authors":"Neozaru, davidwin93","info":"Fluentd custom plugin to generate random values in tag","licenses":["WTFPL"],"metadata":{},"sha":"d2a2abaaf6dcb980024d9742db06b9689e23029a8c7f4200a2fa758e523e0476","project_uri":"https://rubygems.org/gems/fluent-plugin-randomtag","gem_uri":"https://rubygems.org/gems/fluent-plugin-randomtag-0.0.2.gem","homepage_uri":"https://github.com/go2mobi/fluent-plugin-random","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-randomtag/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2016-04-29T00:00:00.000Z","created_at":"2016-04-29T18:38:55.978Z","description":"Fluentd custom plugin to generate random values in tag","downloads_count":990,"number":"0.0.2","summary":"Fluentd custom plugin to generate random values in tag","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-raven-decoder","downloads":1707,"version":"0.1.1","version_downloads":1028,"platform":"ruby","authors":"Genki Sugawara","info":"Fluentd plugin to decode Raven data.","licenses":["MIT"],"metadata":{},"sha":"c77c0c4e02bf5cfb5bba5dd8318167f85657cd8a2a57cbf35b94904438a49092","project_uri":"https://rubygems.org/gems/fluent-plugin-raven-decoder","gem_uri":"https://rubygems.org/gems/fluent-plugin-raven-decoder-0.1.1.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-raven-decoder","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-raven-decoder/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"multi_json","requirements":">= 0"}]},"built_at":"2015-05-27T00:00:00.000Z","created_at":"2015-05-27T07:58:14.733Z","description":"Fluentd plugin to decode Raven data.","downloads_count":1028,"number":"0.1.1","summary":"Fluentd plugin to decode Raven data.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rawexec","downloads":4677,"version":"0.0.4","version_downloads":1444,"platform":"ruby","authors":"FangLi","info":"Execute user script with RAW message output plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"a3dc92a5a0753dd918afb98ca0bbe9f2993f8919c285354a8e3d6a1770e438cc","project_uri":"https://rubygems.org/gems/fluent-plugin-rawexec","gem_uri":"https://rubygems.org/gems/fluent-plugin-rawexec-0.0.4.gem","homepage_uri":"https://github.com/fangli/fluent-plugin-rawexec","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rawexec/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-03-02T00:00:00.000Z","created_at":"2014-03-02T09:50:57.603Z","description":"Execute user script with RAW message output plugin for Fluentd","downloads_count":1444,"number":"0.0.4","summary":"Execute user script with RAW message output plugin for Fluentd","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-rds-genlog","downloads":282,"version":"0.0.9","version_downloads":136,"platform":"ruby","authors":"lagrutta, jen","info":"Amazon RDS gen_log input plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"8d00e330158939faf73451445322eb47d067ce926bfe027fe81dac8fe948a31e","project_uri":"https://rubygems.org/gems/fluent-plugin-rds-genlog","gem_uri":"https://rubygems.org/gems/fluent-plugin-rds-genlog-0.0.9.gem","homepage_uri":"https://github.com/hasjenL/fluent-plugin-rds-genlog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rds-genlog/0.0.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 10.0.4"},{"name":"test-unit","requirements":"~> 3.1.3"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mysql2","requirements":"~> 0.3.11"}]},"built_at":"2017-05-15T00:00:00.000Z","created_at":"2017-05-15T23:25:26.342Z","description":"Amazon RDS gen_log input plugin for Fluent event collector","downloads_count":136,"number":"0.0.9","summary":"Amazon RDS gen_log input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rds-log","downloads":10501,"version":"0.1.9","version_downloads":584,"platform":"ruby","authors":"shinsaka","info":"Amazon RDS slow_log and general_log input plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"51c4b5895814dc61de4ad52aa8ad417f968f177eca964e1af3cb37f2d25fb42a","project_uri":"https://rubygems.org/gems/fluent-plugin-rds-log","gem_uri":"https://rubygems.org/gems/fluent-plugin-rds-log-0.1.9.gem","homepage_uri":"https://github.com/shinsaka/fluent-plugin-rds-log","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rds-log/0.1.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 10.0.4, ~> 10.0"},{"name":"test-unit","requirements":">= 3.1.0, ~> 3.1"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.30"},{"name":"mysql2","requirements":"~> 0.3.11"}]},"built_at":"2016-12-07T00:00:00.000Z","created_at":"2016-12-07T00:52:53.645Z","description":"Amazon RDS slow_log and general_log input plugin for Fluent event collector","downloads_count":584,"number":"0.1.9","summary":"Amazon RDS for MySQL log input plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rds-pgsql-log","downloads":1461,"version":"0.1.0","version_downloads":1461,"platform":"ruby","authors":"shinsaka","info":"fluentd plugin for Amazon RDS for PostgreSQL log input","licenses":["MIT"],"metadata":{},"sha":"402f990561ec8c02d78312c5a80347eb7f14ad21e1fd1d68f9a739a75a99042f","project_uri":"https://rubygems.org/gems/fluent-plugin-rds-pgsql-log","gem_uri":"https://rubygems.org/gems/fluent-plugin-rds-pgsql-log-0.1.0.gem","homepage_uri":"https://github.com/shinsaka/fluent-plugin-rds-pgsql-log","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rds-pgsql-log/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":"~> 0"}]},"built_at":"2015-05-30T00:00:00.000Z","created_at":"2015-05-30T11:10:33.423Z","description":"fluentd plugin for Amazon RDS for PostgreSQL log input","downloads_count":1461,"number":"0.1.0","summary":"Amazon RDS for PostgreSQL log input plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rds-pgsql-slow-query-log","downloads":1649,"version":"0.1.2","version_downloads":1047,"platform":"ruby","authors":"hSATAC","info":"fluentd plugin for Amazon RDS for PostgreSQL log input with slow query support","licenses":["MIT"],"metadata":{},"sha":"5f4fe9a4f7560decb002c1ad4bcd5a3105ec2f1e4c4118960a744ca7a6b88fde","project_uri":"https://rubygems.org/gems/fluent-plugin-rds-pgsql-slow-query-log","gem_uri":"https://rubygems.org/gems/fluent-plugin-rds-pgsql-slow-query-log-0.1.2.gem","homepage_uri":"https://github.com/hSATAC/fluent-plugin-rds-pgsql-log","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rds-pgsql-slow-query-log/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":"~> 0"}]},"built_at":"2015-10-04T00:00:00.000Z","created_at":"2015-10-04T05:49:27.631Z","description":"fluentd plugin for Amazon RDS for PostgreSQL log input with slow query support","downloads_count":1047,"number":"0.1.2","summary":"Amazon RDS for PostgreSQL log input plugin with slow query support","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rds-slowlog","downloads":9791,"version":"0.0.8","version_downloads":402,"platform":"ruby","authors":"kenjiskywalker, winebarrel","info":"Amazon RDS slow_log input plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"96ee6ec9cfbd0059746db05c548b95b04df623a09770f049019d1c9b979b78c9","project_uri":"https://rubygems.org/gems/fluent-plugin-rds-slowlog","gem_uri":"https://rubygems.org/gems/fluent-plugin-rds-slowlog-0.0.8.gem","homepage_uri":"https://github.com/kenjiskywalker/fluent-plugin-rds-slowlog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rds-slowlog/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 10.0.4"},{"name":"test-unit","requirements":"~> 3.1.3"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mysql2","requirements":"~> 0.3.11"}]},"built_at":"2017-02-23T00:00:00.000Z","created_at":"2017-02-23T05:23:02.890Z","description":"Amazon RDS slow_log input plugin for Fluent event collector","downloads_count":402,"number":"0.0.8","summary":"Amazon RDS slow_log input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rds-slowlog-patched-encoding","downloads":132,"version":"0.0.8","version_downloads":132,"platform":"ruby","authors":"kenjiskywalker, winebarrel","info":"Amazon RDS slow_log input plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"cbfec3cce46d2db8b5da1827e743646b455dbb9d9c96ff5eb2654616a1cd1d33","project_uri":"https://rubygems.org/gems/fluent-plugin-rds-slowlog-patched-encoding","gem_uri":"https://rubygems.org/gems/fluent-plugin-rds-slowlog-patched-encoding-0.0.8.gem","homepage_uri":"https://github.com/kenjiskywalker/fluent-plugin-rds-slowlog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rds-slowlog-patched-encoding/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 10.0.4"},{"name":"test-unit","requirements":"~> 3.1.3"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"mysql2","requirements":"~> 0.3.11"}]},"built_at":"2017-05-17T00:00:00.000Z","created_at":"2017-05-17T02:31:45.172Z","description":"Amazon RDS slow_log input plugin for Fluent event collector","downloads_count":132,"number":"0.0.8","summary":"Amazon RDS slow_log input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-reassemble","downloads":10577,"version":"0.0.8","version_downloads":1644,"platform":"ruby","authors":"moaikids","info":"Re-assemble a stream data for Fluentd...","licenses":["Apache License Version 2.0"],"metadata":{},"sha":"f3739b7fad31ff0a743b91841081bc28890d80c82db83c693831335a76df5abc","project_uri":"https://rubygems.org/gems/fluent-plugin-reassemble","gem_uri":"https://rubygems.org/gems/fluent-plugin-reassemble-0.0.8.gem","homepage_uri":"https://github.com/moaikids/fluent-plugin-reassemble","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-reassemble/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-03-13T00:00:00.000Z","created_at":"2014-03-13T12:25:51.200Z","description":"Re-assemble a stream data for Fluentd...","downloads_count":1644,"number":"0.0.8","summary":"Re-assemble a stream data for Fluentd","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-record-modifier","downloads":462997,"version":"0.5.0","version_downloads":107179,"platform":"ruby","authors":"Masahiro Nakagawa","info":"Filter plugin for modifying event record","licenses":["MIT"],"metadata":{},"sha":"303114a0109b48c4e5564a42ec382f02e16dc605f20cd374d40586cf8b4601ad","project_uri":"https://rubygems.org/gems/fluent-plugin-record-modifier","gem_uri":"https://rubygems.org/gems/fluent-plugin-record-modifier-0.5.0.gem","homepage_uri":"https://github.com/repeatedly/fluent-plugin-record-modifier","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-record-modifier/0.5.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":"~> 3.1.4"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"}]},"built_at":"2016-08-23T00:00:00.000Z","created_at":"2016-08-23T08:49:26.669Z","description":"Filter plugin for modifying event record","downloads_count":107179,"number":"0.5.0","summary":"Filter plugin for modifying event record","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-record-reformer","downloads":573270,"version":"0.9.0","version_downloads":49053,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to add or replace fields of a event record","licenses":["MIT"],"metadata":{},"sha":"7be0fef19485b7219c1a46653d1df97a67d72c9de8b9bcd1418fb434ba5c6c21","project_uri":"https://rubygems.org/gems/fluent-plugin-record-reformer","gem_uri":"https://rubygems.org/gems/fluent-plugin-record-reformer-0.9.0.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-record-reformer","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-record-reformer/0.9.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-02-21T00:00:00.000Z","created_at":"2017-02-21T02:22:38.808Z","description":"Fluentd plugin to add or replace fields of a event record","downloads_count":49053,"number":"0.9.0","summary":"Fluentd plugin to add or replace fields of a event record","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-record-serializer","downloads":1933,"version":"0.1.0","version_downloads":1933,"platform":"ruby","authors":"IKUTA Masahito","info":"Fluentd output filter plugin for serialize record.","licenses":["APLv2"],"metadata":{},"sha":"0d72f8266b0cc332341414b76275965d53e60770190d0b594807c8dad4acb4e4","project_uri":"https://rubygems.org/gems/fluent-plugin-record-serializer","gem_uri":"https://rubygems.org/gems/fluent-plugin-record-serializer-0.1.0.gem","homepage_uri":"http://github.com/cooldaemon/fluent-plugin-record-serializer","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-record-serializer/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.0, ~> 3.1"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.53"}]},"built_at":"2015-11-28T00:00:00.000Z","created_at":"2015-11-29T12:09:24.173Z","description":"Fluentd output filter plugin for serialize record.","downloads_count":1933,"number":"0.1.0","summary":"Fluentd output filter plugin for serialize record.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-record_splitter","downloads":1116,"version":"0.1.3","version_downloads":1075,"platform":"ruby","authors":"Yuri Odagiri","info":"output split array plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"2e3374a1df98da9b84ed20a1bd72aa23ffad5579af2e09049012fe70aeab8476","project_uri":"https://rubygems.org/gems/fluent-plugin-record_splitter","gem_uri":"https://rubygems.org/gems/fluent-plugin-record_splitter-0.1.3.gem","homepage_uri":"https://github.com/ixixi/fluent-plugin-record_splitter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-record_splitter/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"fluent-mixin-rewrite-tag-name","requirements":">= 0"}]},"built_at":"2015-08-28T00:00:00.000Z","created_at":"2015-08-28T13:46:13.044Z","description":"output split array plugin for fluentd","downloads_count":1075,"number":"0.1.3","summary":"output split array plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redeliver","downloads":3849,"version":"0.1.0","version_downloads":2289,"platform":"ruby","authors":"Masatoshi Kawazoe (acidlemon)","info":"simple tag-based redeliver plugin","licenses":[],"metadata":{},"sha":"1bab2fb34a75b4c54fb87864cfb0d788e795f1fee5c07e1ff386617cd80bb06d","project_uri":"https://rubygems.org/gems/fluent-plugin-redeliver","gem_uri":"https://rubygems.org/gems/fluent-plugin-redeliver-0.1.0.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redeliver/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-07-20T00:00:00.000Z","created_at":"2013-07-20T06:31:15.732Z","description":"simple tag-based redeliver plugin","downloads_count":2289,"number":"0.1.0","summary":"simple tag-based redeliver plugin","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis","downloads":13580,"version":"0.3.3","version_downloads":379,"platform":"ruby","authors":"Yuki Nishijima, Hiroshi Hatake, Kenji Okimoto","info":"Redis output plugin for Fluent","licenses":[],"metadata":{},"sha":"bc319a9eff32863cdfefa1f44ea9e6588035978c119f911fe12bb182bcce5653","project_uri":"https://rubygems.org/gems/fluent-plugin-redis","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-0.3.3.gem","homepage_uri":"https://github.com/fluent-plugins-nursery/fluent-plugin-redis","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis/0.3.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":"~> 2.1.0"},{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 11.3.0"},{"name":"test-unit","requirements":"~> 3.1.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.8"},{"name":"redis","requirements":"~> 3.3.0"}]},"built_at":"2017-04-17T00:00:00.000Z","created_at":"2017-04-17T04:16:30.532Z","description":"","downloads_count":379,"number":"0.3.3","summary":"Redis output plugin for Fluent","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-counter","downloads":11715,"version":"0.3.2","version_downloads":2115,"platform":"ruby","authors":"Buntaro Okada","info":"fluent-plugin-redis-counter is a fluent plugin to count-up/down redis keys.","licenses":[],"metadata":{},"sha":"f9ef821404115f35de74e0461289ce154ad14eca2231fc945392b3a8bd4d8950","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-counter","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-counter-0.3.2.gem","homepage_uri":"https://github.com/kbinani/fluent-plugin-redis-counter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-counter/0.3.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"redis","requirements":">= 2.2.2"}]},"built_at":"2013-12-18T00:00:00.000Z","created_at":"2013-12-18T04:06:05.406Z","description":"fluent-plugin-redis-counter is a fluent plugin to count-up/down redis keys.","downloads_count":2115,"number":"0.3.2","summary":"Redis counter plugin for fluent","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-redislist","downloads":2198,"version":"0.0.1","version_downloads":2198,"platform":"ruby","authors":"Ken Santo","info":"Redis list type output plugin for Fluent","licenses":[],"metadata":{},"sha":"f385afafe7399400d905aa2f684fbe2b817e89a8c3da17cc3271994ac4143117","project_uri":"https://rubygems.org/gems/fluent-plugin-redislist","gem_uri":"https://rubygems.org/gems/fluent-plugin-redislist-0.0.1.gem","homepage_uri":"http://github.com/kensantou/fluent-plugin-redislist","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redislist/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"redis","requirements":"~> 2.2.2"}]},"built_at":"2013-07-16T00:00:00.000Z","created_at":"2013-07-17T05:15:00.526Z","description":null,"downloads_count":2198,"number":"0.0.1","summary":"Redis list type output plugin for Fluent","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-redis-list","downloads":769,"version":"0.0.1","version_downloads":769,"platform":"ruby","authors":"Pavel Sutyrin","info":"Redis output plugin for Fluent (push to list)","licenses":[],"metadata":{},"sha":"9a10ed84baabe057fc5ffdf515f5990cf71b2ac925fac1512915c7e411a31c96","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-list","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-list-0.0.1.gem","homepage_uri":"https://github.com/spacediver/fluent-plugin-redis","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-list/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"redis","requirements":"~> 2.2.2"}]},"built_at":"2011-09-30T00:00:00.000Z","created_at":"2016-01-05T23:02:43.243Z","description":"","downloads_count":769,"number":"0.0.1","summary":"Redis output plugin for Fluent (push to list)","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis_list_poller","downloads":5747,"version":"1.1.0","version_downloads":3653,"platform":"ruby","authors":"Jonathan Serafini","info":"A fluentd redis input plugin supporting batch operations","licenses":["apache2"],"metadata":{},"sha":"ba75ef5192400b0d63bedfbcc88b17e2ba2e1db1acdf6da6dd75bda3ce85b48a","project_uri":"https://rubygems.org/gems/fluent-plugin-redis_list_poller","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis_list_poller-1.1.0.gem","homepage_uri":"https://github.com/JonathanSerafini/fluent-plugin-redis_list_poller","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis_list_poller/1.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.0"},{"name":"redis","requirements":"< 3.4.0, >= 3.3.0"}]},"built_at":"2016-11-27T00:00:00.000Z","created_at":"2016-11-27T16:10:24.570Z","description":"A fluentd redis input plugin supporting batch operations","downloads_count":3653,"number":"1.1.0","summary":"A fluentd redis input plugin supporting batch operations","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-multi-type-counter","downloads":4865,"version":"0.1.3","version_downloads":2026,"platform":"ruby","authors":"Jungtaek Lim","info":"fluent-plugin-redis-multi-type-counter is a fluent plugin to count-up/down redis keys, hash keys, zset keys","licenses":["APACHE2"],"metadata":{},"sha":"fe8adb0479944a1500aa81ddd896c6fa7982aa7d8e5b6d7a1bf06e24e2dc102b","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-multi-type-counter","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-multi-type-counter-0.1.3.gem","homepage_uri":"https://github.com/heartsavior/fluent-plugin-redis-multi-type-counter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-multi-type-counter/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"redis","requirements":">= 2.2.2"}]},"built_at":"2014-01-07T00:00:00.000Z","created_at":"2014-03-21T01:15:34.370Z","description":"fluent-plugin-redis-multi-type-counter is a fluent plugin to count-up/down redis keys, hash keys, zset keys","downloads_count":2026,"number":"0.1.3","summary":"Redis multi type counter plugin for fluent","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-publish","downloads":2894,"version":"0.1.1","version_downloads":1693,"platform":"ruby","authors":"Daisuke Murase","info":"fluent output plugin publishing logs to redis pub/sub","licenses":["MIT"],"metadata":{},"sha":"e13b4ba2167ac1c39fc1b7ba0ac0dd9b35b131783669377a091dc0fafced0b12","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-publish","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-publish-0.1.1.gem","homepage_uri":"https://github.com/typester/fluent-plugin-redis-publish","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-publish/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2013-11-15T00:00:00.000Z","created_at":"2013-11-15T05:30:51.000Z","description":null,"downloads_count":1693,"number":"0.1.1","summary":"fluent output plugin publishing logs to redis pub/sub","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-pubsub","downloads":1812,"version":"0.0.1","version_downloads":1812,"platform":"ruby","authors":"Freddie Fujiwara","info":"redis-pubsub plugin for Fluentd","licenses":[],"metadata":{},"sha":"8ab6937ec0fecf3f8221b6f46b6a8b7dccbf1dc52e7f718407869ce220f36edf","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-pubsub","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-pubsub-0.0.1.gem","homepage_uri":"http://github.com/freddiefujiwara/fluent-plugin-redis-pubsub","wiki_uri":"","documentation_uri":"https://github.com/freddiefujiwara/fluent-plugin-redis-pubsub","mailing_list_uri":"","source_code_uri":"https://github.com/freddiefujiwara/fluent-plugin-redis-pubsub","bug_tracker_uri":"https://github.com/freddiefujiwara/fluent-plugin-redis-pubsub/issues","changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"redis","requirements":"~> 2.2.2"}]},"built_at":"2013-09-21T00:00:00.000Z","created_at":"2013-09-21T07:35:21.216Z","description":null,"downloads_count":1812,"number":"0.0.1","summary":"redis-pubsub plugin for Fluentd","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-slowlog","downloads":3450,"version":"0.0.2","version_downloads":2431,"platform":"ruby","authors":"shingo suzuki","info":"Redis slowlog input plugin for Fluent event collector","licenses":["MIT"],"metadata":{},"sha":"f235c2c62516678ff0b3d8345a6124d73d78a5d2bf1ec68f76822a0ddee2e172","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-slowlog","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-slowlog-0.0.2.gem","homepage_uri":"https://github.com/mominosin/fluent-plugin-redis-slowlog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-slowlog/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2014-06-25T00:00:00.000Z","created_at":"2014-06-25T17:18:22.993Z","description":"Redis slowlog input plugin for Fluent event collector","downloads_count":2431,"number":"0.0.2","summary":"Redis slowlog input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redisstore","downloads":4515,"version":"0.0.4","version_downloads":1551,"platform":"ruby","authors":"moaikids","info":"Redis(zset/set/list/string) output plugin for Fluentd...","licenses":["Apache License Version 2.0"],"metadata":{},"sha":"cb8efc3fd7b049fe2353c09b2d04bf82968b425509335e31dc0e87fdd05d6d77","project_uri":"https://rubygems.org/gems/fluent-plugin-redisstore","gem_uri":"https://rubygems.org/gems/fluent-plugin-redisstore-0.0.4.gem","homepage_uri":"https://github.com/moaikids/fluent-plugin-redisstore","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redisstore/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2016-01-12T00:00:00.000Z","created_at":"2016-01-12T03:12:13.425Z","description":"Redis(zset/set/list/string) output plugin for Fluentd...","downloads_count":1551,"number":"0.0.4","summary":"Redis(zset/set/list/string) output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-store","downloads":7100,"version":"0.1.1","version_downloads":6028,"platform":"ruby","authors":"moaikids, HANAI Tohru aka pokehanai","info":"Redis(zset/set/list/string/publish) output plugin for Fluentd...","licenses":["Apache License Version 2.0"],"metadata":{},"sha":"51a73a0ac6624e0d426336cefa9a96f5cdbc635926798653c5a30c0203848860","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-store","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-store-0.1.1.gem","homepage_uri":"https://github.com/pokehanai/fluent-plugin-redis-store","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-store/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2014-06-06T00:00:00.000Z","created_at":"2014-06-06T12:34:22.460Z","description":"Redis(zset/set/list/string/publish) output plugin for Fluentd...","downloads_count":6028,"number":"0.1.1","summary":"Redis(zset/set/list/string/publish) output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-store-seldon","downloads":1391,"version":"0.1.1","version_downloads":912,"platform":"ruby","authors":"Clive Cox","info":"Redis(zset/set/list/string/publish) output plugin for Fluentd...","licenses":["Apache License Version 2.0"],"metadata":{},"sha":"3ecb3df9739896648357f21400fbec023ffb1bc61832bf72c0c1877be688cd61","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-store-seldon","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-store-seldon-0.1.1.gem","homepage_uri":"https://github.com/SeldonIO/fluent-plugin-redis-store","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-store-seldon/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2015-12-26T00:00:00.000Z","created_at":"2015-12-26T18:48:52.979Z","description":"Redis(zset/set/list/string/publish) output plugin for Fluentd...","downloads_count":912,"number":"0.1.1","summary":"Redis(zset/set/list/string/publish) output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-store-wejick","downloads":4272,"version":"0.0.9","version_downloads":337,"platform":"ruby","authors":"wejick, Gian Giovani","info":"Redis(zset/set/list/string/publish) output plugin for Fluentd...","licenses":["Apache-2.0"],"metadata":{},"sha":"fca08f98a81c763400aa539d62fd241723fae3040bae57df412d8bb253cf49e1","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-store-wejick","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-store-wejick-0.0.9.gem","homepage_uri":"https://github.com/wejick/fluent-plugin-redis-store","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-store-wejick/0.0.9","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2016-12-17T00:00:00.000Z","created_at":"2016-12-17T03:47:26.201Z","description":"Redis(zset/set/list/string/publish) output plugin for Fluentd...","downloads_count":337,"number":"0.0.9","summary":"Redis(zset/set/list/string/publish) output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redis-url-tracker","downloads":2206,"version":"0.2.1","version_downloads":2206,"platform":"ruby","authors":"Yuki Nishijima, Kamil Pluta","info":"Redis output plugin for Fluent","licenses":[],"metadata":{},"sha":"2b29a5801c41d6eb9dd34cbb712797544bf074cd00c82c53fd8c3073506f43e6","project_uri":"https://rubygems.org/gems/fluent-plugin-redis-url-tracker","gem_uri":"https://rubygems.org/gems/fluent-plugin-redis-url-tracker-0.2.1.gem","homepage_uri":"http://github.com/detfis/fluent-plugin-redis-url-tracker","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redis-url-tracker/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.12.2"},{"name":"redis","requirements":"~> 3.1.0"}]},"built_at":"2011-09-30T00:00:00.000Z","created_at":"2015-01-23T11:48:18.657Z","description":"","downloads_count":2206,"number":"0.2.1","summary":"Redis output plugin for Fluent","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redmine","downloads":7644,"version":"0.7.1","version_downloads":172,"platform":"ruby","authors":"Takuma kanari","info":"Fluentd output plugin to create ticket in redmine","licenses":[],"metadata":{},"sha":"5d94c1e033817907ec979f38b92fb8eb090ef27b49a4fbd3251736d8ee393a10","project_uri":"https://rubygems.org/gems/fluent-plugin-redmine","gem_uri":"https://rubygems.org/gems/fluent-plugin-redmine-0.7.1.gem","homepage_uri":"https://github.com/takumakanari/fluent-plugin-redmine","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redmine/0.7.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14"}]},"built_at":"2017-05-08T00:00:00.000Z","created_at":"2017-05-08T02:16:18.292Z","description":"Fluentd output plugin to create ticket in redmine","downloads_count":172,"number":"0.7.1","summary":"Fluentd output plugin to create ticket in redmine","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redoop","downloads":1677,"version":"0.0.2","version_downloads":1669,"platform":"ruby","authors":"Aaron Lunsford","info":"Redoop plugin for Fluentd. Publishes data to redis and redis pubsub","licenses":["Anyone can use this for whatever, I don't care."],"metadata":{},"sha":"4ea9e1cf5e6ba365a2f89fce38cc0bb77da8058e03ab0aafb849061c4d9a0447","project_uri":"https://rubygems.org/gems/fluent-plugin-redoop","gem_uri":"https://rubygems.org/gems/fluent-plugin-redoop-0.0.2.gem","homepage_uri":"https://github.com/awlunsfo/fluent-plugin-redoop","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redoop/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"json","requirements":">= 0"},{"name":"redis","requirements":">= 0"},{"name":"rest-client","requirements":">= 0"}]},"built_at":"2013-08-23T00:00:00.000Z","created_at":"2013-08-23T18:35:57.995Z","description":"Redoop plugin for Fluentd. Publishes data to redis and redis pubsub","downloads_count":1669,"number":"0.0.2","summary":"see description","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-redshift","downloads":25490,"version":"0.1.2","version_downloads":2285,"platform":"ruby","authors":"Masashi Miyazaki","info":"Amazon Redshift output plugin for Fluentd","licenses":[],"metadata":{},"sha":"f9f4079e34d965135457e41a786ee003b49b1fe5a1197e00255f304abcaf292c","project_uri":"https://rubygems.org/gems/fluent-plugin-redshift","gem_uri":"https://rubygems.org/gems/fluent-plugin-redshift-0.1.2.gem","homepage_uri":"https://github.com/hapyrus/fluent-plugin-redshift","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redshift/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.3.1"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"aws-sdk-v1","requirements":">= 1.6.3"},{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"pg","requirements":"~> 0.17.0"}]},"built_at":"2016-07-21T00:00:00.000Z","created_at":"2016-07-21T21:00:50.910Z","description":"Amazon Redshift output plugin for Fluentd","downloads_count":2285,"number":"0.1.2","summary":"Amazon Redshift output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redshift-anton","downloads":1738,"version":"1.0.2","version_downloads":1038,"platform":"ruby","authors":"Anton Kuchinsky","info":"Amazon Redshift output plugin for Fluentd with custom Redshift COPY timeformat","licenses":[],"metadata":{},"sha":"bbe2740408426c1b7adcbe4f2a61f9b51613254cbd330c5ed06cd50d9dca0e0a","project_uri":"https://rubygems.org/gems/fluent-plugin-redshift-anton","gem_uri":"https://rubygems.org/gems/fluent-plugin-redshift-anton-1.0.2.gem","homepage_uri":"https://github.com/akuchins/fluent-plugin-redshift-anton","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redshift-anton/1.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.3.1"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"aws-sdk","requirements":">= 1.6.3"},{"name":"fluentd","requirements":">= 0.10.0"},{"name":"pg","requirements":">= 0.14.0"}]},"built_at":"2015-04-11T00:00:00.000Z","created_at":"2015-04-11T19:01:45.240Z","description":"Amazon Redshift output plugin for Fluentd with custom Redshift COPY timeformat","downloads_count":1038,"number":"1.0.2","summary":"Amazon Redshift output plugin for Fluentd with custom Redshift COPY timeformat","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redshift-auto","downloads":5314,"version":"1.0.1","version_downloads":1573,"platform":"ruby","authors":"Takashi Honda","info":"Amazon Redshift output plugin for Fluentd with creating table","licenses":[],"metadata":{},"sha":"a48d9b0cb1b8597a71de2d0156f4d4a7786768dea87ed637aceaa684ff8774a9","project_uri":"https://rubygems.org/gems/fluent-plugin-redshift-auto","gem_uri":"https://rubygems.org/gems/fluent-plugin-redshift-auto-1.0.1.gem","homepage_uri":"https://github.com/takashi-honda/fluent-plugin-redshift-auto","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redshift-auto/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.3.1"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"aws-sdk","requirements":">= 1.6.3"},{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"pg","requirements":"~> 0.14.0"}]},"built_at":"2013-12-09T00:00:00.000Z","created_at":"2013-12-09T03:48:19.391Z","description":"Amazon Redshift output plugin for Fluentd with creating table","downloads_count":1573,"number":"1.0.1","summary":"Amazon Redshift output plugin for Fluentd with creating table","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-redshift-aws-v1","downloads":1744,"version":"0.0.7","version_downloads":1046,"platform":"ruby","authors":"Keiji Yoshida","info":"Amazon Redshift output plugin for Fluentd","licenses":[],"metadata":{},"sha":"453766500f1d85d020c17844716f9eec87f9777e71c5165111aafe999242e0bf","project_uri":"https://rubygems.org/gems/fluent-plugin-redshift-aws-v1","gem_uri":"https://rubygems.org/gems/fluent-plugin-redshift-aws-v1-0.0.7.gem","homepage_uri":"https://github.com/yosssi/fluent-plugin-redshift","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redshift-aws-v1/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.3.1"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"aws-sdk-v1","requirements":"~> 1.64.0"},{"name":"fluentd","requirements":"~> 0.12.7"},{"name":"pg","requirements":"~> 0.18.1"}]},"built_at":"2015-04-14T00:00:00.000Z","created_at":"2015-04-14T02:41:29.206Z","description":"Amazon Redshift output plugin for Fluentd","downloads_count":1046,"number":"0.0.7","summary":"Amazon Redshift output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-redshift-kwarter","downloads":3871,"version":"0.0.3","version_downloads":3871,"platform":"ruby","authors":"Masashi Miyazaki, Daniel Koepke","info":"Amazon Redshift output plugin for Fluentd (updated by Kwarter)","licenses":[],"metadata":{},"sha":"1c95cbf3906a5af73b12f763a65afe5c9e6936188eb3957d12e8f2b1fb615f24","project_uri":"https://rubygems.org/gems/fluent-plugin-redshift-kwarter","gem_uri":"https://rubygems.org/gems/fluent-plugin-redshift-kwarter-0.0.3.gem","homepage_uri":"https://github.com/kwarter/fluent-plugin-redshift","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redshift-kwarter/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.3.1"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"aws-sdk","requirements":">= 1.6.3"},{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"pg","requirements":"~> 0.14.0"}]},"built_at":"2013-10-17T00:00:00.000Z","created_at":"2013-10-17T18:12:29.737Z","description":"Amazon Redshift output plugin for Fluentd (updated by Kwarter)","downloads_count":3871,"number":"0.0.3","summary":"Amazon Redshift output plugin for Fluentd (updated by Kwarter)","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-redshift-out","downloads":5675,"version":"0.4.1","version_downloads":907,"platform":"ruby","authors":"Naohiro Sakuma","info":"Amazon Redshift output plugin for Fluentd","licenses":[],"metadata":{},"sha":"b56f47331b348234212e75786a37894758efdb5ab7bf5f35002b8b2ca09879c6","project_uri":"https://rubygems.org/gems/fluent-plugin-redshift-out","gem_uri":"https://rubygems.org/gems/fluent-plugin-redshift-out-0.4.1.gem","homepage_uri":"https://github.com/sakuma/fluent-plugin-redshift-out","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-redshift-out/0.4.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.3.1"},{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"aws-sdk-v1","requirements":">= 1.6.3"},{"name":"fluentd","requirements":"< 2, >= 0.10.0"},{"name":"multi_json","requirements":"~> 1.10"},{"name":"pg","requirements":"~> 0.17.0"},{"name":"yajl-ruby","requirements":"~> 1.2"}]},"built_at":"2016-01-15T00:00:00.000Z","created_at":"2016-01-15T06:58:16.428Z","description":"Amazon Redshift output plugin for Fluentd","downloads_count":907,"number":"0.4.1","summary":"Amazon Redshift output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-reemit","downloads":101240,"version":"0.2.1","version_downloads":85707,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to re-emit messages avoiding infinity match loop","licenses":["MIT"],"metadata":{},"sha":"d6d50b7545de5080fe17239bd6f4be9fa576116fc034c35a0bfec6f65dfac189","project_uri":"https://rubygems.org/gems/fluent-plugin-reemit","gem_uri":"https://rubygems.org/gems/fluent-plugin-reemit-0.2.1.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-reemit","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-reemit/0.2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-08-10T00:00:00.000Z","created_at":"2015-08-10T15:40:21.567Z","description":"Fluentd plugin to re-emit messages avoiding infinity match loop","downloads_count":85707,"number":"0.2.1","summary":"Fluentd plugin to re-emit messages avoiding infinity match loop","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-referer-parser","downloads":8451,"version":"0.0.7","version_downloads":1478,"platform":"ruby","authors":"TAGOMORI Satoshi, HARUYAMA Seigo","info":"parsing by referer-parser. See: https://github.com/snowplow/referer-parser","licenses":["APLv2"],"metadata":{},"sha":"5300f9b31d08929ee7b1629fc2a9c66386b24fa73ed5e16d873dea671b656923","project_uri":"https://rubygems.org/gems/fluent-plugin-referer-parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-referer-parser-0.0.7.gem","homepage_uri":"https://github.com/haruyama/fluent-plugin-referer-parser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-referer-parser/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"referer-parser","requirements":">= 0.2.0"}]},"built_at":"2014-04-19T00:00:00.000Z","created_at":"2014-04-19T09:03:38.792Z","description":"parsing by referer-parser. See: https://github.com/snowplow/referer-parser","downloads_count":1478,"number":"0.0.7","summary":"Fluentd plugin to parse UserAgent strings","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-remote_syslog","downloads":19921,"version":"0.3.3","version_downloads":1218,"platform":"ruby","authors":"Richard Lee","info":"Fluentd output plugin for remote syslog","licenses":["MIT"],"metadata":{},"sha":"0bbac9cfe097f36b3619756917860a328b31d62ccb4b1599a9fff53f77f9210b","project_uri":"https://rubygems.org/gems/fluent-plugin-remote_syslog","gem_uri":"https://rubygems.org/gems/fluent-plugin-remote_syslog-0.3.3.gem","homepage_uri":"https://github.com/dlackty/fluent-plugin-remote_syslog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-remote_syslog/0.3.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit-minitest","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0"},{"name":"fluent-mixin-plaintextformatter","requirements":">= 0"},{"name":"fluent-mixin-rewrite-tag-name","requirements":">= 0"},{"name":"remote_syslog_logger","requirements":"~> 1.0.0"}]},"built_at":"2017-03-26T00:00:00.000Z","created_at":"2017-03-26T15:08:28.641Z","description":"","downloads_count":1218,"number":"0.3.3","summary":"Fluentd output plugin for remote syslog","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-remove-empty","downloads":895,"version":"0.0.1","version_downloads":895,"platform":"ruby","authors":"Chadin Anuwattanaporn","info":"Fluentd plugin to remove empty fields of a event record","licenses":["MIT"],"metadata":{},"sha":"92c16d7899f9038385970744413077497a804d8d4435b6a996467befe68eed47","project_uri":"https://rubygems.org/gems/fluent-plugin-remove-empty","gem_uri":"https://rubygems.org/gems/fluent-plugin-remove-empty-0.0.1.gem","homepage_uri":"https://github.com/newcmd001/fluent-plugin-remove-empty","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-remove-empty/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"}]},"built_at":"2016-05-09T00:00:00.000Z","created_at":"2016-05-09T21:53:39.723Z","description":"Fluentd plugin to remove empty fields of a event record","downloads_count":895,"number":"0.0.1","summary":"Fluentd plugin to remove empty fields of a event record","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rename-key","downloads":9854,"version":"0.4.0","version_downloads":608,"platform":"ruby","authors":"Shunwen Hsiao, Julian Grinblat, Hiroshi Hatake","info":"Fluentd output plugin. Rename keys which match given regular expressions, assign new tags and re-emit the records.","licenses":["Apache-2.0"],"metadata":{},"sha":"afee7d9c51109fa18e1c74af17ce85fa2ab833691bcfefb6ea60970416a72e75","project_uri":"https://rubygems.org/gems/fluent-plugin-rename-key","gem_uri":"https://rubygems.org/gems/fluent-plugin-rename-key-0.4.0.gem","homepage_uri":"https://github.com/shunwen/fluent-plugin-rename-key","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rename-key/0.4.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"coveralls","requirements":"~> 0.8"},{"name":"rake","requirements":"~> 11.3"},{"name":"test-unit","requirements":"~> 3.2"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.0"}]},"built_at":"2017-02-27T00:00:00.000Z","created_at":"2017-02-27T13:27:01.129Z","description":"","downloads_count":608,"number":"0.4.0","summary":"Fluentd output plugin. Rename keys which match given regular expressions, assign new tags and re-emit the records.","rubygems_version":">= 0","ruby_version":">= 2.1.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-replace","downloads":2391,"version":"0.1.0","version_downloads":1591,"platform":"ruby","authors":"kaihar4","info":"Fluentd plugin to replace the string with specified YAML","licenses":["MIT"],"metadata":{},"sha":"05b413318d757cc08e517ad4fca95d1e9c41acd818a9e35ad11026bda1f3955b","project_uri":"https://rubygems.org/gems/fluent-plugin-replace","gem_uri":"https://rubygems.org/gems/fluent-plugin-replace-0.1.0.gem","homepage_uri":"https://github.com/kaihar4/fluent-plugin-replace","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-replace/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"awesome_print","requirements":">= 0"},{"name":"bundler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2015-02-08T00:00:00.000Z","created_at":"2015-02-08T00:21:45.583Z","description":"Fluentd plugin to replace the string with specified YAML","downloads_count":1591,"number":"0.1.0","summary":"Fluentd plugin to replace the string with specified YAML","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-resolv","downloads":4650,"version":"0.0.3","version_downloads":1941,"platform":"ruby","authors":"Kohei MATSUSHITA","info":"Fluent plugin, IP address resolv and rewrite.","licenses":["MIT"],"metadata":{},"sha":"8450b3818fb506f01986ad0dff8e7c13bf7addcd9cf329dd855d9dd02076bcd4","project_uri":"https://rubygems.org/gems/fluent-plugin-resolv","gem_uri":"https://rubygems.org/gems/fluent-plugin-resolv-0.0.3.gem","homepage_uri":"https://github.com/ma2shita/fluent-plugin-resolv","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-resolv/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-06-07T00:00:00.000Z","created_at":"2013-06-07T08:00:09.623Z","description":"Fluent plugin, IP address resolv and rewrite.","downloads_count":1941,"number":"0.0.3","summary":"Fluent plugin, IP address resolv and rewrite.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-resolv-filter","downloads":939,"version":"0.0.3","version_downloads":322,"platform":"ruby","authors":"Tokyo Home SOC","info":"Converts the FQDN to the IP address.","licenses":["MIT"],"metadata":{},"sha":"0e14dfe9e8faf3d1b4c3c159a192eb0296480be2679e7f355aae505cf1523f01","project_uri":"https://rubygems.org/gems/fluent-plugin-resolv-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-resolv-filter-0.0.3.gem","homepage_uri":"https://github.com/airforon/fluent-plugin-resolv-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-resolv-filter/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.0"}],"runtime":[]},"built_at":"2017-02-21T00:00:00.000Z","created_at":"2017-02-21T09:21:08.124Z","description":"Converts the FQDN to the IP address.","downloads_count":322,"number":"0.0.3","summary":"Converts the FQDN to the IP address.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-resque","downloads":6431,"version":"0.3.0","version_downloads":167,"platform":"ruby","authors":"Yuichi Tateno","info":"Resque enqueue plugin","licenses":[],"metadata":{},"sha":"7742e81e88e3a9a2fa082363f573312ee607393ba1387bd9a61fea52255f9145","project_uri":"https://rubygems.org/gems/fluent-plugin-resque","gem_uri":"https://rubygems.org/gems/fluent-plugin-resque-0.3.0.gem","homepage_uri":"https://github.com/hotchpotch/fluent-plugin-resque","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-resque/0.3.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"},{"name":"test-unit","requirements":">= 3.2.0"},{"name":"test-unit-rr","requirements":">= 1.0.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.8"},{"name":"multi_json","requirements":"~> 1.0"},{"name":"redis-namespace","requirements":"~> 1.0.2"}]},"built_at":"2017-04-27T00:00:00.000Z","created_at":"2017-04-27T05:38:45.577Z","description":"Resque enqueue plugin","downloads_count":167,"number":"0.3.0","summary":"Resque enqueue plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-resque-ex","downloads":1395,"version":"0.1.0","version_downloads":1395,"platform":"ruby","authors":"Yuichi Tateno","info":"Resque-ex enqueue plugin","licenses":[],"metadata":{},"sha":"4752773d54292edc4c2047920ec97de6f7c322c60df118c7cfb4b2a29150f9f5","project_uri":"https://rubygems.org/gems/fluent-plugin-resque-ex","gem_uri":"https://rubygems.org/gems/fluent-plugin-resque-ex-0.1.0.gem","homepage_uri":"https://github.com/iyagi15/fluent-plugin-resque-ex","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-resque-ex/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.8"},{"name":"multi_json","requirements":"~> 1.0"},{"name":"redis-namespace","requirements":"~> 1.0.2"}]},"built_at":"2014-04-21T00:00:00.000Z","created_at":"2014-04-21T09:55:38.820Z","description":"Resque-ex enqueue plugin","downloads_count":1395,"number":"0.1.0","summary":"Resque-ex enqueue plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-resque_stat","downloads":7837,"version":"0.0.5","version_downloads":1930,"platform":"ruby","authors":"Spring_MT","info":"Fluent input plugin for Resque info\n","licenses":[],"metadata":{},"sha":"1365e629b9bb9f0e3441e0796296c9fccc88eb87288d23b8e6d3fff81c644c7d","project_uri":"https://rubygems.org/gems/fluent-plugin-resque_stat","gem_uri":"https://rubygems.org/gems/fluent-plugin-resque_stat-0.0.5.gem","homepage_uri":"https://github.com/SpringMT/fluent-plugin-resque_stat","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-resque_stat/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"resque","requirements":"~> 1.22"}]},"built_at":"2013-01-27T00:00:00.000Z","created_at":"2013-01-27T09:42:37.240Z","description":"Fluent input plugin for Resque info\n","downloads_count":1930,"number":"0.0.5","summary":"Fluent input plugin for Resque info","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-retag","downloads":20203,"version":"0.0.2","version_downloads":6178,"platform":"ruby","authors":"Masahiro Yamauchi","info":"Output filter plugin to retag","licenses":[],"metadata":{},"sha":"6845c0ee87ffdb8af0a4af521e367a8fe71e564c6739f5063adfe61e93bf7375","project_uri":"https://rubygems.org/gems/fluent-plugin-retag","gem_uri":"https://rubygems.org/gems/fluent-plugin-retag-0.0.2.gem","homepage_uri":"https://github.com/algas/fluent-plugin-retag","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-retag/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-06-08T00:00:00.000Z","created_at":"2016-06-08T11:36:32.846Z","description":"Output filter plugin to retag","downloads_count":6178,"number":"0.0.2","summary":"Output filter plugin to retag","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rethink","downloads":1295,"version":"0.1.0","version_downloads":1295,"platform":"ruby","authors":"Vinh Nguyen","info":"RethinkDB plugin for Fluentd","licenses":[],"metadata":{},"sha":"2659719f66305e4e634db0f3e1255853573a3cd31a8ebdef1ea2e5d80af76899","project_uri":"https://rubygems.org/gems/fluent-plugin-rethink","gem_uri":"https://rubygems.org/gems/fluent-plugin-rethink-0.1.0.gem","homepage_uri":"https://github.com/kureikain/fluent-plugin-rethink","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rethink/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.9"},{"name":"rethinkdb","requirements":">= 1.15.0"}]},"built_at":"2014-10-19T00:00:00.000Z","created_at":"2014-10-19T00:37:02.117Z","description":"RethinkDB plugin for Fluentd","downloads_count":1295,"number":"0.1.0","summary":"RethinkDB plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rewrite","downloads":125407,"version":"0.1.0","version_downloads":8637,"platform":"ruby","authors":"Kentaro Kuribayashi","info":"Fluentd plugin to rewrite tags/values along with pattern matching and re-emit them.","licenses":["MIT"],"metadata":{},"sha":"c2ddd933cc070204e2a58e0a483022147c9529b42df4a1af12d522823ccedd75","project_uri":"https://rubygems.org/gems/fluent-plugin-rewrite","gem_uri":"https://rubygems.org/gems/fluent-plugin-rewrite-0.1.0.gem","homepage_uri":"http://github.com/kentaro/fluent-plugin-rewrite","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rewrite/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.8"}]},"built_at":"2016-11-14T00:00:00.000Z","created_at":"2016-11-14T05:20:28.367Z","description":"Fluentd plugin to rewrite tags/values along with pattern matching and re-emit them.","downloads_count":8637,"number":"0.1.0","summary":"Fluentd plugin to rewrite tags/values along with pattern matching and re-emit them.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rewriteimage","downloads":1497,"version":"0.0.1","version_downloads":1497,"platform":"ruby","authors":"bash0C7","info":"Output filter plugin to rewrite messages from image path(or URL) string to image data.","licenses":["Ruby's"],"metadata":{},"sha":"796e7bad0dae392e70377489c38fcfe28bce79c501a335afd1b361f233449a90","project_uri":"https://rubygems.org/gems/fluent-plugin-rewriteimage","gem_uri":"https://rubygems.org/gems/fluent-plugin-rewriteimage-0.0.1.gem","homepage_uri":"https://github.com/bash0C7/fluent-plugin-rewriteimage","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rewriteimage/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-01-25T00:00:00.000Z","created_at":"2014-01-25T14:13:12.880Z","description":"Output filter plugin to rewrite messages from image path(or URL) string to image data.","downloads_count":1497,"number":"0.0.1","summary":"Output filter plugin to rewrite messages from image path(or URL) string to image data.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-rewrite-tag-filter","downloads":375322,"version":"1.5.6","version_downloads":68388,"platform":"ruby","authors":"Kentaro Yoshida","info":"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.","licenses":["Apache-2.0"],"metadata":{},"sha":"4b0a0469151d2065f90e9d8fe9314ed1c0a6cf598917df2e80fb7983697d49f9","project_uri":"https://rubygems.org/gems/fluent-plugin-rewrite-tag-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-rewrite-tag-filter-1.5.6.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-rewrite-tag-filter","wiki_uri":"","documentation_uri":"https://github.com/y-ken/fluent-plugin-rewrite-tag-filter#readme","mailing_list_uri":"","source_code_uri":"","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":"< 0.14.0, >= 0.10.0"}]},"built_at":"2017-02-28T00:00:00.000Z","created_at":"2017-02-28T02:33:07.756Z","description":"","downloads_count":68388,"number":"1.5.6","summary":"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.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-riak","downloads":4725,"version":"0.0.3","version_downloads":1628,"platform":"ruby","authors":"Kota UENISHI","info":"Riak plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"48378d375f40a1a535483efe25566c6c41d366fdf43d39be9e49301dcf88b362","project_uri":"https://rubygems.org/gems/fluent-plugin-riak","gem_uri":"https://rubygems.org/gems/fluent-plugin-riak-0.0.3.gem","homepage_uri":"https://github.com/kuenishi/fluent-plugin-riak","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-riak/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.7"},{"name":"riak-client","requirements":"~> 1.0.0"},{"name":"uuidtools","requirements":">= 2.1.3"}]},"built_at":"2014-04-25T00:00:00.000Z","created_at":"2014-04-25T00:27:19.702Z","description":"Riak plugin for Fluent event collector","downloads_count":1628,"number":"0.0.3","summary":"Riak plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-riak2","downloads":2178,"version":"0.0.5","version_downloads":1226,"platform":"ruby","authors":"Kota UENISHI, Matt Nunogawa","info":"Riak 2.x plugin for Fluent event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"16d7b79973bf0c7ac2698cb945a93209f7b5f77a398d2d325660e1e637960be1","project_uri":"https://rubygems.org/gems/fluent-plugin-riak2","gem_uri":"https://rubygems.org/gems/fluent-plugin-riak2-0.0.5.gem","homepage_uri":"https://github.com/collectivehealth/fluent-plugin-riak2","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-riak2/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"},{"name":"riak-client","requirements":"~> 2.1.0"},{"name":"uuidtools","requirements":"~> 2.1.3"}]},"built_at":"2014-12-05T00:00:00.000Z","created_at":"2014-12-05T01:57:33.125Z","description":"Riak 2.x plugin for Fluent event collector","downloads_count":1226,"number":"0.0.5","summary":"Riak 2.x plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-riak2f","downloads":1787,"version":"0.0.2","version_downloads":1098,"platform":"ruby","authors":"koichi yanagimoto","info":"Riak 2.x plugin for Fluent event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"cb1c938097596e8241f17d624794cd93f4556808d9531c140f9c2c596eff12e2","project_uri":"https://rubygems.org/gems/fluent-plugin-riak2f","gem_uri":"https://rubygems.org/gems/fluent-plugin-riak2f-0.0.2.gem","homepage_uri":"https://github.com/kyanagimoto/fluent-plugin-riak2f","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-riak2f/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"rr","requirements":">= 1.0.0"},{"name":"simplecov","requirements":">= 0.5.4"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"},{"name":"riak-client","requirements":"~> 2.1.0"},{"name":"uuidtools","requirements":"~> 2.1.3"}]},"built_at":"2015-06-04T00:00:00.000Z","created_at":"2015-06-04T02:44:14.059Z","description":"Riak 2.x plugin for Fluent event collector","downloads_count":1098,"number":"0.0.2","summary":"Riak 2.x plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-riemann","downloads":3514,"version":"0.0.3","version_downloads":2443,"platform":"ruby","authors":"Will Farrell","info":"Riemann output plugin for Fluent","licenses":["MIT"],"metadata":{},"sha":"acf08bb2a62de2ea2e8a338ec465eefda9531aa25e404bd6781bc03f4054d6d3","project_uri":"https://rubygems.org/gems/fluent-plugin-riemann","gem_uri":"https://rubygems.org/gems/fluent-plugin-riemann-0.0.3.gem","homepage_uri":"https://github.com/wkf/fluent-plugin-riemann","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-riemann/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0"},{"name":"riemann-client","requirements":"~> 0"}]},"built_at":"2014-03-27T00:00:00.000Z","created_at":"2014-03-27T13:27:11.072Z","description":"Riemann output plugin for Fluent","downloads_count":2443,"number":"0.0.3","summary":"Riemann output plugin for Fluent","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-riemann-tulos","downloads":884,"version":"0.0.4","version_downloads":872,"platform":"ruby","authors":"Will Farrell","info":"Riemann output plugin for Fluent","licenses":["MIT"],"metadata":{},"sha":"323ea04d01ab4221acab77a90a5001466bb1eab5518474baac54a18b2c149b66","project_uri":"https://rubygems.org/gems/fluent-plugin-riemann-tulos","gem_uri":"https://rubygems.org/gems/fluent-plugin-riemann-tulos-0.0.4.gem","homepage_uri":"https://github.com/wkf/fluent-plugin-riemann","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-riemann-tulos/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0"},{"name":"riemann-client","requirements":"~> 0"}]},"built_at":"2015-10-23T00:00:00.000Z","created_at":"2015-10-23T14:17:19.162Z","description":"Riemann output plugin for Fluent","downloads_count":872,"number":"0.0.4","summary":"Riemann output plugin for Fluent","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-route","downloads":38221,"version":"1.0.0","version_downloads":6283,"platform":"ruby","authors":"TAGOMORI Satoshi, FURUHASHI Sadayuki","info":"This is copy of out_route.rb originally written by frsyuki","licenses":["APLv2"],"metadata":{},"sha":"8c6b79850e8a0a13d1a49837150e6ffe2066d2b15ff1fc5afd8a1c14ad906797","project_uri":"https://rubygems.org/gems/fluent-plugin-route","gem_uri":"https://rubygems.org/gems/fluent-plugin-route-1.0.0.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-route","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-route/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.14.0"}]},"built_at":"2017-02-01T00:00:00.000Z","created_at":"2017-02-01T03:06:46.974Z","description":"This is copy of out_route.rb originally written by frsyuki","downloads_count":6283,"number":"1.0.0","summary":"Fluentd plugin to route messages in fluentd processes","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rss","downloads":1520,"version":"0.0.1","version_downloads":1520,"platform":"ruby","authors":"harukasan","info":"Fluent input plugin to fetch RSS feed items.","licenses":["MIT"],"metadata":{},"sha":"971daf08a301859a39ca6c36b3e6aa4e4ca77a4ff51d5048208adf0d282ed9ce","project_uri":"https://rubygems.org/gems/fluent-plugin-rss","gem_uri":"https://rubygems.org/gems/fluent-plugin-rss-0.0.1.gem","homepage_uri":"https://github.com/harukasan/fluent-plugin-rss","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rss/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-04-14T00:00:00.000Z","created_at":"2014-04-14T11:06:48.894Z","description":"Fluent input plugin to fetch RSS feed items.","downloads_count":1520,"number":"0.0.1","summary":"Fluent input plugin to fetch RSS feed items","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rtail","downloads":355,"version":"0.1.0","version_downloads":355,"platform":"ruby","authors":"Genki Sugawara","info":"Fluentd output plugin for rtail.","licenses":["MIT"],"metadata":{},"sha":"94adcea25177cf5b9dd51e6191dcadd3050a77bf115f197498a70e5db48ff632","project_uri":"https://rubygems.org/gems/fluent-plugin-rtail","gem_uri":"https://rubygems.org/gems/fluent-plugin-rtail-0.1.0.gem","homepage_uri":"https://github.com/winebarrel/fluent-plugin-rtail","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rtail/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":"~> 3.0"},{"name":"test-unit","requirements":">= 3.1.0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"multi_json","requirements":">= 0"}]},"built_at":"2016-12-25T00:00:00.000Z","created_at":"2016-12-25T07:21:51.034Z","description":"Fluentd output plugin for rtail.","downloads_count":355,"number":"0.1.0","summary":"Fluentd output plugin for rtail.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-rtf-dash","downloads":1594,"version":"0.0.1","version_downloads":1594,"platform":"ruby","authors":"Aiming Inc.","info":"This rubygem does not have a description or summary.","licenses":["Apache 2.0"],"metadata":{},"sha":"428eefadcbea0b1db9206b7e1194f8dee70fc9c743b781e83fa002d407194753","project_uri":"https://rubygems.org/gems/fluent-plugin-rtf-dash","gem_uri":"https://rubygems.org/gems/fluent-plugin-rtf-dash-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-rtf-dash/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-12-05T00:00:00.000Z","created_at":"2013-12-05T09:51:29.661Z","description":null,"downloads_count":1594,"number":"0.0.1","summary":"","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-ruby-kafka","downloads":575,"version":"0.1.0","version_downloads":575,"platform":"ruby","authors":"Yoshimitsu Kokubo","info":"Kafka's produce fluentd plugin by ruby-kafka","licenses":["Apache-2.0"],"metadata":{},"sha":"b1aa29519ca4bd467cad7c5ff4fbf5d98638677bf7edf4ed0d8afd962efb7c80","project_uri":"https://rubygems.org/gems/fluent-plugin-ruby-kafka","gem_uri":"https://rubygems.org/gems/fluent-plugin-ruby-kafka-0.1.0.gem","homepage_uri":"https://github.com/unplus/fluent-plugin-ruby-kafka","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ruby-kafka/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.59"},{"name":"ruby-kafka","requirements":">= 0.3.2, ~> 0.3.0"},{"name":"zookeeper","requirements":">= 1.4.11, ~> 1.4.0"}]},"built_at":"2016-04-06T00:00:00.000Z","created_at":"2016-04-06T07:39:53.486Z","description":"Kafka's produce fluentd plugin by ruby-kafka","downloads_count":575,"number":"0.1.0","summary":"Kafka's produce fluentd plugin by ruby-kafka","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ruby-memory-usage-profiler","downloads":5344,"version":"0.0.4","version_downloads":1603,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Collect memory usage profile information and emit it (or output on fluentd log)","licenses":["APLv2"],"metadata":{},"sha":"dfd8f65512d1b94265f6901c83028d17401e307447f9cd6689dbf97f8ac3ca9f","project_uri":"https://rubygems.org/gems/fluent-plugin-ruby-memory-usage-profiler","gem_uri":"https://rubygems.org/gems/fluent-plugin-ruby-memory-usage-profiler-0.0.4.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-ruby-memory-usage-profiler","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ruby-memory-usage-profiler/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"ruby-memory-usage-profiler","requirements":">= 0.0.3"}]},"built_at":"2013-10-17T00:00:00.000Z","created_at":"2013-10-17T05:42:55.111Z","description":"Collect memory usage profile information and emit it (or output on fluentd log)","downloads_count":1603,"number":"0.0.4","summary":"Fluentd input plugin for memory usage profile of Ruby runtime and OS","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-ruby_one_liner","downloads":1553,"version":"0.0.2","version_downloads":1553,"platform":"ruby","authors":"bash0C7","info":"Fluentd plugin to run ruby one line of script","licenses":["Ruby's"],"metadata":{},"sha":"19dba0e4b28456d33086b377a35184039722fb05ca7f9a0a43faecad70006a64","project_uri":"https://rubygems.org/gems/fluent-plugin-ruby_one_liner","gem_uri":"https://rubygems.org/gems/fluent-plugin-ruby_one_liner-0.0.2.gem","homepage_uri":"https://github.com/bash0C7/fluent-plugin-ruby_one_liner","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ruby_one_liner/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-04-29T00:00:00.000Z","created_at":"2014-04-29T11:08:05.641Z","description":"Fluentd plugin to run ruby one line of script","downloads_count":1553,"number":"0.0.2","summary":"Fluentd plugin to run ruby one line of script","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-s3","downloads":597086,"version":"1.0.0.rc3","version_downloads":459,"platform":"ruby","authors":"Sadayuki Furuhashi, Masahiro Nakagawa","info":"Amazon S3 output plugin for Fluentd event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"8a9db1335fa0fb999bb0face38983763cf2434d82c3be95e7f585e905613a3b1","project_uri":"https://rubygems.org/gems/fluent-plugin-s3","gem_uri":"https://rubygems.org/gems/fluent-plugin-s3-1.0.0.rc3.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-s3","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-s3/1.0.0.rc3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.0.8"},{"name":"test-unit-rr","requirements":">= 1.0.3"},{"name":"timecop","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":"< 3, >= 2.3.22"},{"name":"fluentd","requirements":"< 2, >= 0.14.2"}]},"built_at":"2017-03-02T00:00:00.000Z","created_at":"2017-03-02T05:39:50.310Z","description":"Amazon S3 output plugin for Fluentd event collector","downloads_count":459,"number":"1.0.0.rc3","summary":"Amazon S3 output plugin for Fluentd event collector","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-s3-fork","downloads":2145,"version":"0.4.3","version_downloads":1251,"platform":"ruby","authors":"Hayato Tomoda","info":"Amazon S3 output plugin for Fluentd event collector","licenses":[],"metadata":{},"sha":"5476e0971bba76e33287ccac8d9bbb6fcdc70948cc1f11c176004432f9c93998","project_uri":"https://rubygems.org/gems/fluent-plugin-s3-fork","gem_uri":"https://rubygems.org/gems/fluent-plugin-s3-fork-0.4.3.gem","homepage_uri":"https://github.com/tomodian/fluent-plugin-s3","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-s3-fork/0.4.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.2.0"},{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"aws-sdk","requirements":"~> 1.38"},{"name":"fluentd","requirements":"~> 0.10.49"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2014-10-29T00:00:00.000Z","created_at":"2014-10-29T19:16:32.356Z","description":"Amazon S3 output plugin for Fluentd event collector","downloads_count":1251,"number":"0.4.3","summary":"Amazon S3 output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-s3in","downloads":2084,"version":"0.1.2.2","version_downloads":856,"platform":"ruby","authors":"Takeshi Shiihara","info":"Write a longer description or delete this line.","licenses":["MIT"],"metadata":{},"sha":"b7d006acf6c4a4da9ca1f124c763cc1fdd8dabd4e146bddf6c0ee2a59b35dd53","project_uri":"https://rubygems.org/gems/fluent-plugin-s3in","gem_uri":"https://rubygems.org/gems/fluent-plugin-s3in-0.1.2.2.gem","homepage_uri":"https://github.com/shii-take/fluent-plugin-s3in","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-s3in/0.1.2.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"apache-loggen","requirements":">= 0"},{"name":"bundler","requirements":"~> 1.0"},{"name":"fakes3","requirements":">= 0"},{"name":"glint","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":"~> 3.3.0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2.1"},{"name":"fluentd","requirements":"~> 0"},{"name":"sequel","requirements":"~> 4"},{"name":"sqlite3","requirements":"~> 1.3"},{"name":"tzinfo","requirements":"~> 1.2"}]},"built_at":"2015-11-08T00:00:00.000Z","created_at":"2015-11-08T15:41:42.932Z","description":"Write a longer description or delete this line.","downloads_count":856,"number":"0.1.2.2","summary":"Write a short summary, because Rubygems requires one.","rubygems_version":">= 0","ruby_version":"~> 2","prerelease":false,"requirements":[]},{"name":"fluent-plugin-s3-input","downloads":770,"version":"0.0.1","version_downloads":770,"platform":"ruby","authors":"Anthony Johnson","info":"Fluentd plugin to read a file from S3 and emit it","licenses":["MIT"],"metadata":{},"sha":"6a0e245507206f4a743f7d883631f4f81b5ba4d83ee6fb99a1cd9999b178fe99","project_uri":"https://rubygems.org/gems/fluent-plugin-s3-input","gem_uri":"https://rubygems.org/gems/fluent-plugin-s3-input-0.0.1.gem","homepage_uri":"https://github.com/ansoni/fluent-plugin-s3-input","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-s3-input/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"aws-sdk","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"oj","requirements":">= 0"}]},"built_at":"2016-07-18T00:00:00.000Z","created_at":"2016-07-18T05:10:26.778Z","description":"Fluentd plugin to read a file from S3 and emit it","downloads_count":770,"number":"0.0.1","summary":"Fluentd plugin to read a file from S3 and emit it","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sadf","downloads":636,"version":"0.0.2","version_downloads":371,"platform":"ruby","authors":"yuuzi41","info":"fluentd plugin for collecting sysstat using sadf","licenses":["MIT"],"metadata":{},"sha":"b7ee4bd9fda1f70d270bdd221bbe26ca318e3a6b16532185e156bd5d63f88f47","project_uri":"https://rubygems.org/gems/fluent-plugin-sadf","gem_uri":"https://rubygems.org/gems/fluent-plugin-sadf-0.0.2.gem","homepage_uri":"https://github.com/yuuzi41/fluent-plugin-sadf","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sadf/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"> 0"},{"name":"rspec","requirements":"> 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2016-10-23T00:00:00.000Z","created_at":"2016-10-23T14:47:44.225Z","description":"fluentd plugin for collecting sysstat using sadf","downloads_count":371,"number":"0.0.2","summary":"fluentd plugin for collecting sysstat using sadf","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-samefile","downloads":3564,"version":"0.0.3","version_downloads":1905,"platform":"ruby","authors":"Yuri Umezaki","info":"Fluentd plugin to output same file","licenses":["Apache-2.0"],"metadata":{},"sha":"16a6511e67f9450af967cb983167a28da28f5b7a69dbf49b563e6497af848d5e","project_uri":"https://rubygems.org/gems/fluent-plugin-samefile","gem_uri":"https://rubygems.org/gems/fluent-plugin-samefile-0.0.3.gem","homepage_uri":"https://github.com/bungoume/fluent-plugin-samefile","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-samefile/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"}]},"built_at":"2015-08-30T00:00:00.000Z","created_at":"2015-08-30T17:27:01.583Z","description":"Fluentd plugin to output same file","downloads_count":1905,"number":"0.0.3","summary":"Fluentd plugin to output same file","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sampling-filter","downloads":28583,"version":"1.1.0","version_downloads":509,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"fluentd plugin to pickup sample data from matched massages","licenses":["Apache-2.0"],"metadata":{},"sha":"9e6bea9881d4b8f62dee0e6db7d13571240b5b875a3d6b7a88517889ba54d733","project_uri":"https://rubygems.org/gems/fluent-plugin-sampling-filter","gem_uri":"https://rubygems.org/gems/fluent-plugin-sampling-filter-1.1.0.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-sampling-filter","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sampling-filter/1.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.12"},{"name":"test-unit","requirements":"~> 3.1.0"}]},"built_at":"2017-02-01T00:00:00.000Z","created_at":"2017-02-01T05:02:46.405Z","description":"fluentd plugin to pickup sample data from matched massages","downloads_count":509,"number":"1.1.0","summary":"fluentd plugin to pickup sample data from matched massages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sar","downloads":4801,"version":"0.0.4","version_downloads":3578,"platform":"ruby","authors":"Hirotaka Tajiri","info":"Fluentd input plugin to get sar result","licenses":["MIT"],"metadata":{},"sha":"7700e2bce3aef438713c75b156cf43d986193a77702cc6f2bbc9a13950a55a98","project_uri":"https://rubygems.org/gems/fluent-plugin-sar","gem_uri":"https://rubygems.org/gems/fluent-plugin-sar-0.0.4.gem","homepage_uri":"https://github.com/hirotaka-tajiri/fluent-plugin-sar","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sar/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"> 0"},{"name":"rspec","requirements":"> 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2014-01-29T00:00:00.000Z","created_at":"2014-01-29T12:04:06.360Z","description":"Fluentd input plugin to get sar result","downloads_count":3578,"number":"0.0.4","summary":"Fluentd input plugin to get sar result","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-say","downloads":4131,"version":"0.1.1","version_downloads":2269,"platform":"ruby","authors":"Shimpei Makimoto","info":"Fluentd output plugin to say something by using 'say' command","licenses":null,"metadata":{},"sha":"db1f2f54f058c962586fc37ddc4dfbafbff4b12eba5cedcb8e542aeab591c54b","project_uri":"https://rubygems.org/gems/fluent-plugin-say","gem_uri":"https://rubygems.org/gems/fluent-plugin-say-0.1.1.gem","homepage_uri":"http://github.com/makimoto/fluent-plugin-say","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-say/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"jeweler","requirements":">= 0"}]},"built_at":"2012-02-05T00:00:00.000Z","created_at":"2012-02-05T10:13:13.233Z","description":"Fluentd output plugin to say something by using 'say' command","downloads_count":2269,"number":"0.1.1","summary":"Fluentd output plugin to say something by using 'say' command","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-scribe","downloads":54229,"version":"0.10.14","version_downloads":11011,"platform":"ruby","authors":"Kazuki Ohta, TAGOMORI Satoshi","info":"Fluentd input/output plugin to handle Facebook scribed thrift protocol","licenses":["APLv2"],"metadata":{},"sha":"b17ff09be05fadfab8a248a142648133f1c90814f0c0d03dc04d09710f4fa102","project_uri":"https://rubygems.org/gems/fluent-plugin-scribe","gem_uri":"https://rubygems.org/gems/fluent-plugin-scribe-0.10.14.gem","homepage_uri":"https://github.com/fluent/fluent-plugin-scribe","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-scribe/0.10.14","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"thrift","requirements":"~> 0.8.0"}]},"built_at":"2014-12-19T00:00:00.000Z","created_at":"2014-12-19T09:22:13.224Z","description":"Fluentd input/output plugin to handle Facebook scribed thrift protocol","downloads_count":11011,"number":"0.10.14","summary":"Scribe Input/Output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-script","downloads":13019,"version":"0.0.3","version_downloads":2689,"platform":"ruby","authors":"SNakano","info":"Fluentd filter plugin to external ruby script","licenses":["MIT"],"metadata":{},"sha":"01e112e150952731a8df9a160e7de981972625ec12d6317e576d3b8ec7af3676","project_uri":"https://rubygems.org/gems/fluent-plugin-script","gem_uri":"https://rubygems.org/gems/fluent-plugin-script-0.0.3.gem","homepage_uri":"https://github.com/SNakano/fluent-plugin-script","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-script/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.4.2"},{"name":"test-unit","requirements":"~> 3.1.3"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"}]},"built_at":"2016-01-07T00:00:00.000Z","created_at":"2016-01-07T02:26:04.586Z","description":"Fluentd filter plugin to external ruby script","downloads_count":2689,"number":"0.0.3","summary":"Fluentd filter plugin to external ruby script","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-script_append","downloads":1998,"version":"0.1.0","version_downloads":1159,"platform":"ruby","authors":"Uchio KONDO","info":"A fluent plugin to add script-run result to existing json data","licenses":["Apache 2.0"],"metadata":{},"sha":"8e88f94da1e3425e1f9e917b7cccd3e587d4f94465dd4c09c31e63e6b36656a3","project_uri":"https://rubygems.org/gems/fluent-plugin-script_append","gem_uri":"https://rubygems.org/gems/fluent-plugin-script_append-0.1.0.gem","homepage_uri":"https://github.com/udzura/fluent-plugin-script_append","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-script_append/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 3"},{"name":"test-unit-power_assert","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-01-05T00:00:00.000Z","created_at":"2015-01-05T02:42:41.438Z","description":"A fluent plugin to add script-run result to existing json data","downloads_count":1159,"number":"0.1.0","summary":"A fluent plugin to add script-run result to existing json data","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-secure-forward","downloads":727560,"version":"0.4.4","version_downloads":29563,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"Message forwarding over SSL with authentication","licenses":["Apache-2.0"],"metadata":{},"sha":"4b0c0777ca2e7325e71a8c74242e5e4d38ed96db97964478c8aab4e66f0c584d","project_uri":"https://rubygems.org/gems/fluent-plugin-secure-forward","gem_uri":"https://rubygems.org/gems/fluent-plugin-secure-forward-0.4.4.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-secure-forward","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-secure-forward/0.4.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.46"},{"name":"proxifier","requirements":">= 0"},{"name":"resolve-hostname","requirements":">= 0"}]},"built_at":"2017-04-25T00:00:00.000Z","created_at":"2017-04-25T04:38:22.399Z","description":"Message forwarding over SSL with authentication","downloads_count":29563,"number":"0.4.4","summary":"Fluentd input/output plugin to forward over SSL with authentications","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-secure-forward-addproxy","downloads":1042,"version":"0.3.3dev2.1","version_downloads":531,"platform":"ruby","authors":"TAGOMORI Satoshi","info":"fork from fluent-plugin-secure-forward 0.3.3dev2 ","licenses":["APLv2"],"metadata":{},"sha":"e68ffb1ded5fcedaba6aa118e7576ae0150e4230de421c119e1bd02465edbd7a","project_uri":"https://rubygems.org/gems/fluent-plugin-secure-forward-addproxy","gem_uri":"https://rubygems.org/gems/fluent-plugin-secure-forward-addproxy-0.3.3dev2.1.gem","homepage_uri":"https://github.com/tagomoris/fluent-plugin-secure-forward","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-secure-forward-addproxy/0.3.3dev2.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.46"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"proxifier","requirements":">= 0"},{"name":"resolve-hostname","requirements":">= 0"}]},"built_at":"2015-07-07T00:00:00.000Z","created_at":"2015-07-07T06:50:55.901Z","description":"fork from fluent-plugin-secure-forward 0.3.3dev2 ","downloads_count":531,"number":"0.3.3dev2.1","summary":"Fluentd input/output plugin to forward over SSL with authentications + proxy","rubygems_version":"> 1.3.1","ruby_version":">= 0","prerelease":true,"requirements":[]},{"name":"fluent-plugin-secure-tcp","downloads":388,"version":"0.1.1","version_downloads":360,"platform":"ruby","authors":"Bohumil Cervenka","info":"Secure tcp input plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"2a46e3e7ed7b708e0868cbbfc5372b4a253e323d0771d880eb15ae30757f90dd","project_uri":"https://rubygems.org/gems/fluent-plugin-secure-tcp","gem_uri":"https://rubygems.org/gems/fluent-plugin-secure-tcp-0.1.1.gem","homepage_uri":"https://github.com/SilverDragon135/fluent-plugin-in-secure-tcp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-secure-tcp/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"minitest","requirements":"~> 5.0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"concurrent-ruby","requirements":"~> 0.9.2"},{"name":"fluentd","requirements":"< 2, >= 0.10.58"}]},"built_at":"2016-11-25T00:00:00.000Z","created_at":"2016-11-25T12:17:49.133Z","description":"Secure tcp input plugin for Fluent event collector","downloads_count":360,"number":"0.1.1","summary":"Secure tcp input plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-select","downloads":6428,"version":"0.0.3.1","version_downloads":3136,"platform":"ruby","authors":"Kohei Tomita","info":"fluent-plugin-select is the non-buffered plugin that can be filtered by ruby script. ","licenses":null,"metadata":{},"sha":"5d2d6760dd79e79ef6f66e4310dcd6357d93663e7aa301fd6aa2c83a7e0cf9fc","project_uri":"https://rubygems.org/gems/fluent-plugin-select","gem_uri":"https://rubygems.org/gems/fluent-plugin-select-0.0.3.1.gem","homepage_uri":"https://github.com/tomity/fluent-plugin-select","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-select/0.0.3.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":"~> 0.10.24"},{"name":"rake","requirements":"~> 0.9.2.2"}],"runtime":[]},"built_at":"2012-08-11T00:00:00.000Z","created_at":"2012-08-11T04:23:26.135Z","description":"fluent-plugin-select is the non-buffered plugin that can be filtered by ruby script. ","downloads_count":3136,"number":"0.0.3.1","summary":"fluent-plugin-select is the non-buffered plugin that can be filtered by ruby script.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-sendgrid-event","downloads":2620,"version":"0.0.5","version_downloads":754,"platform":"ruby","authors":"Hiroaki Sano","info":"Fluent input plugin to receive sendgrid event.","licenses":["MIT"],"metadata":{},"sha":"bdb63c757f8ecda784966ec34d520f9470663df5caf8460baa54eb63c1955cfd","project_uri":"https://rubygems.org/gems/fluent-plugin-sendgrid-event","gem_uri":"https://rubygems.org/gems/fluent-plugin-sendgrid-event-0.0.5.gem","homepage_uri":"https://github.com/hiroakis/fluent-plugin-sendgrid-event","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sendgrid-event/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-01-16T00:00:00.000Z","created_at":"2016-01-16T08:54:42.485Z","description":"","downloads_count":754,"number":"0.0.5","summary":"Fluent input plugin to receive sendgrid event.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sendmail","downloads":1596,"version":"0.1.3","version_downloads":373,"platform":"ruby","authors":"yudai09","info":"Fluentd plugin to parse and merge sendmail syslog.","licenses":["MIT"],"metadata":{},"sha":"eede1c790a2033e77686810598c7d1c6fba1008142550ef389c6db3c56cdf634","project_uri":"https://rubygems.org/gems/fluent-plugin-sendmail","gem_uri":"https://rubygems.org/gems/fluent-plugin-sendmail-0.1.3.gem","homepage_uri":"https://github.com/yudai09/fluent-plugin-sendmail","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sendmail/0.1.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"lru_redux","requirements":">= 0.8.4"}]},"built_at":"2016-11-14T00:00:00.000Z","created_at":"2016-11-14T07:55:04.946Z","description":"Fluentd plugin to parse and merge sendmail syslog.","downloads_count":373,"number":"0.1.3","summary":"Fluentd plugin to parse and merge sendmail syslog.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sensu","downloads":8441,"version":"1.0.1","version_downloads":5803,"platform":"ruby","authors":"MIYAKAWA Taku","info":"Fluentd output plugin to send checks to sensu-client.","licenses":["Apache License, v2.0"],"metadata":{},"sha":"3f3728a8446730c2453130dbab0e4385ef7a49ad0445cf43d9036a124e792d5c","project_uri":"https://rubygems.org/gems/fluent-plugin-sensu","gem_uri":"https://rubygems.org/gems/fluent-plugin-sensu-1.0.1.gem","homepage_uri":"https://github.com/miyakawataku/fluent-plugin-sensu","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sensu/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-11-24T00:00:00.000Z","created_at":"2015-11-24T05:33:53.779Z","description":"Fluentd output plugin to send checks to sensu-client.","downloads_count":5803,"number":"1.0.1","summary":"Fluentd output plugin to send checks to sensu-client.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sentry","downloads":7093,"version":"0.0.5","version_downloads":2400,"platform":"ruby","authors":"Kentaro Yoshida","info":"Fluentd output plugin that sends aggregated errors/exception events to Sentry. Sentry is a event logging and aggregation platform.","licenses":["Apache-2.0"],"metadata":{},"sha":"e8ec61977da622f65f82d5bb8eaa2a752e7760239350070d9506baf924c868a3","project_uri":"https://rubygems.org/gems/fluent-plugin-sentry","gem_uri":"https://rubygems.org/gems/fluent-plugin-sentry-0.0.5.gem","homepage_uri":"https://github.com/y-ken/fluent-plugin-sentry","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sentry/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"appraisal","requirements":">= 0"},{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.1.0"},{"name":"webmock","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"sentry-raven","requirements":"~> 0.15.0"}]},"built_at":"2016-06-07T00:00:00.000Z","created_at":"2016-06-07T01:01:45.514Z","description":"","downloads_count":2400,"number":"0.0.5","summary":"Fluentd output plugin that sends aggregated errors/exception events to Sentry. Sentry is a event logging and aggregation platform.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sentry-http","downloads":1972,"version":"0.1.1","version_downloads":1345,"platform":"ruby","authors":"IKUTA Masahito","info":"Fluentd input plugin that receive exceptions from the Sentry clients(Raven).","licenses":["APLv2"],"metadata":{},"sha":"08685bf1326a764a8379989165dc608392d212e87868e59c3bf2dd6dd5be4253","project_uri":"https://rubygems.org/gems/fluent-plugin-sentry-http","gem_uri":"https://rubygems.org/gems/fluent-plugin-sentry-http-0.1.1.gem","homepage_uri":"http://github.com/cooldaemon/fluent-plugin-sentry-http","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sentry-http/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.0, ~> 3.1"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.55"},{"name":"oj","requirements":">= 1.4"}]},"built_at":"2015-07-31T00:00:00.000Z","created_at":"2015-08-01T05:08:43.329Z","description":"Fluentd input plugin that receive exceptions from the Sentry clients(Raven).","downloads_count":1345,"number":"0.1.1","summary":"Fluentd input plugin that receive exceptions from the Sentry clients(Raven).","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-serialport","downloads":5620,"version":"0.14.1","version_downloads":86,"platform":"ruby","authors":"MATSUMOTO Katsuyoshi","info":"fluentd plugin for serial port","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"b14f045b0abeda5936c33c69fc878e4526b5ffc83b48dba562feff9e508f3e5f","project_uri":"https://rubygems.org/gems/fluent-plugin-serialport","gem_uri":"https://rubygems.org/gems/fluent-plugin-serialport-0.14.1.gem","homepage_uri":"https://github.com/katsyoshi/fluent-plugin-serialport","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-serialport/0.14.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"simplecov","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14"},{"name":"serialport","requirements":">= 0"}]},"built_at":"2017-05-17T00:00:00.000Z","created_at":"2017-05-17T14:43:42.432Z","description":"fluentd plugin for serial port","downloads_count":86,"number":"0.14.1","summary":"fluentd plugin for serial port","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-ses","downloads":6342,"version":"0.0.4","version_downloads":2096,"platform":"ruby","authors":"Spring_MT","info":"Fluent output plugin for AWS SES\n","licenses":[],"metadata":{},"sha":"b03c5ee134a27f44ec39e6b39d3e5df0f6452b82236be232f0772ba180c3aee0","project_uri":"https://rubygems.org/gems/fluent-plugin-ses","gem_uri":"https://rubygems.org/gems/fluent-plugin-ses-0.0.4.gem","homepage_uri":"https://github.com/SpringMT/fluent-plugin-ses","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-ses/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"aws-sdk","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-plaintextformatter","requirements":">= 0"}]},"built_at":"2013-04-19T00:00:00.000Z","created_at":"2013-04-19T04:16:37.123Z","description":"Fluent output plugin for AWS SES\n","downloads_count":2096,"number":"0.0.4","summary":"Fluent output plugin for AWS SES","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-setproctitle","downloads":1198,"version":"0.0.1","version_downloads":1198,"platform":"ruby","authors":"Tatsuhiko Kubo","info":"plugin for renaming fluentd process name","licenses":["MIT"],"metadata":{},"sha":"97780a2e35266891ee52a442d9c1bf95f8d923244472d2a9d227d18d65856e35","project_uri":"https://rubygems.org/gems/fluent-plugin-setproctitle","gem_uri":"https://rubygems.org/gems/fluent-plugin-setproctitle-0.0.1.gem","homepage_uri":"https://github.com/cubicdaiya/fluent-plugin-setproctitle","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-setproctitle/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[]},"built_at":"2014-12-26T00:00:00.000Z","created_at":"2014-12-26T12:00:57.352Z","description":"plugin for renaming fluentd process name","downloads_count":1198,"number":"0.0.1","summary":"plugin for renaming fluentd process name","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sflow","downloads":242,"version":"0.1.0","version_downloads":242,"platform":"ruby","authors":"enukane","info":"sFlow input plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"f29f3da0782b1f8cafc1ef24a2e93970b8ee6ce3dfab66b424d891b2cb1677d5","project_uri":"https://rubygems.org/gems/fluent-plugin-sflow","gem_uri":"https://rubygems.org/gems/fluent-plugin-sflow-0.1.0.gem","homepage_uri":"https://github.com/enukane/fluent-plugin-sflow","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sflow/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14"},{"name":"minitest","requirements":"~> 5.0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"bindata","requirements":"= 1.8.1"},{"name":"eventmachine","requirements":"~> 1.2.3"},{"name":"fluentd","requirements":"~> 0.14.10"}]},"built_at":"2017-03-24T00:00:00.000Z","created_at":"2017-03-24T05:49:44.282Z","description":"sFlow input plugin for Fluentd","downloads_count":242,"number":"0.1.0","summary":"sFlow plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sforce","downloads":2090,"version":"0.0.2","version_downloads":1217,"platform":"ruby","authors":"Makoto Tajitsu","info":"Fluent Plugin to export data from Salesforce.com.","licenses":[],"metadata":{},"sha":"c1e93fe34cd0f47611266eef41b997b8104b8096cc850d024bfd7f0a1c9f4e9b","project_uri":"https://rubygems.org/gems/fluent-plugin-sforce","gem_uri":"https://rubygems.org/gems/fluent-plugin-sforce-0.0.2.gem","homepage_uri":"https://github.com/tzmfreedom/fluent-plugin-sforce","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sforce/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"faye","requirements":"= 0.8.9"},{"name":"fluentd","requirements":"~> 0.10.55"},{"name":"nokogiri","requirements":"= 1.5.6"},{"name":"restforce","requirements":"~> 1.5.0"}]},"built_at":"2014-11-08T00:00:00.000Z","created_at":"2014-11-08T00:05:29.271Z","description":"Fluent Plugin to export data from Salesforce.com.","downloads_count":1217,"number":"0.0.2","summary":"Fluent Plugin to export data from Salesforce.com.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sidekiq","downloads":6024,"version":"0.0.4","version_downloads":2516,"platform":"ruby","authors":"Alex Scarborough","info":"Sidekiq plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"6209149debc5f671dda4a4d989a793f66cccfcfbb4fd6cd8561897b2453d2de2","project_uri":"https://rubygems.org/gems/fluent-plugin-sidekiq","gem_uri":"https://rubygems.org/gems/fluent-plugin-sidekiq-0.0.4.gem","homepage_uri":"https://github.com/GoCarrot/fluent-plugin-sidekiq","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sidekiq/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"hiredis","requirements":">= 0"},{"name":"redis","requirements":">= 0"}]},"built_at":"2014-08-25T00:00:00.000Z","created_at":"2014-08-25T18:49:00.599Z","description":"Sidekiq plugin for Fluentd","downloads_count":2516,"number":"0.0.4","summary":"Sidekiq plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-simplearithmetic","downloads":3679,"version":"0.0.3","version_downloads":1214,"platform":"ruby","authors":"Takahiro Kamatani","info":"Fluent plugin to calculate messages.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"bd3795074f4ac7055767bf8aa201c98348181168383fbc75d252dc5d9136843f","project_uri":"https://rubygems.org/gems/fluent-plugin-simplearithmetic","gem_uri":"https://rubygems.org/gems/fluent-plugin-simplearithmetic-0.0.3.gem","homepage_uri":"https://github.com/buhii/fluent-plugin-simplearithmetic","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-simplearithmetic/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2014-12-05T00:00:00.000Z","created_at":"2014-12-05T04:22:38.668Z","description":"Fluent plugin to calculate messages.","downloads_count":1214,"number":"0.0.3","summary":"Fluent plugin to calculate messages.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-simplefile","downloads":265,"version":"0.0.7","version_downloads":265,"platform":"ruby","authors":"Alexey Panaetov","info":"This rubygem does not have a description or summary.","licenses":["MIT"],"metadata":{},"sha":"377ee1723b719e42746a66b6c44729724feedd699bd24aafe34820e69be0dbeb","project_uri":"https://rubygems.org/gems/fluent-plugin-simplefile","gem_uri":"https://rubygems.org/gems/fluent-plugin-simplefile-0.0.7.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-simplefile/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-03-20T00:00:00.000Z","created_at":"2017-03-20T07:00:01.035Z","description":"","downloads_count":265,"number":"0.0.7","summary":"","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-simple-logentries","downloads":3535,"version":"0.1.1","version_downloads":1518,"platform":"ruby","authors":"sowawa","info":"Push fluent events to Logentries","licenses":["MIT"],"metadata":{},"sha":"3104740740b92401fbbec8abdb2b7f24031bdfb2858b4450d733ac56c87f90b3","project_uri":"https://rubygems.org/gems/fluent-plugin-simple-logentries","gem_uri":"https://rubygems.org/gems/fluent-plugin-simple-logentries-0.1.1.gem","homepage_uri":"https://github.com/sowawa/fluent-plugin-simple-logentries","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-simple-logentries/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":"~> 0"}],"runtime":[]},"built_at":"2015-07-31T00:00:00.000Z","created_at":"2015-07-31T02:39:41.928Z","description":"Push fluent events to Logentries","downloads_count":1518,"number":"0.1.1","summary":"Logentries output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-simple-to-hash","downloads":1587,"version":"0.0.2","version_downloads":975,"platform":"ruby","authors":"Augusto Nishi","info":"fluentd input plugin for converting simple variable to hash","licenses":["MIT"],"metadata":{},"sha":"cb79006d0931b9c6c4cacc4e73f352a59ae341b9d89154ce498305a193f093e5","project_uri":"https://rubygems.org/gems/fluent-plugin-simple-to-hash","gem_uri":"https://rubygems.org/gems/fluent-plugin-simple-to-hash-0.0.2.gem","homepage_uri":"http://github.com/DEVTecnologia/fluent-plugin-simple-to-hash","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-simple-to-hash/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.5"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2015-07-08T00:00:00.000Z","created_at":"2015-07-08T23:41:06.185Z","description":"fluentd input plugin for converting simple variable to hash","downloads_count":975,"number":"0.0.2","summary":"fluentd filter plugin for converting simple variable to hash","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sixpack","downloads":2439,"version":"0.2.0","version_downloads":1433,"platform":"ruby","authors":"Naoki AINOYA","info":"For sixpack, see http://sixpack.seatgeek.com ","licenses":["APLv2"],"metadata":{},"sha":"1c199bea73b011011ba5163418d76abca8f015d902026d01f36279a92758356c","project_uri":"https://rubygems.org/gems/fluent-plugin-sixpack","gem_uri":"https://rubygems.org/gems/fluent-plugin-sixpack-0.2.0.gem","homepage_uri":"https://github.com/ainoya/fluent-plugin-sixpack","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sixpack/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0"},{"name":"resolve-hostname","requirements":">= 0.0.4"}]},"built_at":"2014-08-08T00:00:00.000Z","created_at":"2014-08-08T07:52:31.723Z","description":"For sixpack, see http://sixpack.seatgeek.com ","downloads_count":1433,"number":"0.2.0","summary":"Fluentd output plugin to post numbers to sixpack (by seatgeek)","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-slack","downloads":99532,"version":"0.6.4","version_downloads":58529,"platform":"ruby","authors":"Keisuke SOGAWA, Naotoshi Seo","info":"fluent Slack plugin","licenses":["Apache-2.0"],"metadata":{},"sha":"0ddb69866203b1c6a40712518f8460b2fc9a9ade44ba33cfeb85cf892a9ba665","project_uri":"https://rubygems.org/gems/fluent-plugin-slack","gem_uri":"https://rubygems.org/gems/fluent-plugin-slack-0.6.4.gem","homepage_uri":"https://github.com/sowawa/fluent-plugin-slack","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-slack/0.6.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"dotenv","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 10.1.1"},{"name":"rr","requirements":">= 1.0.0"},{"name":"test-unit","requirements":"~> 3.0.2"},{"name":"test-unit-rr","requirements":"~> 1.0.3"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.8"}]},"built_at":"2016-07-07T00:00:00.000Z","created_at":"2016-07-07T11:10:26.641Z","description":"fluent Slack plugin","downloads_count":58529,"number":"0.6.4","summary":"fluent Slack plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-slackboard","downloads":1454,"version":"0.1.0","version_downloads":1059,"platform":"ruby","authors":"Tatsuhiko Kubo","info":"plugin for proxying message to slackboard","licenses":["MIT"],"metadata":{},"sha":"b84b5c5a01268a8bd31d0729bdb3730cdcf0aa2aeb16fb6101523a8264e331af","project_uri":"https://rubygems.org/gems/fluent-plugin-slackboard","gem_uri":"https://rubygems.org/gems/fluent-plugin-slackboard-0.1.0.gem","homepage_uri":"https://github.com/cubicdaiya/fluent-plugin-slackboard","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-slackboard/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[]},"built_at":"2016-03-19T00:00:00.000Z","created_at":"2016-03-19T22:32:12.552Z","description":"plugin for proxying message to slackboard","downloads_count":1059,"number":"0.1.0","summary":"plugin for proxying message to slackboard","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-slackrtm","downloads":1773,"version":"0.2.4","version_downloads":1026,"platform":"ruby","authors":"Arata Tanaka","info":"Slack Real Time Messagina input plugin for Fluentd","licenses":["Apache-2.0"],"metadata":{},"sha":"6a280d75eb2e8ae45903a2f084efc7330e76011cac0e8bf0da8d75a36a470c77","project_uri":"https://rubygems.org/gems/fluent-plugin-slackrtm","gem_uri":"https://rubygems.org/gems/fluent-plugin-slackrtm-0.2.4.gem","homepage_uri":"https://github.com/tarata/fluent-plugin-slackrtm","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-slackrtm/0.2.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.0.8"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.49"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.3.0"},{"name":"slack-rtmapi","requirements":"= 1.0.0.rc4"}]},"built_at":"2015-06-08T00:00:00.000Z","created_at":"2015-06-08T14:27:55.034Z","description":"Slack Real Time Messagina input plugin for Fluentd","downloads_count":1026,"number":"0.2.4","summary":"Slack Real Time Messagina input plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-slfparser","downloads":2346,"version":"0.0.7","version_downloads":375,"platform":"ruby","authors":"Fabian Kajzar","info":"parsing of SLF4J based logs. ","licenses":["Apache-2.0"],"metadata":{},"sha":"8052dc91295f164205e85331a68e87eae656b44fb0645afac1496aa41d6a836f","project_uri":"https://rubygems.org/gems/fluent-plugin-slfparser","gem_uri":"https://rubygems.org/gems/fluent-plugin-slfparser-0.0.7.gem","homepage_uri":"https://github.com/Fabian-K/fluent-plugin-slfparser","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-slfparser/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.0.2"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-10-24T00:00:00.000Z","created_at":"2016-10-24T09:11:35.779Z","description":"parsing of SLF4J based logs. ","downloads_count":375,"number":"0.0.7","summary":"Fluentd plugin to parse SLF4J based logs.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sndacs","downloads":3548,"version":"0.0.3","version_downloads":1951,"platform":"ruby","authors":"Sparkle","info":"Sndacs output plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"78e328c10d4bda8ba1b58c584b33bce1e8bbe6781cfeab91b1d3739047fc3ae8","project_uri":"https://rubygems.org/gems/fluent-plugin-sndacs","gem_uri":"https://rubygems.org/gems/fluent-plugin-sndacs-0.0.3.gem","homepage_uri":"https://github.com/sparkle/fluent-plugin-sndacs","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sndacs/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.28"},{"name":"sndacs","requirements":"~> 0.2.4"}]},"built_at":"2012-11-29T00:00:00.000Z","created_at":"2012-11-29T02:55:11.214Z","description":"Sndacs output plugin for Fluent event collector","downloads_count":1951,"number":"0.0.3","summary":"Sndacs output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-snmp","downloads":12723,"version":"0.0.9","version_downloads":1978,"platform":"ruby","authors":"hiro-su","info":"Input plugin to snmp","licenses":[],"metadata":{},"sha":"47248e02db9a62289c482f5c8179554c183e31014843be81826494dea584d147","project_uri":"https://rubygems.org/gems/fluent-plugin-snmp","gem_uri":"https://rubygems.org/gems/fluent-plugin-snmp-0.0.9.gem","homepage_uri":null,"wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-snmp/0.0.9","mailing_list_uri":"","source_code_uri":"https://github.com/iij/fluent-plugin-snmp","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.12"},{"name":"mocha","requirements":"~> 1.1.0"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.58"},{"name":"polling","requirements":"= 0.1.5"},{"name":"snmp","requirements":"~> 1.2.0"}]},"built_at":"2016-08-07T00:00:00.000Z","created_at":"2016-08-07T03:20:27.580Z","description":"Input plugin to snmp","downloads_count":1978,"number":"0.0.9","summary":"Input plugin to snmp","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-snmptrap","downloads":1818,"version":"0.0.1","version_downloads":1818,"platform":"ruby","authors":"Alex Pena","info":"FLuentd plugin for SNMP Traps... WIP","licenses":["MIT"],"metadata":{},"sha":"ccc487645c8c8d82a33e4ddb8647c11a64f49a111934f5eed887ed9465fc56e9","project_uri":"https://rubygems.org/gems/fluent-plugin-snmptrap","gem_uri":"https://rubygems.org/gems/fluent-plugin-snmptrap-0.0.1.gem","homepage_uri":"https://github.com/Bigel0w/fluent-plugin-snmptrap","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-snmptrap/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.6, ~> 0.9"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.51, ~> 0.10"},{"name":"snmp","requirements":">= 1.1.1, ~> 1.1"}]},"built_at":"2014-07-09T00:00:00.000Z","created_at":"2014-07-10T07:43:11.238Z","description":"FLuentd plugin for SNMP Traps... WIP","downloads_count":1818,"number":"0.0.1","summary":"Fluentd input plugin for SNMP Traps","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sns","downloads":24375,"version":"2.1.7","version_downloads":1963,"platform":"ruby","authors":"Yuri Odagiri","info":"Amazon SNS output plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"fc3aeb1eec854ad472b4612d2a24b6f9056796dc4bd41d2861273d3e5ae6f9d6","project_uri":"https://rubygems.org/gems/fluent-plugin-sns","gem_uri":"https://rubygems.org/gems/fluent-plugin-sns-2.1.7.gem","homepage_uri":"https://github.com/ixixi/fluent-plugin-sns","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sns/2.1.7","mailing_list_uri":"","source_code_uri":"https://github.com/ixixi/fluent-plugin-sns","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"aws-sdk-v1","requirements":"~> 1"},{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2016-03-16T00:00:00.000Z","created_at":"2016-03-16T09:46:43.238Z","description":"","downloads_count":1963,"number":"2.1.7","summary":"Amazon SNS output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-solr","downloads":2417,"version":"0.1.1","version_downloads":2415,"platform":"ruby","authors":"Nobutaka Nakazawa","info":"Solr output plugin for Fluent event collector","licenses":null,"metadata":{},"sha":"14d620cf6d592eb0b2e075b8ca09e27ef225177d8696c6b22c73c8442d57d9e8","project_uri":"https://rubygems.org/gems/fluent-plugin-solr","gem_uri":"https://rubygems.org/gems/fluent-plugin-solr-0.1.1.gem","homepage_uri":"http://github.com/btigit/fluent-plugin-solr","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-solr/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.0.0"},{"name":"jeweler","requirements":"~> 1.6.4"},{"name":"rcov","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"solr-ruby","requirements":"~> 0.0.8"}]},"built_at":"2011-11-22T00:00:00.000Z","created_at":"2011-11-22T12:06:17.698Z","description":"Solr output plugin for Fluent event collector","downloads_count":2415,"number":"0.1.1","summary":"Solr output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-sort","downloads":1307,"version":"1.0.0","version_downloads":1307,"platform":"ruby","authors":"Project Hatohol","info":"Fluentd doesn't guarantee message order but you may keep message order.","licenses":["LGPL-2.1+"],"metadata":{},"sha":"3fa3cebfd111cfc4ff134a354f9e0bc2ad17b8b6235b207e41b55c09f537af6c","project_uri":"https://rubygems.org/gems/fluent-plugin-sort","gem_uri":"https://rubygems.org/gems/fluent-plugin-sort-1.0.0.gem","homepage_uri":"https://github.com/project-hatohol/fluent-plugin-sort","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sort/1.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"packnga","requirements":">= 0.9.6"},{"name":"rake","requirements":">= 0"},{"name":"redcarpet","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-10-14T00:00:00.000Z","created_at":"2014-10-14T06:53:54.566Z","description":"Fluentd doesn't guarantee message order but you may keep message order.","downloads_count":1307,"number":"1.0.0","summary":"A Fluentd plugin that sorts buffered messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-specinfra_inventory","downloads":7845,"version":"0.2.3","version_downloads":1047,"platform":"ruby","authors":"Masashi Terui","info":"Specinfra Host Inventory Plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"a21b4fd571ad390429862b51077c1890e8046929fa3b84f6b09ba7695a1dddfa","project_uri":"https://rubygems.org/gems/fluent-plugin-specinfra_inventory","gem_uri":"https://rubygems.org/gems/fluent-plugin-specinfra_inventory-0.2.3.gem","homepage_uri":"https://github.com/marcy-terui/fluent-plugin-specinfra_inventory","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-specinfra_inventory/0.2.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"coveralls","requirements":">= 0"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"specinfra","requirements":">= 2.17.1"}]},"built_at":"2015-04-02T00:00:00.000Z","created_at":"2015-04-02T03:30:45.368Z","description":"Specinfra Host Inventory Plugin for Fluentd","downloads_count":1047,"number":"0.2.3","summary":"Specinfra Host Inventory Plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-spectrum","downloads":5459,"version":"0.0.8","version_downloads":1058,"platform":"ruby","authors":"Alex Pena, Ling Zhang","info":"Fluentd input/output plugin for managing monitoring alerts from CA Spectrum. Input supports polling CA Spectrum APIs. Output currently only supports updating events retrieved from Spectrum.","licenses":["MIT"],"metadata":{},"sha":"00dd951175ec3f51f66b821f65f14f47f161a4f0d0c09a84591ea806a6540601","project_uri":"https://rubygems.org/gems/fluent-plugin-spectrum","gem_uri":"https://rubygems.org/gems/fluent-plugin-spectrum-0.0.8.gem","homepage_uri":"https://github.com/Bigel0w/fluent-plugin-spectrum","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-spectrum/0.0.8","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"codeclimate-test-reporter","requirements":"~> 0.4"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"},{"name":"highwatermark","requirements":"~> 0.1"},{"name":"json","requirements":"~> 1.8"},{"name":"rest-client","requirements":"~> 1.8"}]},"built_at":"2015-05-07T00:00:00.000Z","created_at":"2015-05-07T18:55:28.445Z","description":"Fluentd input/output plugin for managing monitoring alerts from CA Spectrum. Input supports polling CA Spectrum APIs. Output currently only supports updating events retrieved from Spectrum.","downloads_count":1058,"number":"0.0.8","summary":"Fluentd plugin for managing monitoring alerts from CA Spectrum","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-split","downloads":4715,"version":"0.0.4","version_downloads":1179,"platform":"ruby","authors":"Hiroshi Toyama","info":"Output Split String Plugin for fluentd","licenses":["MIT"],"metadata":{},"sha":"9ea8ad6e1a01a73572aff66a236ce7b04ea916a6c52b12c5fd733167a831ac6a","project_uri":"https://rubygems.org/gems/fluent-plugin-split","gem_uri":"https://rubygems.org/gems/fluent-plugin-split-0.0.4.gem","homepage_uri":"https://github.com/toyama0919/fluent-plugin-split","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-split/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"fluentd","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"spork","requirements":">= 0"}],"runtime":[]},"built_at":"2015-06-02T00:00:00.000Z","created_at":"2015-06-02T01:54:15.487Z","description":"Output Split String Plugin for fluentd","downloads_count":1179,"number":"0.0.4","summary":"Output Split String Plugin for fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-split-array","downloads":1454,"version":"0.0.1","version_downloads":1454,"platform":"ruby","authors":"SNakano","info":"Fluentd filter plugin to split array","licenses":["MIT"],"metadata":{},"sha":"c0e90c7bc37408d94831968084e5ac33d8434595afb53039faa9eb54878022d2","project_uri":"https://rubygems.org/gems/fluent-plugin-split-array","gem_uri":"https://rubygems.org/gems/fluent-plugin-split-array-0.0.1.gem","homepage_uri":"https://github.com/SNakano/fluent-plugin-split-array","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-split-array/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 10.4"},{"name":"test-unit","requirements":"~> 3.1"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"}]},"built_at":"2015-08-28T00:00:00.000Z","created_at":"2015-08-28T12:16:30.577Z","description":"Fluentd filter plugin to split array","downloads_count":1454,"number":"0.0.1","summary":"Fluentd filter plugin to split array","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-split-event","downloads":308,"version":"0.1.0","version_downloads":308,"platform":"ruby","authors":"Bryan Richardson","info":"Fluentd filter plugin to split an event into multiple events","licenses":["MIT"],"metadata":{},"sha":"7fae5b6f10e1ec6dbb09f1ecdbc8b05fb33a946db5a6d87c1e4766b4bdb17a35","project_uri":"https://rubygems.org/gems/fluent-plugin-split-event","gem_uri":"https://rubygems.org/gems/fluent-plugin-split-event-0.1.0.gem","homepage_uri":"https://github.com/activeshadow/fluent-plugin-split-event","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-split-event/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":"~> 11.0"},{"name":"test-unit","requirements":"~> 3.2"},{"name":"timecop","requirements":"~> 0.3"}],"runtime":[{"name":"fluentd","requirements":"~> 0.14.0"}]},"built_at":"2017-01-26T00:00:00.000Z","created_at":"2017-01-26T23:55:41.720Z","description":"Fluentd filter plugin to split an event into multiple events","downloads_count":308,"number":"0.1.0","summary":"Fluentd filter plugin to split an event into multiple events","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-splunk","downloads":5219,"version":"0.0.1.1","version_downloads":3279,"platform":"ruby","authors":"Abhishek Parolkar","info":"Splunk output plugin for Fluent event collector","licenses":null,"metadata":{},"sha":"8a12693b8fb7ac05b2770c0795b10a946b921cc7827b3bfdfd4852df763aa2b1","project_uri":"https://rubygems.org/gems/fluent-plugin-splunk","gem_uri":"https://rubygems.org/gems/fluent-plugin-splunk-0.0.1.1.gem","homepage_uri":"https://github.com/parolkar/fluent-plugin-splunk","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-splunk/0.0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.10.7"}]},"built_at":"2011-12-03T00:00:00.000Z","created_at":"2011-12-03T08:24:00.791Z","description":"Splunk output plugin for Fluent event collector","downloads_count":3279,"number":"0.0.1.1","summary":"Splunk output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-splunkapi","downloads":15599,"version":"0.2.0","version_downloads":7323,"platform":"ruby","authors":"Keisuke Nishida","info":"Splunk output plugin for Fluent event collector. This plugin supports Splunk REST API and Splunk Storm API.","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"d68dc8d7c483d5ac4e892db340aae91f3f81f331b04340ec4cae8291e1d92bf3","project_uri":"https://rubygems.org/gems/fluent-plugin-splunkapi","gem_uri":"https://rubygems.org/gems/fluent-plugin-splunkapi-0.2.0.gem","homepage_uri":"https://github.com/k24d/fluent-plugin-splunkapi","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-splunkapi/0.2.0","mailing_list_uri":"","source_code_uri":"https://github.com/k24d/fluent-plugin-splunkapi","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"net-http-persistent","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"net-http-persistent","requirements":">= 0"}]},"built_at":"2013-08-10T15:00:00.000Z","created_at":"2013-08-11T14:41:33.347Z","description":"Splunk output plugin for Fluent event collector. This plugin supports Splunk REST API and Splunk Storm API.","downloads_count":7323,"number":"0.2.0","summary":"Splunk output plugin (REST API / Storm API) for Fluent event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-splunkapi-ssln","downloads":2563,"version":"0.0.2","version_downloads":1455,"platform":"ruby","authors":"Kristian Brimble","info":"Splunk output plugin (REST API / Storm API) for Fluentd event collector","licenses":["Apache License, Version 2.0"],"metadata":{},"sha":"5c2edc0a3f184be2f5f1e2ed25936ac3894b7403456d433dd88485e081e63a67","project_uri":"https://rubygems.org/gems/fluent-plugin-splunkapi-ssln","gem_uri":"https://rubygems.org/gems/fluent-plugin-splunkapi-ssln-0.0.2.gem","homepage_uri":"https://github.com/kbrimble/fluent-plugin-splunkapi","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-splunkapi-ssln/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"net-http-persistent","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"net-http-persistent","requirements":">= 0"}]},"built_at":"2014-05-21T00:00:00.000Z","created_at":"2014-05-21T13:36:58.753Z","description":"Splunk output plugin (REST API / Storm API) for Fluentd event collector","downloads_count":1455,"number":"0.0.2","summary":"Splunk output plugin (REST API / Storm API) for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-splunk-ex","downloads":6638,"version":"1.0.2","version_downloads":4537,"platform":"ruby","authors":"Trevor Gattis","info":"Splunk output plugin for Fluent event collector. It supports reconnecting on socket failure as well as exporting the data as json or in key/value pairs","licenses":["APLv2"],"metadata":{},"sha":"41810b71cc9e6dd289b1056ece5300396c1ea2c1604ccb717141a70dae2873b0","project_uri":"https://rubygems.org/gems/fluent-plugin-splunk-ex","gem_uri":"https://rubygems.org/gems/fluent-plugin-splunk-ex-1.0.2.gem","homepage_uri":"https://github.com/gtrevg/fluent-plugin-splunk-ex","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-splunk-ex/1.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.17"},{"name":"json","requirements":">= 0"}]},"built_at":"2014-04-15T00:00:00.000Z","created_at":"2014-04-15T00:38:43.941Z","description":"Splunk output plugin for Fluent event collector. It supports reconnecting on socket failure as well as exporting the data as json or in key/value pairs","downloads_count":4537,"number":"1.0.2","summary":"Splunk output plugin for Fluent event collector. It supports reconnecting on socket failure as well as exporting the data as json or in key/value pairs","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-splunkhec","downloads":710,"version":"1.0.1","version_downloads":481,"platform":"ruby","authors":"Coen Meerbeek","info":"Output plugin for the Splunk HTTP Event Collector.","licenses":["MIT"],"metadata":{},"sha":"fd8c839ba1834639c620a0d9f127828496c0755b3853e8ee1213b31be680f2eb","project_uri":"https://rubygems.org/gems/fluent-plugin-splunkhec","gem_uri":"https://rubygems.org/gems/fluent-plugin-splunkhec-1.0.1.gem","homepage_uri":"https://github.com/cmeerbeek/fluent-plugin-splunkhec","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-splunkhec/1.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2, ~> 0.9"},{"name":"test-unit","requirements":">= 3.1.0, ~> 3.1"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.58"},{"name":"json","requirements":">= 2.0.2, ~> 2.0"}]},"built_at":"2017-02-16T00:00:00.000Z","created_at":"2017-02-16T11:27:25.855Z","description":"Output plugin for the Splunk HTTP Event Collector.","downloads_count":481,"number":"1.0.1","summary":"This plugin allows you to sent events to the Splunk HTTP Event Collector.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-splunk-http-eventcollector","downloads":1955,"version":"0.2.0","version_downloads":317,"platform":"ruby","authors":"Bryce Chidester","info":"Splunk output plugin (HTTP Event Collector) for Fluentd event collector","licenses":["BSD-2-Clause"],"metadata":{},"sha":"d351aeefc157fa62f24549b17286fd67ee2660f5757cc31f8f27b6e538e9a49a","project_uri":"https://rubygems.org/gems/fluent-plugin-splunk-http-eventcollector","gem_uri":"https://rubygems.org/gems/fluent-plugin-splunk-http-eventcollector-0.2.0.gem","homepage_uri":"https://github.com/brycied00d/fluent-plugin-splunk-http-eventcollector","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-splunk-http-eventcollector/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":"~> 3.1"},{"name":"webmock","requirements":">= 2.3.2, ~> 2.3"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12.12"},{"name":"net-http-persistent","requirements":"~> 2.9"}]},"built_at":"2017-04-20T00:00:00.000Z","created_at":"2017-04-20T17:13:04.575Z","description":"Splunk output plugin (HTTP Event Collector) for Fluentd event collector","downloads_count":317,"number":"0.2.0","summary":"Splunk output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sql","downloads":11482,"version":"0.6.0","version_downloads":444,"platform":"ruby","authors":"Sadayuki Furuhashi","info":"SQL input/output plugin for Fluentd event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"1940d88081bf2bd66e99f221f4298276904823032be2b7d9ba19f6e8b2682f2d","project_uri":"https://rubygems.org/gems/fluent-plugin-sql","gem_uri":"https://rubygems.org/gems/fluent-plugin-sql-0.6.0.gem","homepage_uri":"https://github.com/frsyuki/fluent-plugin-sql","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sql/0.6.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pg","requirements":">= 0"},{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":"~> 3.1.0"},{"name":"test-unit-notify","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"activerecord","requirements":"~> 4.2"},{"name":"activerecord-import","requirements":"~> 0.7"},{"name":"fluentd","requirements":"< 2, >= 0.12.17"}]},"built_at":"2017-04-04T00:00:00.000Z","created_at":"2017-04-04T08:30:47.615Z","description":"SQL input/output plugin for Fluentd event collector","downloads_count":444,"number":"0.6.0","summary":"SQL input/output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sql-enchanced","downloads":551,"version":"0.5.5","version_downloads":214,"platform":"ruby","authors":"Sadayuki Furuhashi","info":"SQL input/output plugin for Fluentd event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"f05b51af1f9dfc30388c679a85cbe4bce3992688e904a836853ea1c0779d75c5","project_uri":"https://rubygems.org/gems/fluent-plugin-sql-enchanced","gem_uri":"https://rubygems.org/gems/fluent-plugin-sql-enchanced-0.5.5.gem","homepage_uri":"https://github.com/zhron4x/fluent-plugin-sql-enchanced","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sql-enchanced/0.5.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pg","requirements":">= 0"},{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":"~> 3.1.0"},{"name":"test-unit-notify","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"activerecord","requirements":"~> 4.2"},{"name":"activerecord-import","requirements":"~> 0.7"},{"name":"fluentd","requirements":"< 2, >= 0.12.7"}]},"built_at":"2017-04-07T00:00:00.000Z","created_at":"2017-04-07T14:31:10.851Z","description":"SQL input/output plugin for Fluentd event collector","downloads_count":214,"number":"0.5.5","summary":"SQL input/output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sql_fingerprint","downloads":984,"version":"0.0.1","version_downloads":984,"platform":"ruby","authors":"Takahiro Kikumoto","info":"A Fluent filter plugin to convert sql to sql's fingerprint","licenses":["MIT"],"metadata":{},"sha":"a767e189e77b5fe78888bb702bf00ca4d25d50f54ab4ec1b052b932ec9d5ef19","project_uri":"https://rubygems.org/gems/fluent-plugin-sql_fingerprint","gem_uri":"https://rubygems.org/gems/fluent-plugin-sql_fingerprint-0.0.1.gem","homepage_uri":"https://github.com/kikumoto/fluent-plugin-sql_fingerprint","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sql_fingerprint/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12"}]},"built_at":"2015-11-27T00:00:00.000Z","created_at":"2015-11-27T18:45:58.521Z","description":"A Fluent filter plugin to convert sql to sql's fingerprint","downloads_count":984,"number":"0.0.1","summary":"A Fluent filter plugin to convert sql to sql's fingerprint","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sqlite3","downloads":5180,"version":"0.1.2","version_downloads":564,"platform":"ruby","authors":"Tomotaka Sakuma","info":"fluentd output to sqlite3","licenses":[],"metadata":{},"sha":"b0d6c108801ca43b38d684cde3f264a6869a04571afd47a8a070580a235594cf","project_uri":"https://rubygems.org/gems/fluent-plugin-sqlite3","gem_uri":"https://rubygems.org/gems/fluent-plugin-sqlite3-0.1.2.gem","homepage_uri":"https://github.com/tmtk75/fluent-plugin-sqlite3.git","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sqlite3/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"sqlite3","requirements":">= 0"}]},"built_at":"2016-09-22T00:00:00.000Z","created_at":"2016-09-22T01:49:00.263Z","description":"fluentd output to sqlite3","downloads_count":564,"number":"0.1.2","summary":"fluentd output to sqlite3","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sqlquery-ssh","downloads":577,"version":"0.1.11","version_downloads":357,"platform":"ruby","authors":"Niall Brown","info":"Fluentd Input plugin to execute mysql query and fetch rows. It is useful for stationary interval metrics measurement.","licenses":["Apache-2.0"],"metadata":{},"sha":"a3e003c6df9f8b864bee3fd2e0b18d140a9fa577ff587365dad46e621b863aa4","project_uri":"https://rubygems.org/gems/fluent-plugin-sqlquery-ssh","gem_uri":"https://rubygems.org/gems/fluent-plugin-sqlquery-ssh-0.1.11.gem","homepage_uri":null,"wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sqlquery-ssh/0.1.11","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 10.0.4, ~> 10.0"},{"name":"test-unit","requirements":">= 3.1.0, ~> 3.1"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.10.30"},{"name":"mysql2","requirements":"~> 0.3.11"},{"name":"net-ssh-gateway","requirements":">= 1.2.0, ~> 1.2"}]},"built_at":"2016-11-10T00:00:00.000Z","created_at":"2016-11-10T20:31:34.242Z","description":"","downloads_count":357,"number":"0.1.11","summary":"Fluentd Input plugin to execute mysql query and fetch rows. It is useful for stationary interval metrics measurement.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sqs","downloads":69903,"version":"1.8.0","version_downloads":1504,"platform":"ruby","authors":"Yuri Odagiri","info":"Amazon SQS input/output plugin for Fluent event collector","licenses":["Apache-2.0"],"metadata":{},"sha":"4a75784444b5a71f6c20250971c44cc2433736fe31feb7c1da2138cb5d8958c7","project_uri":"https://rubygems.org/gems/fluent-plugin-sqs","gem_uri":"https://rubygems.org/gems/fluent-plugin-sqs-1.8.0.gem","homepage_uri":"https://github.com/ixixi/fluent-plugin-sqs","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sqs/1.8.0","mailing_list_uri":"","source_code_uri":"https://rubygems.org/gems/fluent-plugin-sqs","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"jeweler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.0.0"}],"runtime":[{"name":"aws-sdk-v1","requirements":">= 0"},{"name":"fluentd","requirements":"< 2, >= 0.12.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2016-03-09T00:00:00.000Z","created_at":"2017-02-07T11:58:51.763Z","description":"","downloads_count":1504,"number":"1.8.0","summary":"Amazon SQS input/output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sqs-check-size","downloads":979,"version":"0.1.0","version_downloads":979,"platform":"ruby","authors":"Nao Akechi","info":"Amazon SQS input/output plugin for Fluent event collector","licenses":[],"metadata":{},"sha":"d9a0a8001b62a07125261d85bfd46f8f797267a3b07340af70f028d87b6f9a87","project_uri":"https://rubygems.org/gems/fluent-plugin-sqs-check-size","gem_uri":"https://rubygems.org/gems/fluent-plugin-sqs-check-size-0.1.0.gem","homepage_uri":"https://github.com/nakc/fluent-plugin-sqs","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sqs-check-size/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"jeweler","requirements":">= 0"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 3.0.0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 1.9.5"},{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2015-07-17T00:00:00.000Z","created_at":"2015-07-17T04:18:09.899Z","description":"","downloads_count":979,"number":"0.1.0","summary":"Amazon SQS input/output plugin for Fluent event collector","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sqs-poll","downloads":11267,"version":"0.2.0","version_downloads":224,"platform":"ruby","authors":"Richard Li","info":"fluent input plugin use aws-sdk v2 sqs poller to receive messages","licenses":["MIT"],"metadata":{},"sha":"bce926cfbdb2264186985f86d4fb3ab54ac7055385cd2084850050da0d739ca7","project_uri":"https://rubygems.org/gems/fluent-plugin-sqs-poll","gem_uri":"https://rubygems.org/gems/fluent-plugin-sqs-poll-0.2.0.gem","homepage_uri":"https://github.com/ecwws/fluent-plugin-sqs-poll","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sqs-poll/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 3.0.0"}],"runtime":[{"name":"aws-sdk","requirements":"~> 2"},{"name":"fluentd","requirements":">= 0.14.0, ~> 0.14"}]},"built_at":"2017-04-18T00:00:00.000Z","created_at":"2017-04-18T16:34:27.167Z","description":"fluent input plugin use aws-sdk v2 sqs poller to receive messages","downloads_count":224,"number":"0.2.0","summary":"fluent sqs poll input","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sstp","downloads":1499,"version":"0.0.0","version_downloads":1499,"platform":"ruby","authors":"bash0C7","info":"Fluentd output plugin to send server using Sakura Script Transfer Protocol(SSTP)","licenses":["Ruby's"],"metadata":{},"sha":"d2b0911cb6418a2cbc1302fbd08b24d33297c3f7559407a8fa438f9ba43046c4","project_uri":"https://rubygems.org/gems/fluent-plugin-sstp","gem_uri":"https://rubygems.org/gems/fluent-plugin-sstp-0.0.0.gem","homepage_uri":"https://github.com/bash0C7/fluent-plugin-sstp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sstp/0.0.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"pry","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rr","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-01-26T00:00:00.000Z","created_at":"2014-01-26T06:38:59.894Z","description":"Fluentd output plugin to send server using Sakura Script Transfer Protocol(SSTP)","downloads_count":1499,"number":"0.0.0","summary":"Fluentd output plugin to send server using Sakura Script Transfer Protocol(SSTP)","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-stackdriver-monitoring","downloads":937,"version":"0.0.4","version_downloads":196,"platform":"ruby","authors":"Yoshihiro MIYAI","info":"Stackdriver Monitoring custom metrics output plugin for Fluentd","licenses":["MIT"],"metadata":{},"sha":"abd258ea1bd71d4f12c61ab35874b5f9513e122f4ca2b5c4b0d569d92058a065","project_uri":"https://rubygems.org/gems/fluent-plugin-stackdriver-monitoring","gem_uri":"https://rubygems.org/gems/fluent-plugin-stackdriver-monitoring-0.0.4.gem","homepage_uri":"https://github.com/mia-0032/fluent-plugin-stackdriver-monitoring","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-stackdriver-monitoring/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.12.0"},{"name":"google-cloud-monitoring","requirements":"~> 0.24.0"}]},"built_at":"2017-04-17T00:00:00.000Z","created_at":"2017-04-17T08:43:11.523Z","description":"Stackdriver Monitoring custom metrics output plugin for Fluentd","downloads_count":196,"number":"0.0.4","summary":"Stackdriver Monitoring custom metrics output plugin for Fluentd","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-stackdriver-v1-metrics","downloads":265,"version":"0.4.0","version_downloads":259,"platform":"ruby","authors":"Alex Yamauchi","info":"A Fluentd buffered output plugin to send metrics to StackDriver using the V1 (pre-Google) API.","licenses":["Apache-2.0"],"metadata":{},"sha":"8b8d5ece705447e253a03238217571258ba1b1b5d1321d874a43117d116e429a","project_uri":"https://rubygems.org/gems/fluent-plugin-stackdriver-v1-metrics","gem_uri":"https://rubygems.org/gems/fluent-plugin-stackdriver-v1-metrics-0.4.0.gem","homepage_uri":"https://github.com/bodhi-space/fluent-plugin-stackdriver-v1-metrics","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-stackdriver-v1-metrics/0.4.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0.10.0"},{"name":"stackdriver","requirements":"< 0.3.0"}]},"built_at":"2017-02-25T00:00:00.000Z","created_at":"2017-02-25T01:04:45.602Z","description":"A Fluentd buffered output plugin to send metrics to StackDriver using the V1 (pre-Google) API.","downloads_count":259,"number":"0.4.0","summary":"A Fluentd buffered output plugin to send metrics to StackDriver using the V1 (pre-Google) API","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-stathat","downloads":1852,"version":"0.0.1","version_downloads":1852,"platform":"ruby","authors":"f440","info":"StatHat output plugin for Fluentd.","licenses":["MIT"],"metadata":{},"sha":"e73d7039d724a70b2549a04faef32be91eb7b36a5ede9fe703ba473215c2d8dd","project_uri":"https://rubygems.org/gems/fluent-plugin-stathat","gem_uri":"https://rubygems.org/gems/fluent-plugin-stathat-0.0.1.gem","homepage_uri":"https://github.com/f440/fluent-plugin-stathat/","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-stathat/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2013-03-17T00:00:00.000Z","created_at":"2013-03-17T04:19:56.619Z","description":"StatHat output plugin for Fluentd.","downloads_count":1852,"number":"0.0.1","summary":"StatHat output plugin for Fluentd.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-stats","downloads":11218,"version":"0.3.6","version_downloads":2928,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to calculate statistics such as sum, max, min, avg","licenses":["MIT"],"metadata":{},"sha":"56bcfe12c66a5a9f899d3c4bf016b358a4ae9e4f49ebf616717ca4a7abe3bd85","project_uri":"https://rubygems.org/gems/fluent-plugin-stats","gem_uri":"https://rubygems.org/gems/fluent-plugin-stats-0.3.6.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-stats","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-stats/0.3.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"rspec-its","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-12-03T00:00:00.000Z","created_at":"2014-12-03T11:58:04.929Z","description":"Fluentd plugin to calculate statistics such as sum, max, min, avg","downloads_count":2928,"number":"0.3.6","summary":"Fluentd plugin to calculate statistics such as sum, max, min, avg","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-statsd","downloads":109908,"version":"1.0.3","version_downloads":105603,"platform":"ruby","authors":"Chris Song","info":"fluentd output plugin to send metrics to Esty StatsD monitor","licenses":[],"metadata":{},"sha":"c15834557411a64aae4e6220a7aeeaab9e04fbb0b7413b8675d744ee7e409d00","project_uri":"https://rubygems.org/gems/fluent-plugin-statsd","gem_uri":"https://rubygems.org/gems/fluent-plugin-statsd-1.0.3.gem","homepage_uri":"https://github.com/fakechris/fluent-plugin-statsd","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-statsd/1.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"statsd-ruby","requirements":">= 1.2.1"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.8"}]},"built_at":"2014-06-25T00:00:00.000Z","created_at":"2014-06-25T01:01:33.347Z","description":"fluentd output plugin to send metrics to Esty StatsD monitor","downloads_count":105603,"number":"1.0.3","summary":"fluentd output plugin to send metrics to Esty StatsD monitor","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-statsd_event","downloads":469,"version":"0.1.0","version_downloads":469,"platform":"ruby","authors":"Atlassian","info":"fluentd plugin for statsd event","licenses":[],"metadata":{},"sha":"7c5128703c32a5f066e53dad6eabca56c25f193a3a810a39d6f85686d8be020d","project_uri":"https://rubygems.org/gems/fluent-plugin-statsd_event","gem_uri":"https://rubygems.org/gems/fluent-plugin-statsd_event-0.1.0.gem","homepage_uri":"https://github.com/atlassian/fluent-plugin-statsd_event","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-statsd_event/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"mocha","requirements":"~> 1.1.0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.2.0"}],"runtime":[{"name":"dogstatsd-ruby","requirements":"~> 1.6.0"},{"name":"fluentd","requirements":">= 0.12.0"}]},"built_at":"2016-07-14T00:00:00.000Z","created_at":"2016-07-14T05:53:58.310Z","description":"fluentd plugin for statsd event","downloads_count":469,"number":"0.1.0","summary":"fluentd plugin for statsd event","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-statsd-event","downloads":1095,"version":"0.1.1","version_downloads":769,"platform":"ruby","authors":"Atlassian","info":"fluentd plugin for statsd event","licenses":[],"metadata":{},"sha":"2f7f2218957b16590fd1bbd08eeaaba9fcaa0b2c64e2c6f3ee086722ca67fd89","project_uri":"https://rubygems.org/gems/fluent-plugin-statsd-event","gem_uri":"https://rubygems.org/gems/fluent-plugin-statsd-event-0.1.1.gem","homepage_uri":"https://github.com/atlassian/fluent-plugin-statsd_event","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-statsd-event/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.9"},{"name":"mocha","requirements":"~> 1.1.0"},{"name":"rake","requirements":"~> 10.0"},{"name":"test-unit","requirements":"~> 3.2.0"}],"runtime":[{"name":"dogstatsd-ruby","requirements":"~> 1.6.0"},{"name":"fluentd","requirements":">= 0.12.0"}]},"built_at":"2016-07-18T00:00:00.000Z","created_at":"2016-07-18T02:56:31.216Z","description":"fluentd plugin for statsd event","downloads_count":769,"number":"0.1.1","summary":"fluentd plugin for statsd event","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-statsd-output","downloads":1001,"version":"1.1.1","version_downloads":698,"platform":"ruby","authors":"Chris Song","info":"fluentd output filter plugin to send metrics to Esty StatsD","licenses":[],"metadata":{},"sha":"b20760f701e5301090649b8f70beb256002c7589708a9aa0e790271d7f1e83dd","project_uri":"https://rubygems.org/gems/fluent-plugin-statsd-output","gem_uri":"https://rubygems.org/gems/fluent-plugin-statsd-output-1.1.1.gem","homepage_uri":"https://github.com/lingochamp/fluent-plugin-statsd","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-statsd-output/1.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"rspec","requirements":"~> 3.0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.8"},{"name":"statsd-ruby","requirements":"~> 1.3.0"}]},"built_at":"2016-07-13T00:00:00.000Z","created_at":"2016-07-13T03:56:26.617Z","description":"fluentd output filter plugin to send metrics to Esty StatsD","downloads_count":698,"number":"1.1.1","summary":"fluentd output filter plugin to send metrics to Esty StatsD","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-statsite","downloads":4336,"version":"0.0.7","version_downloads":1371,"platform":"ruby","authors":"OKUNO Akihiro","info":"Fluentd plugin which caluculate statistics using statsite","licenses":["Apache-2.0"],"metadata":{},"sha":"b66b53d5aa54e73ba608d5e5575ba50d51f13df7c093cc399502bfc1b1af6f3b","project_uri":"https://rubygems.org/gems/fluent-plugin-statsite","gem_uri":"https://rubygems.org/gems/fluent-plugin-statsite-0.0.7.gem","homepage_uri":"https://github.com/choplin/fluent-plugin-statsite","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-statsite/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-08-15T00:00:00.000Z","created_at":"2014-08-15T05:51:57.853Z","description":"Fluentd plugin which caluculate statistics using statsite","downloads_count":1371,"number":"0.0.7","summary":"Fluentd statsite plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-stats-notifier","downloads":4967,"version":"0.0.4","version_downloads":1473,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd plugin to calculate statistics and then thresholding","licenses":["MIT"],"metadata":{},"sha":"71557e05fb2bb64bdd4a27337a8a7799f87611031a9fd138e20eec7e0241970e","project_uri":"https://rubygems.org/gems/fluent-plugin-stats-notifier","gem_uri":"https://rubygems.org/gems/fluent-plugin-stats-notifier-0.0.4.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-stats-notifier","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-stats-notifier/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-04-12T00:00:00.000Z","created_at":"2014-04-12T08:55:32.489Z","description":"Fluentd plugin to calculate statistics and then thresholding","downloads_count":1473,"number":"0.0.4","summary":"Fluentd plugin to calculate statistics and then thresholding","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-std-formatter","downloads":858,"version":"0.0.5","version_downloads":269,"platform":"ruby","authors":"Alexey Panaetov","info":"This rubygem does not have a description or summary.","licenses":["MIT"],"metadata":{},"sha":"2e355c73a4d92040674dab0ef15611ec530100697b191dffdb96aea1b3a20efd","project_uri":"https://rubygems.org/gems/fluent-plugin-std-formatter","gem_uri":"https://rubygems.org/gems/fluent-plugin-std-formatter-0.0.5.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-std-formatter/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-03-17T00:00:00.000Z","created_at":"2017-03-17T12:22:05.074Z","description":"","downloads_count":269,"number":"0.0.5","summary":"","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-stdin","downloads":2890,"version":"0.1.2","version_downloads":215,"platform":"ruby","authors":"Masahiro Nakagawa","info":"Fluentd plugin for reading events from stdin","licenses":["MIT"],"metadata":{},"sha":"de95a9c3f2c32f6a3b42eeb3ac7f60509b3216469744dd2ef54afc1a15a35638","project_uri":"https://rubygems.org/gems/fluent-plugin-stdin","gem_uri":"https://rubygems.org/gems/fluent-plugin-stdin-0.1.2.gem","homepage_uri":"https://github.com/repeatedly/fluent-plugin-stdin","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-stdin/0.1.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":"~> 3.0.2"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.17"}]},"built_at":"2017-04-13T00:00:00.000Z","created_at":"2017-04-13T01:06:48.730Z","description":"Fluentd plugin for reading events from stdin","downloads_count":215,"number":"0.1.2","summary":"Fluentd plugin for reading events from stdin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-stdout_ex","downloads":1612,"version":"0.0.1","version_downloads":1612,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd out_stdout extension","licenses":["MIT"],"metadata":{},"sha":"b4941f9ac7b2b65a25c75f522768ea5360ddc939486d9fc6f13ba8ada3dde79a","project_uri":"https://rubygems.org/gems/fluent-plugin-stdout_ex","gem_uri":"https://rubygems.org/gems/fluent-plugin-stdout_ex-0.0.1.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-stdout_ex","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-stdout_ex/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-05-01T00:00:00.000Z","created_at":"2014-05-01T17:12:47.107Z","description":"Fluentd out_stdout extension","downloads_count":1612,"number":"0.0.1","summary":"Fluentd out_stdout extension","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-stdout-pp","downloads":7150,"version":"0.1.0","version_downloads":4079,"platform":"ruby","authors":"Masahiro Sano","info":"A fluentd plugin to pretty print json with color to stdout","licenses":["MIT"],"metadata":{},"sha":"4e1b5e9ce4a11bc38d2d81a0d859813c6757938d85b2b93c560ca32e2ab21c30","project_uri":"https://rubygems.org/gems/fluent-plugin-stdout-pp","gem_uri":"https://rubygems.org/gems/fluent-plugin-stdout-pp-0.1.0.gem","homepage_uri":"https://github.com/sabottenda/fluent-plugin-stdout-pp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-stdout-pp/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"coderay","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"}]},"built_at":"2015-01-10T00:00:00.000Z","created_at":"2015-01-10T12:15:50.335Z","description":"A fluentd plugin to pretty print json with color to stdout","downloads_count":4079,"number":"0.1.0","summary":"A fluentd plugin to pretty print json with color to stdout","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-storage-leveldb","downloads":383,"version":"0.0.2","version_downloads":186,"platform":"ruby","authors":"Hiroshi Hatake","info":"Fluentd storage plugin for LevelDB.","licenses":["MIT"],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"03f2ac43c5d194e7a83628a050ab28d3e912d33ce48845c8fb00398c5b5fcebe","project_uri":"https://rubygems.org/gems/fluent-plugin-storage-leveldb","gem_uri":"https://rubygems.org/gems/fluent-plugin-storage-leveldb-0.0.2.gem","homepage_uri":"https://github.com/cosmo0920/fluent-plugin-storage-leveldb","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-storage-leveldb/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.14"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":"~> 3.2.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.12"},{"name":"leveldb","requirements":"~> 0.1.9"}]},"built_at":"2017-04-20T00:00:00.000Z","created_at":"2017-04-20T08:26:24.571Z","description":"Fluentd storage plugin for LevelDB.","downloads_count":186,"number":"0.0.2","summary":"Fluentd storage plugin for LevelDB.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-storage-memcached","downloads":1021,"version":"0.1.1","version_downloads":186,"platform":"ruby","authors":"Hiroshi Hatake","info":"Fluentd storage plugin for Memcached.","licenses":["MIT"],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"393b770a890f18817b0357a2ea5972551e70101d8de7f6ad7e3ff568fd387ed3","project_uri":"https://rubygems.org/gems/fluent-plugin-storage-memcached","gem_uri":"https://rubygems.org/gems/fluent-plugin-storage-memcached-0.1.1.gem","homepage_uri":"https://github.com/cosmo0920/fluent-plugin-storage-memcached","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-storage-memcached/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":"~> 3.2.0"}],"runtime":[{"name":"dalli","requirements":"~> 2.7.0"},{"name":"fluentd","requirements":"< 2, >= 0.14.12"}]},"built_at":"2017-04-20T00:00:00.000Z","created_at":"2017-04-20T08:18:42.313Z","description":"Fluentd storage plugin for Memcached.","downloads_count":186,"number":"0.1.1","summary":"Fluentd storage plugin for Memcached.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-storage-mongo","downloads":1070,"version":"0.0.5","version_downloads":186,"platform":"ruby","authors":"Hiroshi Hatake","info":"Fluentd storage plugin for MongoDB.","licenses":["MIT"],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"7b302024b364eec8d5c39cabc182fa0db6fef97bb5c11796f5e9f68fe3c23936","project_uri":"https://rubygems.org/gems/fluent-plugin-storage-mongo","gem_uri":"https://rubygems.org/gems/fluent-plugin-storage-mongo-0.0.5.gem","homepage_uri":"https://github.com/cosmo0920/fluent-plugin-storage-mongo","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-storage-mongo/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":"~> 3.2.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.12"},{"name":"mongo","requirements":"~> 2.4.0"}]},"built_at":"2017-04-20T00:00:00.000Z","created_at":"2017-04-20T08:04:10.188Z","description":"Fluentd storage plugin for MongoDB.","downloads_count":186,"number":"0.0.5","summary":"Fluentd storage plugin for MongoDB.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-storage-redis","downloads":1062,"version":"0.0.5","version_downloads":186,"platform":"ruby","authors":"Hiroshi Hatake","info":"Fluentd storage plugin for Redis","licenses":["MIT"],"metadata":{"allowed_push_host":"https://rubygems.org"},"sha":"27fd2c8e00b981c1be5ed4fd45ed180cf951d15b86961025a58a47a9c80b185d","project_uri":"https://rubygems.org/gems/fluent-plugin-storage-redis","gem_uri":"https://rubygems.org/gems/fluent-plugin-storage-redis-0.0.5.gem","homepage_uri":"https://github.com/cosmo0920/fluent-plugin-storage-redis","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-storage-redis/0.0.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.13"},{"name":"rake","requirements":"~> 12.0"},{"name":"test-unit","requirements":"~> 3.2.0"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.12"},{"name":"redis","requirements":"~> 3.3.0"}]},"built_at":"2017-04-20T00:00:00.000Z","created_at":"2017-04-20T08:10:55.581Z","description":"Fluentd storage plugin for Redis","downloads_count":186,"number":"0.0.5","summary":"Fluentd storage plugin for Redis","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-storm","downloads":1576,"version":"0.0.2","version_downloads":955,"platform":"ruby","authors":"Hidenori Suzuki","info":"storm stats input plugin","licenses":["MIT"],"metadata":{},"sha":"fb6d0dc420e47791ce6398b71da7ed989739d3ed4449446b8d1efc2671490046","project_uri":"https://rubygems.org/gems/fluent-plugin-storm","gem_uri":"https://rubygems.org/gems/fluent-plugin-storm-0.0.2.gem","homepage_uri":"https://github.com/niyonmaruz/fluent-plugin-storm","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-storm/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.7"},{"name":"rake","requirements":"~> 10.0"},{"name":"rspec","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"}]},"built_at":"2015-08-30T00:00:00.000Z","created_at":"2015-08-30T14:59:26.836Z","description":"storm stats input plugin","downloads_count":955,"number":"0.0.2","summary":"a fluent plugin","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-straight-file","downloads":565,"version":"0.0.6","version_downloads":247,"platform":"ruby","authors":"Alexey Panaetov","info":"This rubygem does not have a description or summary.","licenses":["MIT"],"metadata":{},"sha":"8c515e40233ce7a34f7b294d1d066b6ccd52981f9bee8509c7600b9e1e10ad55","project_uri":"https://rubygems.org/gems/fluent-plugin-straight-file","gem_uri":"https://rubygems.org/gems/fluent-plugin-straight-file-0.0.6.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-straight-file/0.0.6","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-03-17T00:00:00.000Z","created_at":"2017-03-17T15:15:52.746Z","description":"","downloads_count":247,"number":"0.0.6","summary":"","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-string-scrub","downloads":3696,"version":"0.1.0","version_downloads":1298,"platform":"ruby","authors":"Noriaki Katayama","info":"fluent plugin for string scrub.","licenses":["MIT"],"metadata":{},"sha":"117e04fa4a5b97ff11ae2b2159c0af0f6bca4c0109ae1821fe674fff5a3511d2","project_uri":"https://rubygems.org/gems/fluent-plugin-string-scrub","gem_uri":"https://rubygems.org/gems/fluent-plugin-string-scrub-0.1.0.gem","homepage_uri":"https://github.com/kataring/fluent-plugin-string-scrub","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-string-scrub/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[]},"built_at":"2015-05-22T00:00:00.000Z","created_at":"2015-05-22T05:52:19.755Z","description":"fluent plugin for string scrub.","downloads_count":1298,"number":"0.1.0","summary":"Fluentd Output filter plugin.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sumologic","downloads":3797,"version":"0.0.2","version_downloads":1461,"platform":"ruby","authors":"memorycraft","info":"fluent plugin for sumologic","licenses":["MIT"],"metadata":{},"sha":"cdd637d9763fbf910a302877dbfb4b3e7df238519ba1b70b53777e26c5effecf","project_uri":"https://rubygems.org/gems/fluent-plugin-sumologic","gem_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-0.0.2.gem","homepage_uri":"https://github.com/memorycraft/fluent-plugin-sumologic","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sumologic/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-02-13T00:00:00.000Z","created_at":"2016-02-13T00:08:08.754Z","description":"fluent plugin for sumologic","downloads_count":1461,"number":"0.0.2","summary":"sumologic is log management system. this plugin is fluent output plugin send to sumologic","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sumologic-2","downloads":1363,"version":"0.1.0","version_downloads":638,"platform":"ruby","authors":"memorycraft, adambom","info":"fluent plugin for sumologic","licenses":["MIT"],"metadata":{},"sha":"adc2bb4aa13d3e7ac53f7cba7b8e51829f75c44a480b4e9436f6081df4f421a4","project_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-2","gem_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-2-0.1.0.gem","homepage_uri":"https://github.com/adambom/fluent-plugin-sumologic","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sumologic-2/0.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-10-27T00:00:00.000Z","created_at":"2016-10-27T17:25:15.693Z","description":"fluent plugin for sumologic","downloads_count":638,"number":"0.1.0","summary":"sumologic is log management system. this plugin is fluent output plugin send to sumologic","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sumologic-carsonoid","downloads":1764,"version":"0.0.3","version_downloads":1764,"platform":"ruby","authors":"memorycraft, carsonoid","info":"fluent plugin for sumologic","licenses":["MIT"],"metadata":{},"sha":"b54d26e22c28fa4cf5e1e743307d53b756b126678068cc7e10946f12af3aee24","project_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-carsonoid","gem_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-carsonoid-0.0.3.gem","homepage_uri":"https://github.com/carsonoid/fluent-plugin-sumologic","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sumologic-carsonoid/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-03-02T00:00:00.000Z","created_at":"2016-03-02T22:46:42.202Z","description":"fluent plugin for sumologic","downloads_count":1764,"number":"0.0.3","summary":"sumologic is log management system. this plugin is fluent output plugin send to sumologic","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sumologic-caugustus","downloads":631,"version":"0.0.3","version_downloads":314,"platform":"ruby","authors":"memorycraft","info":"fluent plugin for sumologic","licenses":["MIT"],"metadata":{},"sha":"9c76b8f3a6e2fa6be7020f264928e87f57741f2d5aff4852f13b8dde0525322d","project_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-caugustus","gem_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-caugustus-0.0.3.gem","homepage_uri":"https://github.com/caugustus/fluent-plugin-sumologic","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sumologic-caugustus/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2017-01-16T00:00:00.000Z","created_at":"2017-01-16T14:01:13.219Z","description":"fluent plugin for sumologic","downloads_count":314,"number":"0.0.3","summary":"sumologic is log management system. this plugin is fluent output plugin send to sumologic. Forked from mfowlewebs/fluent-plugin-sumologic","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sumologic-cloud-syslog","downloads":20762,"version":"0.1.7","version_downloads":18824,"platform":"ruby","authors":"Acquia Engineering","info":"Sumologic Cloud Syslog output plugin for Fluent event collector","licenses":["Apache v2"],"metadata":{},"sha":"2f86a5c3f9d1e5ccdfc05c949725f1afda018243133d3bdbe928d2c5a8698aab","project_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-cloud-syslog","gem_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-cloud-syslog-0.1.7.gem","homepage_uri":"https://github.com/acquia/fluent-plugin-sumologic-cloud-syslog","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sumologic-cloud-syslog/0.1.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":"~> 5.8"},{"name":"minitest-stub_any_instance","requirements":"~> 1.0.0"},{"name":"rake","requirements":"~> 10.5"},{"name":"simplecov","requirements":"~> 0.11"},{"name":"test-unit","requirements":"~> 3.1"},{"name":"webmock","requirements":"~> 2.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.12"},{"name":"fluent-mixin-config-placeholders","requirements":"~> 0.3"},{"name":"fluent-mixin-plaintextformatter","requirements":"~> 0.2"}]},"built_at":"2016-05-17T00:00:00.000Z","created_at":"2016-05-17T08:13:01.864Z","description":"Sumologic Cloud Syslog output plugin for Fluent event collector","downloads_count":18824,"number":"0.1.7","summary":"Fluent Sumologic Cloud Syslog plugin","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sumologic-mattk42","downloads":1819,"version":"0.0.4","version_downloads":1092,"platform":"ruby","authors":"mattk42","info":"fluent plugin for sumologic","licenses":["MIT"],"metadata":{},"sha":"25498bf8d8480b741656fb3db9e5f8e858de17517b74137010359178c5b2a5e4","project_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-mattk42","gem_uri":"https://rubygems.org/gems/fluent-plugin-sumologic-mattk42-0.0.4.gem","homepage_uri":"https://github.com/mattk42/fluent-plugin-sumologic","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sumologic-mattk42/0.0.4","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-07-08T00:00:00.000Z","created_at":"2016-07-08T16:12:16.833Z","description":"fluent plugin for sumologic","downloads_count":1092,"number":"0.0.4","summary":"sumologic is log management system. this plugin is fluent output plugin send to sumologic","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-sumologic_output","downloads":1548,"version":"0.0.3","version_downloads":1548,"platform":"ruby","authors":"Steven Adams","info":"Output plugin to SumoLogic HTTP Endpoint","licenses":["Apache-2.0"],"metadata":{},"sha":"71a820f1c17e078402d0e1652f3d258676de7efcea4b3709bd0f4917da5fbca2","project_uri":"https://rubygems.org/gems/fluent-plugin-sumologic_output","gem_uri":"https://rubygems.org/gems/fluent-plugin-sumologic_output-0.0.3.gem","homepage_uri":"https://github.com/SumoLogic/fluentd-output-sumologic","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-sumologic_output/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-12-10T00:00:00.000Z","created_at":"2016-12-10T23:41:01.241Z","description":"Output plugin to SumoLogic HTTP Endpoint","downloads_count":1548,"number":"0.0.3","summary":"Output plugin to SumoLogic HTTP Endpoint","rubygems_version":">= 0","ruby_version":">= 2.0.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-suppress","downloads":17017,"version":"0.0.7","version_downloads":1390,"platform":"ruby","authors":"FUJIWARA Shunichiro","info":"Fluentd plugin to suppress same messages","licenses":["Apache-2.0"],"metadata":{},"sha":"092c0f8d62cbe16742133d247d5710a9a72b5122b16b45e6d8ac919d58ddcf45","project_uri":"https://rubygems.org/gems/fluent-plugin-suppress","gem_uri":"https://rubygems.org/gems/fluent-plugin-suppress-0.0.7.gem","homepage_uri":"https://github.com/fujiwara/fluent-plugin-suppress","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-suppress/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit","requirements":">= 3.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.0"}]},"built_at":"2016-11-17T00:00:00.000Z","created_at":"2016-11-17T10:00:02.331Z","description":"Fluentd plugin to suppress same messages","downloads_count":1390,"number":"0.0.7","summary":"Fluentd plugin to suppress same messages","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-swift","downloads":2018,"version":"0.0.2","version_downloads":2013,"platform":"ruby","authors":"yuuzi41","info":"OpenStack Storage Service (Swift) output plugin for Fluentd event collector","licenses":[],"metadata":{},"sha":"c718a897a6d6a175e3a6acccebe488efb547e2e96a0706d77392c67bab038c61","project_uri":"https://rubygems.org/gems/fluent-plugin-swift","gem_uri":"https://rubygems.org/gems/fluent-plugin-swift-0.0.2.gem","homepage_uri":"https://github.com/yuuzi41/fluent-plugin-swift","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-swift/0.0.2","mailing_list_uri":"","source_code_uri":"https://github.com/yuuzi41/fluent-plugin-swift","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 1.2.0"},{"name":"rake","requirements":">= 0.9.2"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10.0"},{"name":"fluent-mixin-config-placeholders","requirements":"~> 0.2.0"},{"name":"fog","requirements":"~> 1.15.0"},{"name":"yajl-ruby","requirements":"~> 1.0"}]},"built_at":"2013-09-21T00:00:00.000Z","created_at":"2013-09-21T12:54:14.795Z","description":"OpenStack Storage Service (Swift) output plugin for Fluentd event collector","downloads_count":2013,"number":"0.0.2","summary":"OpenStack Storage Service (Swift) output plugin for Fluentd event collector","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-swift-sweep","downloads":226,"version":"0.0.1","version_downloads":226,"platform":"ruby","authors":"Deepak Arumugham","info":"Fluentd plugin to move files to swift container","licenses":["MIT"],"metadata":{},"sha":"2b28ddbfb2215b89400f8d24c93ae9307bd8ddf44c955e4650badaaec52fa5c6","project_uri":"https://rubygems.org/gems/fluent-plugin-swift-sweep","gem_uri":"https://rubygems.org/gems/fluent-plugin-swift-sweep-0.0.1.gem","homepage_uri":"https://github.com/deepakarumugham/fluent-plugin-swift-sweep","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-swift-sweep/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"fluentd","requirements":"~> 0.12.0"},{"name":"fog","requirements":"~> 1.15.0"}]},"built_at":"2017-03-29T00:00:00.000Z","created_at":"2017-03-29T17:08:18.906Z","description":"Fluentd plugin to move files to swift container","downloads_count":226,"number":"0.0.1","summary":"Fluentd plugin to move files to swift container","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-syslog-tls","downloads":915,"version":"1.1.0","version_downloads":393,"platform":"ruby","authors":"thomas morgan","info":"Syslog TLS output plugin with formatting support, for Fluentd","licenses":["Apache v2"],"metadata":{},"sha":"bb1b9f231f5a209aff8cb74d3db173b27c252558528deec7c4841ed6c4d1ece0","project_uri":"https://rubygems.org/gems/fluent-plugin-syslog-tls","gem_uri":"https://rubygems.org/gems/fluent-plugin-syslog-tls-1.1.0.gem","homepage_uri":"https://github.com/zarqman/fluent-plugin-syslog-tls","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-syslog-tls/1.1.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"minitest","requirements":"~> 5.8"},{"name":"minitest-stub_any_instance","requirements":"~> 1.0.0"},{"name":"rake","requirements":"~> 10.5"},{"name":"simplecov","requirements":"~> 0.11"},{"name":"test-unit","requirements":"~> 3.1"},{"name":"webmock","requirements":"~> 2.0"}],"runtime":[{"name":"fluentd","requirements":"~> 0.14.0"},{"name":"fluent-mixin-config-placeholders","requirements":"~> 0.3"}]},"built_at":"2016-11-25T00:00:00.000Z","created_at":"2016-11-29T20:56:34.958Z","description":"Syslog TLS output plugin with formatting support, for Fluentd","downloads_count":393,"number":"1.1.0","summary":"Fluent Syslog TLS output plugin","rubygems_version":">= 0","ruby_version":">= 2.3.0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-systemd","downloads":79791,"version":"0.2.0","version_downloads":6003,"platform":"ruby","authors":"Ed Robinson","info":"This is a fluentd input plugin. It reads logs from the systemd journal.","licenses":["MIT"],"metadata":{},"sha":"260497885249cf1237f91b2451c5cce00b4323f1445e8ce3bcf6ba862bf19227","project_uri":"https://rubygems.org/gems/fluent-plugin-systemd","gem_uri":"https://rubygems.org/gems/fluent-plugin-systemd-0.2.0.gem","homepage_uri":"https://github.com/reevoo/fluent-plugin-systemd","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-systemd/0.2.0","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":">= 0"},{"name":"reevoocop","requirements":">= 0"},{"name":"test-unit","requirements":"~> 2.5"}],"runtime":[{"name":"fluentd","requirements":"< 2, >= 0.14.11"},{"name":"systemd-journal","requirements":"~> 1.2"}]},"built_at":"2017-02-20T00:00:00.000Z","created_at":"2017-02-20T10:07:28.009Z","description":"This is a fluentd input plugin. It reads logs from the systemd journal.","downloads_count":6003,"number":"0.2.0","summary":"Input plugin to read from systemd journal.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-systemtap","downloads":2357,"version":"0.0.3","version_downloads":1355,"platform":"ruby","authors":"Masaki Matsushita","info":"Fluentd input plugin for systemtap","licenses":["MIT"],"metadata":{},"sha":"ecf0a0b92a525993b23899e128952999d1536d63790e9721718efaa4735ccbaf","project_uri":"https://rubygems.org/gems/fluent-plugin-systemtap","gem_uri":"https://rubygems.org/gems/fluent-plugin-systemtap-0.0.3.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-systemtap/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.6"},{"name":"rake","requirements":">= 0"}],"runtime":[]},"built_at":"2014-06-15T00:00:00.000Z","created_at":"2014-06-15T14:37:10.176Z","description":"Fluentd input plugin for systemtap","downloads_count":1355,"number":"0.0.3","summary":"Fluentd input plugin for systemtap","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-tagdata","downloads":1845,"version":"0.0.1","version_downloads":1845,"platform":"ruby","authors":"Fukui Masayuki","info":"Fluentd plugin to put the tag records in the data.","licenses":[],"metadata":{},"sha":"815953b924f54d297a1ed020d8822094c06e3e51311c3da0223e9318f47836b7","project_uri":"https://rubygems.org/gems/fluent-plugin-tagdata","gem_uri":"https://rubygems.org/gems/fluent-plugin-tagdata-0.0.1.gem","homepage_uri":"https://github.com/msfukui/fluent-plugin-tagdata","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tagdata/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-04-07T00:00:00.000Z","created_at":"2013-04-07T09:51:40.871Z","description":"Fluentd plugin to put the tag records in the data.","downloads_count":1845,"number":"0.0.1","summary":"Fluentd plugin to put the tag records in the data.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-tagfile","downloads":2819,"version":"0.0.1","version_downloads":2819,"platform":"ruby","authors":"taka84u9","info":"Fluent output plugin to handle output directory by source host using events tag.","licenses":null,"metadata":{},"sha":"a5cd554bb47758372bc167c14dcfd5caef95f34a32312d942835748cb5149f82","project_uri":"https://rubygems.org/gems/fluent-plugin-tagfile","gem_uri":"https://rubygems.org/gems/fluent-plugin-tagfile-0.0.1.gem","homepage_uri":"https://github.com/taka84u9/fluent-plugin-tagfile","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tagfile/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2012-06-05T00:00:00.000Z","created_at":"2012-06-05T09:31:00.097Z","description":"Fluent output plugin to handle output directory by source host using events tag.","downloads_count":2819,"number":"0.0.1","summary":"Fluent output plugin to handle output directory by source host using events tag.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-tagged_copy","downloads":3149,"version":"0.0.2","version_downloads":1539,"platform":"ruby","authors":"Naotoshi Seo","info":"Fluentd out_copy extension to do tagging before copy","licenses":["MIT"],"metadata":{},"sha":"b1790c2cbe5cf310d20569f6901dd87514712be71795b893fd6de03471f6be87","project_uri":"https://rubygems.org/gems/fluent-plugin-tagged_copy","gem_uri":"https://rubygems.org/gems/fluent-plugin-tagged_copy-0.0.2.gem","homepage_uri":"https://github.com/sonots/fluent-plugin-tagged_copy","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tagged_copy/0.0.2","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"pry","requirements":">= 0"},{"name":"pry-nav","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2014-04-12T00:00:00.000Z","created_at":"2014-04-12T08:18:52.116Z","description":"Fluentd out_copy extension to do tagging before copy","downloads_count":1539,"number":"0.0.2","summary":"Fluentd out_copy extension to do tagging before copy","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-tagged_udp","downloads":2435,"version":"0.0.7","version_downloads":878,"platform":"ruby","authors":"Toyokazu Akiyama","info":"fluentd input/output plugin for tagged UDP message","licenses":["MIT"],"metadata":{},"sha":"3e4da788388ce5492a953face9eefc6f6561bea7ef1082a34be7b59f02b0d01e","project_uri":"https://rubygems.org/gems/fluent-plugin-tagged_udp","gem_uri":"https://rubygems.org/gems/fluent-plugin-tagged_udp-0.0.7.gem","homepage_uri":"https://github.com/toyokazu/fluent-plugin-tagged_udp","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tagged_udp/0.0.7","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.10"},{"name":"rake","requirements":"~> 10.0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.0"}]},"built_at":"2016-03-05T00:00:00.000Z","created_at":"2016-03-05T07:07:17.738Z","description":"fluentd input/output plugin for tagged UDP message","downloads_count":878,"number":"0.0.7","summary":"fluentd input/output plugin for tagged UDP message","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-tag-ignore","downloads":1686,"version":"0.0.1","version_downloads":1686,"platform":"ruby","authors":"Shota Fukumori (sora_h)","info":"Plugin for fluentd, this allows you to specify ignore patterns for match.","licenses":["MIT"],"metadata":{},"sha":"b9bb773b4f896424430874fc85dd071539a5bc4215ba9d1c7bdf511feb7e983d","project_uri":"https://rubygems.org/gems/fluent-plugin-tag-ignore","gem_uri":"https://rubygems.org/gems/fluent-plugin-tag-ignore-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tag-ignore/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":"~> 2.14.1"}],"runtime":[{"name":"fluentd","requirements":"~> 0.10"}]},"built_at":"2013-09-08T00:00:00.000Z","created_at":"2013-09-08T15:48:57.973Z","description":"Plugin for fluentd, this allows you to specify ignore patterns for match.","downloads_count":1686,"number":"0.0.1","summary":"this fluentd-plugin allows you to specify ignore patterns for match directive.","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-tai64n_parser","downloads":4673,"version":"0.2.0","version_downloads":455,"platform":"ruby","authors":"Akira Maeda, Naotoshi Seo","info":"Fluentd plugin to parse the tai64n format log.","licenses":[],"metadata":{},"sha":"89531b8da7b0d476e5503c5618837dd23e541061f70e446a13dcc45ab657b6a0","project_uri":"https://rubygems.org/gems/fluent-plugin-tai64n_parser","gem_uri":"https://rubygems.org/gems/fluent-plugin-tai64n_parser-0.2.0.gem","homepage_uri":"https://github.com/glidenote/fluent-plugin-tai64n_parser","wiki_uri":"","documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tai64n_parser/0.2.0","mailing_list_uri":"","source_code_uri":"https://github.com/glidenote/fluent-plugin-tai64n_parser","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"rake","requirements":">= 0"},{"name":"test-unit","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2016-09-24T00:00:00.000Z","created_at":"2016-09-24T08:41:32.026Z","description":"Fluentd plugin to parse the tai64n format log.","downloads_count":455,"number":"0.2.0","summary":"Fluentd plugin to parse the tai64n format log.","rubygems_version":">= 0","ruby_version":">= 0","prerelease":false,"requirements":[]},{"name":"fluent-plugin-tail-asis","downloads":11112,"version":"0.0.3","version_downloads":8239,"platform":"ruby","authors":"TERAOKA Yoshinori","info":"fluentd input plugin, whole line read into single key, no regexp used, fast","licenses":[],"metadata":{},"sha":"14387f4144d9e429ea6c12c378a2626c8ea2f00dfee385fdaa9180080e2eaff5","project_uri":"https://rubygems.org/gems/fluent-plugin-tail-asis","gem_uri":"https://rubygems.org/gems/fluent-plugin-tail-asis-0.0.3.gem","homepage_uri":"https://github.com/yteraoka/fluent-plugin-tail-asis","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tail-asis/0.0.3","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-02-26T00:00:00.000Z","created_at":"2013-02-26T15:15:32.230Z","description":"fluentd input plugin, whole line read into single key, no regexp used, fast","downloads_count":8239,"number":"0.0.3","summary":"fluentd input plugin, whole line read into single key, no regexp used, fast","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":null},{"name":"fluent-plugin-tailer","downloads":1667,"version":"0.0.1","version_downloads":1667,"platform":"ruby","authors":"saber_chica","info":"Extend tail plugin to insert into head internal IP address or hostname","licenses":["MIT"],"metadata":{},"sha":"862d55f066d9d3aa3064e820edf60a1d54d04a4454a472222f4b531ee77ea0db","project_uri":"https://rubygems.org/gems/fluent-plugin-tailer","gem_uri":"https://rubygems.org/gems/fluent-plugin-tailer-0.0.1.gem","homepage_uri":"","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tailer/0.0.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"fluentd","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"}]},"built_at":"2013-10-03T00:00:00.000Z","created_at":"2013-10-03T14:54:47.183Z","description":"Extend tail plugin to insert into head internal IP address or hostname","downloads_count":1667,"number":"0.0.1","summary":"Extend tail plugin to insert into head internal IP address or hostname","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-tail-ex","downloads":71313,"version":"0.1.1","version_downloads":65023,"platform":"ruby","authors":"Yoshihisa Tanaka","info":"Extended tail input plugin","licenses":[],"metadata":{},"sha":"3e33c3efa95bf62399c30d79c544eca7145a22410ee972238e8b0d0ea9172cd1","project_uri":"https://rubygems.org/gems/fluent-plugin-tail-ex","gem_uri":"https://rubygems.org/gems/fluent-plugin-tail-ex-0.1.1.gem","homepage_uri":"https://github.com/yosisa/fluent-plugin-tail-ex","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tail-ex/0.1.1","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 0"},{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0"}]},"built_at":"2013-11-10T00:00:00.000Z","created_at":"2013-11-10T16:36:17.554Z","description":"Extended tail input plugin","downloads_count":65023,"number":"0.1.1","summary":"Extended tail input plugin","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-tail-ex-asis","downloads":6199,"version":"0.1.5","version_downloads":1619,"platform":"ruby","authors":"Yoshihisa Tanaka","info":"Extended tail input plugin","licenses":["Apache 2.0"],"metadata":{},"sha":"130059dfc6ef5fcb5705ca31784970d3620fb61b5c7e84a2f430c493bd82bdce","project_uri":"https://rubygems.org/gems/fluent-plugin-tail-ex-asis","gem_uri":"https://rubygems.org/gems/fluent-plugin-tail-ex-asis-0.1.5.gem","homepage_uri":"https://github.com/bryanyork/fluent-plugin-tail-ex-asis","wiki_uri":null,"documentation_uri":"http://www.rubydoc.info/gems/fluent-plugin-tail-ex-asis/0.1.5","mailing_list_uri":null,"source_code_uri":null,"bug_tracker_uri":null,"changelog_uri":null,"dependencies":{"development":[{"name":"flexmock","requirements":">= 0"},{"name":"rake","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.10.34, ~> 0.10"},{"name":"fluent-mixin-config-placeholders","requirements":">= 0.2.2, ~> 0.2"}]},"built_at":"2014-03-11T00:00:00.000Z","created_at":"2014-03-11T00:12:52.243Z","description":"Extended tail input plugin","downloads_count":1619,"number":"0.1.5","summary":"Extended tail input plugin","rubygems_version":">= 0","ruby_version":null,"prerelease":false,"requirements":[]},{"name":"fluent-plugin-tail-ex-rotate","downloads":3523,"version":"0.0.4","version_downloads":882,"platform":"ruby","authors":"Yuta Mizushima","info":"Extension of in_tail plugin to customize log rotate timing.","licenses":[],"metadata":{},"sha":"f0a87358f4bf96be3187074c5dbde23e83f04286e948a9eb9231e9a23dace62c","project_uri":"https://rubygems.org/gems/fluent-plugin-tail-ex-rotate","gem_uri":"https://rubygems.org/gems/fluent-plugin-tail-ex-rotate-0.0.4.gem","homepage_uri":"https://github.com/dwango/fluent-plugin-tail-ex-rotate","wiki_uri":"","documentation_uri":"https://github.com/dwango/fluent-plugin-tail-ex-rotate/blob/master/README.md","mailing_list_uri":"","source_code_uri":"https://github.com/dwango/fluent-plugin-tail-ex-rotate","bug_tracker_uri":"","changelog_uri":null,"dependencies":{"development":[{"name":"bundler","requirements":"~> 1.3"},{"name":"flexmock","requirements":">= 0"},{"name":"rake","requirements":">= 0.9.2"},{"name":"test-unit-rr","requirements":">= 0"}],"runtime":[{"name":"fluentd","requirements":">= 0.12.16"}]},"built_at":"2015-12-11T00:00:00.000Z","created_at":"2015-12-11T07:03:15.538Z","description":"Extension of in_tail plugin to customize log rotate timing.","downloads_count":882,"number":"0.0.4","summary":"customize log rotate timing","rubygems_version":">= 0","ruby_version":">= 1.9.3","prerelease":false,"requirements":[]},{"name":"fluent-plugin-tail-lite","downloads":1841,"version":"0.0.1","version_downloads":1841,"platform":"ruby","authors":"OKUNO Akihiro","info":"Flu
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment