fluent-plugin-redis-store-wejick 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHORS +1 -0
- data/README.md +5 -5
- data/fluent-plugin-redis-store-wejick-0.0.1.gem +0 -0
- data/fluent-plugin-redis-store-wejick.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68715dd68777bbd76db9c5c5fb12e31e179b504f
|
4
|
+
data.tar.gz: fb1f85789aa760acc9df39186a169331df45eb61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a43d03d371c99ea49dc55b9226767a1339502bf0ccd81fcbd26283e0acf96fe55c4564f5fe9fca05c6ad51be71c47398798c0357cdf0259405d40d982ad909f
|
7
|
+
data.tar.gz: 1c4e68d6089eae6950c13652b1e5b1a8b4db85631faa7ead8b7083f0f76912e2ef2b2d3a49ac28bb5d4adb59ee36308e148f6707349cd5b902801f99586ea289
|
data/AUTHORS
CHANGED
data/README.md
CHANGED
@@ -8,9 +8,7 @@ Redis Output Plugin For fluentd
|
|
8
8
|
Background
|
9
9
|
----------
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
[fluent-plugin-redisstore]: https://github.com/moaikids/fluent-plugin-redisstore
|
11
|
+
Forked from redis-store which forked from redisstore plugin
|
14
12
|
|
15
13
|
Features
|
16
14
|
--------
|
@@ -111,8 +109,9 @@ Configuration
|
|
111
109
|
| `store_type` | string | zset | `string`/`list`/`set`/`zset`/`publish` |
|
112
110
|
| `format_type` | string | plain | format type for _value_ (`plain`/`json`/`msgpack`) |
|
113
111
|
| `key_expire` | int | -1 | If set, the key will be expired in specified seconds |
|
114
|
-
| `flush_interval` | time | 1
|
115
|
-
| `prevent_duplicate` | (0,1) | 0 | Prevent duplicated value in one key (list)
|
112
|
+
| `flush_interval` | time | 1 | Time interval which events will be flushed to Redis |
|
113
|
+
| `prevent_duplicate` | (0,1) | 0 | Prevent duplicated value in one key (list) |
|
114
|
+
| `tidy_string` | (0,1) | 0 | Unescape value |
|
116
115
|
Note: either `key` or `key_path` is required.
|
117
116
|
|
118
117
|
### `string` storage specific options
|
@@ -152,6 +151,7 @@ Copyright
|
|
152
151
|
|
153
152
|
Copyright (c) 2013 moaikids
|
154
153
|
Copyright (c) 2014 HANAI Tohru
|
154
|
+
Copyright (c) 2016 Gian Giovani
|
155
155
|
|
156
156
|
License
|
157
157
|
-------
|
Binary file
|
@@ -2,7 +2,7 @@
|
|
2
2
|
Gem::Specification.new do |gem|
|
3
3
|
gem.name = "fluent-plugin-redis-store-wejick"
|
4
4
|
gem.email = "wejick@gmail.com"
|
5
|
-
gem.version = "0.0.
|
5
|
+
gem.version = "0.0.2"
|
6
6
|
gem.authors = ["wejick", "Gian Giovani"]
|
7
7
|
gem.licenses = ["Apache License Version 2.0"]
|
8
8
|
gem.summary = %q{Redis(zset/set/list/string/publish) output plugin for Fluentd}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-redis-store-wejick
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wejick
|
@@ -77,6 +77,7 @@ files:
|
|
77
77
|
- Gemfile
|
78
78
|
- README.md
|
79
79
|
- Rakefile
|
80
|
+
- fluent-plugin-redis-store-wejick-0.0.1.gem
|
80
81
|
- fluent-plugin-redis-store-wejick.gemspec
|
81
82
|
- lib/fluent/plugin/out_redis_store_wejick.rb
|
82
83
|
- test/helpers.rb
|