fluent-plugin-systemd 0.0.3 → 0.0.4
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/Gemfile +0 -1
- data/Gemfile.lock +69 -0
- data/README.md +9 -3
- data/Rakefile +2 -2
- data/fluent-plugin-systemd.gemspec +1 -1
- data/lib/fluent/plugin/in_systemd.rb +2 -0
- data/lib/fluent/plugin/systemd/pos_writer.rb +2 -0
- data/pkg/fluent-plugin-systemd-0.0.3.gem +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4bb94640bea41ab8be9a26fd57926f0250763a3
|
4
|
+
data.tar.gz: 96e856fa32b80a382688e6c31f14433f3ed4fb31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f3d3abac9dd4ec34cfaf863d5731d83a6e8f92c2c4c47d108800a12ceb42159d785f1763f1cf9dab120be7f4509877b75ba4255edc0f5586f87983d204905f5
|
7
|
+
data.tar.gz: 90e217ae81cb98ec9c46a73708b4dddaf71b106bf81c3d176462aa0b95cbc2b329205b2f6969960315421ddba1dbead12fcec88daf251012153d3ad10a7605f6
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
fluent-plugin-systemd (0.0.4)
|
5
|
+
fluentd (~> 0.12)
|
6
|
+
systemd-journal (~> 1.2)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
ast (2.2.0)
|
12
|
+
astrolabe (1.3.1)
|
13
|
+
parser (~> 2.2)
|
14
|
+
cool.io (1.4.4)
|
15
|
+
ffi (1.9.14)
|
16
|
+
fluentd (0.14.2)
|
17
|
+
cool.io (>= 1.4.3, < 2.0.0)
|
18
|
+
http_parser.rb (>= 0.5.1, < 0.7.0)
|
19
|
+
json (>= 1.4.3)
|
20
|
+
msgpack (>= 0.7.0)
|
21
|
+
serverengine (>= 1.6.4)
|
22
|
+
sigdump (~> 0.2.2)
|
23
|
+
strptime (>= 0.1.7)
|
24
|
+
tzinfo (>= 1.0.0)
|
25
|
+
tzinfo-data (>= 1.0.0)
|
26
|
+
yajl-ruby (~> 1.0)
|
27
|
+
http_parser.rb (0.6.0)
|
28
|
+
json (2.0.2)
|
29
|
+
msgpack (1.0.0)
|
30
|
+
parser (2.3.1.0)
|
31
|
+
ast (~> 2.2)
|
32
|
+
powerpack (0.0.9)
|
33
|
+
rainbow (2.1.0)
|
34
|
+
rake (10.5.0)
|
35
|
+
reevoocop (0.0.8)
|
36
|
+
rubocop (= 0.28.0)
|
37
|
+
rubocop (0.28.0)
|
38
|
+
astrolabe (~> 1.3)
|
39
|
+
parser (>= 2.2.0.pre.7, < 3.0)
|
40
|
+
powerpack (~> 0.0.6)
|
41
|
+
rainbow (>= 1.99.1, < 3.0)
|
42
|
+
ruby-progressbar (~> 1.4)
|
43
|
+
ruby-progressbar (1.8.0)
|
44
|
+
serverengine (1.6.4)
|
45
|
+
sigdump (~> 0.2.2)
|
46
|
+
sigdump (0.2.4)
|
47
|
+
strptime (0.1.8)
|
48
|
+
systemd-journal (1.2.2)
|
49
|
+
ffi (~> 1.9.0)
|
50
|
+
test-unit (2.5.5)
|
51
|
+
thread_safe (0.3.5)
|
52
|
+
tzinfo (1.2.2)
|
53
|
+
thread_safe (~> 0.1)
|
54
|
+
tzinfo-data (1.2016.6)
|
55
|
+
tzinfo (>= 1.0.0)
|
56
|
+
yajl-ruby (1.2.1)
|
57
|
+
|
58
|
+
PLATFORMS
|
59
|
+
ruby
|
60
|
+
|
61
|
+
DEPENDENCIES
|
62
|
+
bundler (~> 1.10)
|
63
|
+
fluent-plugin-systemd!
|
64
|
+
rake (~> 10.4)
|
65
|
+
reevoocop
|
66
|
+
test-unit (~> 2.5)
|
67
|
+
|
68
|
+
BUNDLED WITH
|
69
|
+
1.12.5
|
data/README.md
CHANGED
@@ -10,15 +10,15 @@
|
|
10
10
|
|
11
11
|
Simply use RubyGems:
|
12
12
|
|
13
|
-
gem install fluent-plugin-systemd -v 0.0.
|
13
|
+
gem install fluent-plugin-systemd -v 0.0.4
|
14
14
|
|
15
15
|
or
|
16
16
|
|
17
|
-
fluent-gem install fluent-plugin-systemd -v 0.0.
|
17
|
+
fluent-gem install fluent-plugin-systemd -v 0.0.4
|
18
18
|
|
19
19
|
or
|
20
20
|
|
21
|
-
td-agent-gem install fluent-plugin-systemd -v 0.0.
|
21
|
+
td-agent-gem install fluent-plugin-systemd -v 0.0.4
|
22
22
|
|
23
23
|
## Configuration
|
24
24
|
|
@@ -77,3 +77,9 @@ For systems with systemd installed you can run the tests against your installed
|
|
77
77
|
[MIT](LICENCE)
|
78
78
|
|
79
79
|
Issues and pull requests welcome
|
80
|
+
|
81
|
+
## Contributors
|
82
|
+
|
83
|
+
Many thanks to our wonderful contributors
|
84
|
+
|
85
|
+
* [jescarri](https://github.com/jescarri)
|
data/Rakefile
CHANGED
@@ -11,10 +11,10 @@ end
|
|
11
11
|
|
12
12
|
task default: "docker:test"
|
13
13
|
task build: "docker:test"
|
14
|
-
task
|
14
|
+
task default: :reevoocop
|
15
15
|
|
16
16
|
namespace :docker do
|
17
|
-
distros = [:ubuntu, :"tdagent-ubuntu", :
|
17
|
+
distros = [:ubuntu, :"tdagent-ubuntu", :"tdagent-centos"]
|
18
18
|
task test: distros
|
19
19
|
|
20
20
|
distros.each do |distro|
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-systemd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ed Robinson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -102,12 +102,14 @@ extensions: []
|
|
102
102
|
extra_rdoc_files: []
|
103
103
|
files:
|
104
104
|
- Gemfile
|
105
|
+
- Gemfile.lock
|
105
106
|
- LICENCE
|
106
107
|
- README.md
|
107
108
|
- Rakefile
|
108
109
|
- fluent-plugin-systemd.gemspec
|
109
110
|
- lib/fluent/plugin/in_systemd.rb
|
110
111
|
- lib/fluent/plugin/systemd/pos_writer.rb
|
112
|
+
- pkg/fluent-plugin-systemd-0.0.3.gem
|
111
113
|
homepage: https://github.com/assemblyline/fluent-plugin-systemd
|
112
114
|
licenses:
|
113
115
|
- MIT
|
@@ -133,4 +135,3 @@ signing_key:
|
|
133
135
|
specification_version: 4
|
134
136
|
summary: Input plugin to read from systemd journal.
|
135
137
|
test_files: []
|
136
|
-
has_rdoc:
|