fluent-plugin-rtail 0.1.0
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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +3 -0
- data/.travis.yml +12 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +38 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/fluent-plugin-rtail.gemspec +31 -0
- data/lib/fluent/plugin/out_rtail.rb +93 -0
- data/lib/fluent_plugin_rtail/version.rb +3 -0
- metadata +140 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 333812e14f6a452710645657ede8ccf541d1949a
|
4
|
+
data.tar.gz: f4b8ee56d8c4f17ad5630ec5e0c04417214e4bb6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0b3727f2f0d70ae80060819dacb6a039293a71ebd9e3267affea4bce097c8d75c23e04dc46622b0d96749ebaf3de670f79dee6b5be38229a99ee25cf1a7efdcb
|
7
|
+
data.tar.gz: e02fa3a4c165b97f1dd536302faeae7aa6cd7877b53680ea95fe285504669eeda7568c59210bea52144e1e74af7a1afa0d6a15b9fa865aa4575b4eca781e6056
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Genki Sugawara
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# fluent-plugin-rtail
|
2
|
+
|
3
|
+
Fluentd output plugin for [rtail](http://rtail.org/).
|
4
|
+
|
5
|
+
[](https://badge.fury.io/rb/fluent-plugin-rtail)
|
6
|
+
[](https://travis-ci.org/winebarrel/fluent-plugin-rtail)
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
gem 'fluent-plugin-rtail'
|
14
|
+
```
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install fluent-plugin-rtail
|
23
|
+
|
24
|
+
## Configuration
|
25
|
+
|
26
|
+
```
|
27
|
+
<match rtail.data>
|
28
|
+
@type rtail
|
29
|
+
|
30
|
+
#host 127.0.0.1
|
31
|
+
#port 9999
|
32
|
+
#id_key id
|
33
|
+
#content_key content
|
34
|
+
#use_tag_as_id false
|
35
|
+
#use_record_as_content false
|
36
|
+
flush_interval 0s
|
37
|
+
</match>
|
38
|
+
```
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "fluent/plugin/rtail"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'fluent_plugin_rtail/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'fluent-plugin-rtail'
|
8
|
+
spec.version = FluentPluginRtail::VERSION
|
9
|
+
spec.authors = ['Genki Sugawara']
|
10
|
+
spec.email = ['sugawara@cookpad.com']
|
11
|
+
|
12
|
+
spec.summary = %q{Fluentd output plugin for rtail.}
|
13
|
+
spec.description = %q{Fluentd output plugin for rtail.}
|
14
|
+
spec.homepage = 'https://github.com/winebarrel/fluent-plugin-rtail'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.add_dependency 'fluentd'
|
25
|
+
spec.add_dependency 'multi_json'
|
26
|
+
|
27
|
+
spec.add_development_dependency 'bundler'
|
28
|
+
spec.add_development_dependency 'rake'
|
29
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
30
|
+
spec.add_development_dependency 'test-unit', '>= 3.1.0'
|
31
|
+
end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
class Fluent::RtailOutput < Fluent::BufferedOutput
|
2
|
+
Fluent::Plugin.register_output('rtail', self)
|
3
|
+
|
4
|
+
unless method_defined?(:log)
|
5
|
+
define_method('log') { $log }
|
6
|
+
end
|
7
|
+
|
8
|
+
include Fluent::SetTimeKeyMixin
|
9
|
+
include Fluent::SetTagKeyMixin
|
10
|
+
|
11
|
+
config_param :host, :string, default: '127.0.0.1'
|
12
|
+
config_param :port, :integer, default: 9999
|
13
|
+
config_param :id_key, :string, default: 'id'
|
14
|
+
config_param :content_key, :string, default: 'content'
|
15
|
+
config_param :use_tag_as_id, :bool, default: false
|
16
|
+
config_param :use_record_as_content, :bool, default: false
|
17
|
+
|
18
|
+
def initialize
|
19
|
+
super
|
20
|
+
require 'multi_json'
|
21
|
+
require 'socket'
|
22
|
+
end
|
23
|
+
|
24
|
+
def configure(conf)
|
25
|
+
super
|
26
|
+
@socket = UDPSocket.new
|
27
|
+
@socket.connect(@host, @port)
|
28
|
+
end
|
29
|
+
|
30
|
+
def format(tag, time, record)
|
31
|
+
[tag, time, record].to_msgpack
|
32
|
+
end
|
33
|
+
|
34
|
+
def write(chunk)
|
35
|
+
chunk = chunk.to_enum(:msgpack_each)
|
36
|
+
|
37
|
+
chunk.each do |tag, time, record|
|
38
|
+
log_stream_id = get_log_stream_id(tag, time, record)
|
39
|
+
next unless log_stream_id
|
40
|
+
|
41
|
+
content = get_content(tag, time, record)
|
42
|
+
next unless content
|
43
|
+
|
44
|
+
send_message(log_stream_id, time, content)
|
45
|
+
end
|
46
|
+
rescue => e
|
47
|
+
log.error e.message
|
48
|
+
log.error_backtrace e.backtrace
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
def get_log_stream_id(tag, time, record)
|
54
|
+
if @use_tag_as_id
|
55
|
+
tag
|
56
|
+
else
|
57
|
+
log_stream_id = record[@id_key]
|
58
|
+
|
59
|
+
unless log_stream_id
|
60
|
+
log.warn("'#{@id_key}' key does not exist: #{[tag, time, record].inspect}")
|
61
|
+
end
|
62
|
+
|
63
|
+
log_stream_id
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def get_content(tag, time, record)
|
68
|
+
if @use_record_as_content
|
69
|
+
record
|
70
|
+
else
|
71
|
+
content = record[@content_key]
|
72
|
+
|
73
|
+
if content
|
74
|
+
content = content.to_s
|
75
|
+
else
|
76
|
+
log.warn("'#{@content_key}' key does not exist: #{[tag, time, record].inspect}")
|
77
|
+
end
|
78
|
+
|
79
|
+
content
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def send_message(log_stream_id, time, content)
|
84
|
+
message = {
|
85
|
+
'id' => log_stream_id,
|
86
|
+
'timestamp' => (time.to_f * 1000).to_i,
|
87
|
+
'content' => content,
|
88
|
+
}
|
89
|
+
|
90
|
+
message = MultiJson.dump(message)
|
91
|
+
@socket.send(message, 0)
|
92
|
+
end
|
93
|
+
end
|
metadata
ADDED
@@ -0,0 +1,140 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fluent-plugin-rtail
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Genki Sugawara
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-12-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: fluentd
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: multi_json
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: test-unit
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 3.1.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 3.1.0
|
97
|
+
description: Fluentd output plugin for rtail.
|
98
|
+
email:
|
99
|
+
- sugawara@cookpad.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitignore"
|
105
|
+
- ".rspec"
|
106
|
+
- ".travis.yml"
|
107
|
+
- Gemfile
|
108
|
+
- LICENSE.txt
|
109
|
+
- README.md
|
110
|
+
- Rakefile
|
111
|
+
- bin/console
|
112
|
+
- bin/setup
|
113
|
+
- fluent-plugin-rtail.gemspec
|
114
|
+
- lib/fluent/plugin/out_rtail.rb
|
115
|
+
- lib/fluent_plugin_rtail/version.rb
|
116
|
+
homepage: https://github.com/winebarrel/fluent-plugin-rtail
|
117
|
+
licenses:
|
118
|
+
- MIT
|
119
|
+
metadata: {}
|
120
|
+
post_install_message:
|
121
|
+
rdoc_options: []
|
122
|
+
require_paths:
|
123
|
+
- lib
|
124
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: '0'
|
129
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - ">="
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
requirements: []
|
135
|
+
rubyforge_project:
|
136
|
+
rubygems_version: 2.5.1
|
137
|
+
signing_key:
|
138
|
+
specification_version: 4
|
139
|
+
summary: Fluentd output plugin for rtail.
|
140
|
+
test_files: []
|