fluent-plugin-sampling-filter 0.2.0 → 0.2.1
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/.travis.yml +4 -1
- data/README.md +2 -2
- data/fluent-plugin-sampling-filter.gemspec +2 -2
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8938823efb7b0fc5c35a84a5a5f76b75d532358
|
|
4
|
+
data.tar.gz: edf5a0bebb0bd60e188a8916754e5feef53fc218
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86bc4dde59d152e2da88370b06b5c3e98e440c906bd1d853e2a02aa37a69e4da83debd5886496c5691c30351963fe52a14d07e6403dc5b1765434b4e306cfdba
|
|
7
|
+
data.tar.gz: d8a156be0aa4293aa857105c29405cb515b1155aa6a1f5e63646dd58774168fe070c7039274bea197165d54bb206bf3bd594436cc41a001a2a8bb54d3864975e
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -16,7 +16,7 @@ This is a [Fluentd](http://fluentd.org) plugin to sample matching messages to an
|
|
|
16
16
|
Pickup 1/10 messages about each tags(default: `sample_unit tag`), and add tag prefix `sampled`.
|
|
17
17
|
|
|
18
18
|
<match **>
|
|
19
|
-
type sampling_filter
|
|
19
|
+
@type sampling_filter
|
|
20
20
|
interval 10
|
|
21
21
|
add_prefix sampled
|
|
22
22
|
</match>
|
|
@@ -28,7 +28,7 @@ Pickup 1/10 messages about each tags(default: `sample_unit tag`), and add tag pr
|
|
|
28
28
|
Pickup 1/100 messages of all matched messages, and modify tags from `input.**` to `output.**`
|
|
29
29
|
|
|
30
30
|
<match input.**>
|
|
31
|
-
type sampling_filter
|
|
31
|
+
@type sampling_filter
|
|
32
32
|
interval 100
|
|
33
33
|
sample_unit all
|
|
34
34
|
remove_prefix input
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |gem|
|
|
4
4
|
gem.name = "fluent-plugin-sampling-filter"
|
|
5
|
-
gem.version = "0.2.
|
|
5
|
+
gem.version = "0.2.1"
|
|
6
6
|
gem.authors = ["TAGOMORI Satoshi"]
|
|
7
7
|
gem.email = ["tagomoris@gmail.com"]
|
|
8
8
|
gem.description = %q{fluentd plugin to pickup sample data from matched massages}
|
|
@@ -17,5 +17,5 @@ Gem::Specification.new do |gem|
|
|
|
17
17
|
|
|
18
18
|
gem.add_development_dependency "rake"
|
|
19
19
|
gem.add_runtime_dependency "test-unit", "~> 3.1.0"
|
|
20
|
-
gem.add_runtime_dependency "fluentd", [">= 0.12.0", "<
|
|
20
|
+
gem.add_runtime_dependency "fluentd", [">= 0.12.0", "< 0.14.0"]
|
|
21
21
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-sampling-filter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TAGOMORI Satoshi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-02-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -47,7 +47,7 @@ dependencies:
|
|
|
47
47
|
version: 0.12.0
|
|
48
48
|
- - "<"
|
|
49
49
|
- !ruby/object:Gem::Version
|
|
50
|
-
version:
|
|
50
|
+
version: 0.14.0
|
|
51
51
|
type: :runtime
|
|
52
52
|
prerelease: false
|
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -57,7 +57,7 @@ dependencies:
|
|
|
57
57
|
version: 0.12.0
|
|
58
58
|
- - "<"
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version:
|
|
60
|
+
version: 0.14.0
|
|
61
61
|
description: fluentd plugin to pickup sample data from matched massages
|
|
62
62
|
email:
|
|
63
63
|
- tagomoris@gmail.com
|
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
99
99
|
version: '0'
|
|
100
100
|
requirements: []
|
|
101
101
|
rubyforge_project:
|
|
102
|
-
rubygems_version: 2.
|
|
102
|
+
rubygems_version: 2.6.8
|
|
103
103
|
signing_key:
|
|
104
104
|
specification_version: 4
|
|
105
105
|
summary: fluentd plugin to pickup sample data from matched massages
|
|
@@ -107,4 +107,3 @@ test_files:
|
|
|
107
107
|
- test/helper.rb
|
|
108
108
|
- test/plugin/test_filter_sampling.rb
|
|
109
109
|
- test/plugin/test_out_sampling_filter.rb
|
|
110
|
-
has_rdoc:
|