All Projects → fluent-plugins-nursery → fluent-plugin-redis

fluent-plugins-nursery / fluent-plugin-redis

Licence: other
Redis output plugin for Fluent event collector

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to fluent-plugin-redis

fluent-plugin-webhdfs
Hadoop WebHDFS output plugin for Fluentd
Stars: ✭ 57 (+42.5%)
Mutual labels:  fluentd, fluentd-plugin
fluentd-plugin-mdsd
Azure Linux monitoring agent (mdsd) output plugin for fluentd
Stars: ✭ 26 (-35%)
Mutual labels:  fluentd, fluentd-plugin
fluent-plugin-grok-parser
Fluentd's Grok parser
Stars: ✭ 100 (+150%)
Mutual labels:  fluentd, fluentd-plugin
fluent-plugin-gcs
Google Cloud Storage output plugin for Fluentd.
Stars: ✭ 39 (-2.5%)
Mutual labels:  fluentd, fluentd-plugin
fluent-plugin-http-pull
The input plugin of fluentd to pull log from rest api.
Stars: ✭ 19 (-52.5%)
Mutual labels:  fluentd, fluentd-plugin
fluent-plugin-rabbitmq
Fluent input/output plugin for RabbitMQ.
Stars: ✭ 26 (-35%)
Mutual labels:  fluentd, fluentd-plugin
fluent-plugin-ec2-metadata
Fluentd output plugin to add Amazon EC2 metadata into messages
Stars: ✭ 43 (+7.5%)
Mutual labels:  fluentd, fluentd-plugin
fluent-plugin-windows-eventlog
Fluentd plugin to collect windows event logs
Stars: ✭ 27 (-32.5%)
Mutual labels:  fluentd, fluentd-plugin
fluent-plugin-multiprocess
Multiprocess agent plugin for Fluentd
Stars: ✭ 42 (+5%)
Mutual labels:  fluentd, fluentd-plugin
Terraform Aws Elasticsearch
Terraform module to provision an Elasticsearch cluster with built-in integrations with Kibana and Logstash.
Stars: ✭ 137 (+242.5%)
Mutual labels:  fluentd
Fluent Logger Java
A structured logger for Fluentd (Java)
Stars: ✭ 186 (+365%)
Mutual labels:  fluentd
Fluent Plugin Systemd
This is a fluentd input plugin. It reads logs from the systemd journal.
Stars: ✭ 124 (+210%)
Mutual labels:  fluentd
Pathivu
An efficient log ingestion and log aggregation system https://pathivu.io/
Stars: ✭ 146 (+265%)
Mutual labels:  fluentd
Fluent Logger Node
A structured logger for Fluentd (Node.js)
Stars: ✭ 233 (+482.5%)
Mutual labels:  fluentd
Aws Eks Kubernetes Masterclass
AWS EKS Kubernetes - Masterclass | DevOps, Microservices
Stars: ✭ 129 (+222.5%)
Mutual labels:  fluentd
efk-stack-helm
Helm chart to deploy a working logging solution using the ElasticSearch - Fluentd - Kibana stack on Kubernetes
Stars: ✭ 51 (+27.5%)
Mutual labels:  fluentd
Fluentd
Fluentd: Unified Logging Layer (project under CNCF)
Stars: ✭ 10,807 (+26917.5%)
Mutual labels:  fluentd
Fluent Plugin Cloudwatch Logs
CloudWatch Logs Plugin for Fluentd
Stars: ✭ 179 (+347.5%)
Mutual labels:  fluentd
Fluent Agent Hydra
A Fluentd log agent.
Stars: ✭ 102 (+155%)
Mutual labels:  fluentd
Gofluent
(Not Maintained) Something acting like fluentd rewritten in Go.
Stars: ✭ 174 (+335%)
Mutual labels:  fluentd

Redis output plugin for Fluent

Testing on Ubuntu

fluent-plugin-redis is a fluent plugin to output to redis.

Requirements

fluent-plugin-redis fluentd ruby
>= 0.3.0 >= 0.14.8 >= 2.1
== 0.2.3 ~> 0.12.0 * >= 1.9
< 0.2.3 >= 0.10.0, < 2 * >= 1.9
  • May not support all future fluentd features

Installation

What you have to do is only installing like this:

gem install fluent-plugin-redis

Then fluent automatically loads the plugin installed.

Configuration

Example

<match redis.**>
  @type redis

  # host localhost
  # port 6379
  # db_number 0
  # password hogefuga
  # insert_key_prefix '${tag}'
  # strftime_format "%s"
  # allow_duplicate_key false
  # ttl 300
</match>

Parameter

parameter description default
host The hostname of Redis server localhost
port The port number of Redis server 6379
db_number The number of database 0
password The password of Redis. If requirepass is set, please specify this nil
insert_key_prefix Users can set '${tag}' or ${tag[0]}.${tag[1]} or ...? ${tag}
strftime_format Users can set strftime format.
"%s" will be replaced into unixtime. "%Y%m%d.%H%M%S" will be replaced like as 20161202.112335
"%s"
allow_duplicate_key Allow duplicated insert key. It will work as update values false
ttl The value of TTL. If 0 or negative value is set, ttl is not set in each key -1

With multi workers

fluent-plugin-redis can handle multi workers. This feature can be enabled with the following configuration:

<system>
  workers n # where n >= 2.
</system>

Notice

insert_key_prefix, strftime_format, and allow_duplicate_key are newly added config parameters.

They can use v0.3.0 or later. To use this parameters, users must update Fluentd to v0.14 or later and this plugin to v0.3.0 or later.

multi workers are newly introduced feature in Fluentd v0.14.

It can use this feature in this plugin in v0.3.3 or later.

Contributing to fluent-plugin-redis

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
  • Fork the project
  • Start a feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright

Copyright (c) 2011- Yuki Nishijima

License

Apache License, Version 2.0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].