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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2f88ad81aa87528440228c6f20196250b0e3ba1
4
- data.tar.gz: 5ff2e7de0a8b987e692667f98fc206d235315655
3
+ metadata.gz: 72276a7c487887e325655feaec860aebaf7afa55
4
+ data.tar.gz: 07030cab9ece6fa07c6c5a61f60a4ccd634f7a7c
5
5
  SHA512:
6
- metadata.gz: 0d0db0f3ec65e44cf136f4d95b83d51343db8794b62afd659265b15029d5de2c9cef76e1c080759101dee423ee6172481b7f696093786f353f777f0dc8de2b59
7
- data.tar.gz: c8a934ca856137097371aa02f2e5948b9ede3f028142384f2bab7863b4e2c849c365516676259c0d3ea6514652aa850b5cc1c699b4cf0489ce97f9e1b7677170
6
+ metadata.gz: ec3bb7fff51397c3ccbba1f7c4fcc8c9f92bfd9b2b4aa1d1fef7f685a6e951d40580f422c3f802c251aedb1332b8aba58c61a3698cf514411b6a20653eccf98c
7
+ data.tar.gz: 1e518b32ce8dc257a4ee6347e2dc0dfc7a7e13415504c584caf7d2b947f8451f20981ccc21aa5487241fcb11df640e06ffad56f249e85f0229ce8e9e1bd85142
@@ -0,0 +1 @@
1
+ fluent-plugin-newsyslog
@@ -1 +1 @@
1
- 2.1.5@fluent-plugin-newsyslog
1
+ 2.1.5
@@ -1,3 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.5
3
+ - 2.3.0
4
+ - 2.2
5
+ - 2.1
6
+ - 2.0.0
7
+ before_install:
8
+ - gem install bundler
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
+ [![Build Status](https://travis-ci.org/athenahealth/fluent-plugin-newsyslog.svg?branch=master)](https://travis-ci.org/athenahealth/fluent-plugin-newsyslog)
1
2
  # Fluent::Plugin::NewSyslog
2
3
 
3
- This is a new syslog input and parser plugins for Fluentd.
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 also automatically parse the time formats using the build in
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
@@ -23,4 +23,4 @@ task :coverage do |t|
23
23
  Rake::Task["test"].invoke
24
24
  end
25
25
 
26
- task :default => [:test, :build]
26
+ task :default => [:test, :spec, :build]
@@ -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.0"
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 fluentd syslog parser that handles multiple formats }
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
@@ -44,6 +44,7 @@ module Fluent
44
44
  super
45
45
  require 'cool.io'
46
46
  require 'fluent/plugin/socket_util'
47
+ require 'fluent/plugin/parser_newsyslog'
47
48
  end
48
49
 
49
50
  config_param :port, :integer, :default => 5140
@@ -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("newsyslog", self)
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.0
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: 2015-05-05 00:00:00.000000000 Z
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 fluentd syslog parser that handles multiple formats '
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.4.3
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: []