fluent-plugin-datacounter 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +2 -2
- data/fluent-plugin-datacounter.gemspec +1 -2
- metadata +3 -19
data/README.rdoc
CHANGED
@@ -85,7 +85,7 @@ With 'output_per_tag' option and 'tag_prefix', we get one result message for one
|
|
85
85
|
pattern2 NG ^\d\d\d$
|
86
86
|
input_tag_remove_prefix accesslog
|
87
87
|
output_per_tag yes
|
88
|
-
|
88
|
+
tag_prefix status
|
89
89
|
</match>
|
90
90
|
# => tag: 'status.foo' or 'status.bar'
|
91
91
|
# message: {'OK_count' => 60, 'OK_rate' => 1.0, 'OK_percentage' => 70, 'NG_count' => , ....}
|
@@ -110,7 +110,7 @@ And you can get tested messages count with 'output_messages' option:
|
|
110
110
|
pattern2 NG ^\d\d\d$
|
111
111
|
input_tag_remove_prefix accesslog
|
112
112
|
output_per_tag yes
|
113
|
-
|
113
|
+
tag_prefix datacount
|
114
114
|
output_messages yes
|
115
115
|
</match>
|
116
116
|
# => tag: 'datacount.baz'
|
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "fluent-plugin-datacounter"
|
6
|
-
s.version = "0.4.
|
6
|
+
s.version = "0.4.1"
|
7
7
|
s.authors = ["TAGOMORI Satoshi"]
|
8
8
|
s.email = ["tagomoris@gmail.com"]
|
9
9
|
s.homepage = "https://github.com/tagomoris/fluent-plugin-datacounter"
|
@@ -18,6 +18,5 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.require_paths = ["lib"]
|
19
19
|
|
20
20
|
s.add_development_dependency "rake"
|
21
|
-
s.add_development_dependency "fluentd"
|
22
21
|
s.add_runtime_dependency "fluentd"
|
23
22
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-datacounter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-04-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -27,22 +27,6 @@ dependencies:
|
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '0'
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: fluentd
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ! '>='
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: '0'
|
38
|
-
type: :development
|
39
|
-
prerelease: false
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ! '>='
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: '0'
|
46
30
|
- !ruby/object:Gem::Dependency
|
47
31
|
name: fluentd
|
48
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -96,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
80
|
version: '0'
|
97
81
|
requirements: []
|
98
82
|
rubyforge_project: fluent-plugin-datacounter
|
99
|
-
rubygems_version: 1.8.
|
83
|
+
rubygems_version: 1.8.23
|
100
84
|
signing_key:
|
101
85
|
specification_version: 3
|
102
86
|
summary: Output filter plugin to count messages that matches specified conditions
|