fluent-plugin-newsyslog 0.1.0 → 0.1.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/.rbenv-gemsets +1 -0
- data/.ruby-version +1 -1
- data/.travis.yml +6 -1
- data/README.md +3 -2
- data/Rakefile +1 -1
- data/fluent-plugin-newsyslog.gemspec +3 -3
- data/lib/fluent/plugin/in_newsyslog.rb +1 -0
- data/lib/fluent/plugin/parser_newsyslog.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 72276a7c487887e325655feaec860aebaf7afa55
|
|
4
|
+
data.tar.gz: 07030cab9ece6fa07c6c5a61f60a4ccd634f7a7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec3bb7fff51397c3ccbba1f7c4fcc8c9f92bfd9b2b4aa1d1fef7f685a6e951d40580f422c3f802c251aedb1332b8aba58c61a3698cf514411b6a20653eccf98c
|
|
7
|
+
data.tar.gz: 1e518b32ce8dc257a4ee6347e2dc0dfc7a7e13415504c584caf7d2b947f8451f20981ccc21aa5487241fcb11df640e06ffad56f249e85f0229ce8e9e1bd85142
|
data/.rbenv-gemsets
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fluent-plugin-newsyslog
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.1.5
|
|
1
|
+
2.1.5
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
[](https://travis-ci.org/athenahealth/fluent-plugin-newsyslog)
|
|
1
2
|
# Fluent::Plugin::NewSyslog
|
|
2
3
|
|
|
3
|
-
This is a
|
|
4
|
+
This is a syslog input and parser plugins for Fluentd.
|
|
4
5
|
It supports the newer rfc5424 syslog format along with the older rfc3164 format.
|
|
5
|
-
It
|
|
6
|
+
It will automatically parse the time formats using the built in
|
|
6
7
|
ruby time parser rather than specifying the expected format from the syslog message.
|
|
7
8
|
The parser plugin is backwards compatible with the built in syslog parser.
|
|
8
9
|
|
data/Rakefile
CHANGED
|
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "fluent-plugin-newsyslog"
|
|
7
|
-
spec.version = "0.1.
|
|
7
|
+
spec.version = "0.1.1"
|
|
8
8
|
spec.authors = ["Kevin Scheunemann"]
|
|
9
9
|
spec.email = ["kscheunemann@athenahealth.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = %q{A better fluentd syslog input and parser}
|
|
12
|
-
spec.description = %q{A
|
|
11
|
+
spec.summary = %q{A better fluentd syslog input and parser plugin}
|
|
12
|
+
spec.description = %q{A fluent plugin that includes a syslog parser that handles both rfc3164 and rfc5424 formats }
|
|
13
13
|
spec.homepage = "https://github.com/athenahealth/fluent-plugin-newsyslog"
|
|
14
14
|
|
|
15
15
|
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
|
@@ -4,7 +4,7 @@ module Fluent
|
|
|
4
4
|
class TextParser
|
|
5
5
|
class NewSyslogParser < Parser
|
|
6
6
|
# register as newsyslog parser
|
|
7
|
-
Plugin.register_parser(
|
|
7
|
+
Plugin.register_parser('newsyslog', self)
|
|
8
8
|
|
|
9
9
|
# default to using the built in ruby time parser rather than specifying a time format
|
|
10
10
|
config_param :time_format, :string, :default => nil #"%b %d %H:%M:%S"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-newsyslog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Scheunemann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -150,7 +150,8 @@ dependencies:
|
|
|
150
150
|
- - "~>"
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: 1.0.3
|
|
153
|
-
description: 'A
|
|
153
|
+
description: 'A fluent plugin that includes a syslog parser that handles both rfc3164
|
|
154
|
+
and rfc5424 formats '
|
|
154
155
|
email:
|
|
155
156
|
- kscheunemann@athenahealth.com
|
|
156
157
|
executables: []
|
|
@@ -158,6 +159,7 @@ extensions: []
|
|
|
158
159
|
extra_rdoc_files: []
|
|
159
160
|
files:
|
|
160
161
|
- ".gitignore"
|
|
162
|
+
- ".rbenv-gemsets"
|
|
161
163
|
- ".rspec"
|
|
162
164
|
- ".ruby-version"
|
|
163
165
|
- ".travis.yml"
|
|
@@ -186,8 +188,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
186
188
|
version: '0'
|
|
187
189
|
requirements: []
|
|
188
190
|
rubyforge_project:
|
|
189
|
-
rubygems_version: 2.
|
|
191
|
+
rubygems_version: 2.2.2
|
|
190
192
|
signing_key:
|
|
191
193
|
specification_version: 4
|
|
192
|
-
summary: A better fluentd syslog input and parser
|
|
194
|
+
summary: A better fluentd syslog input and parser plugin
|
|
193
195
|
test_files: []
|