embulk-parser-apache_error_log 0.1.1 → 0.1.2

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: 82af5070851c56239f62550d11034a6a0f9be74c
4
- data.tar.gz: 3231808762cd70b7e1e8c77dab1dbdf9fd3816f0
3
+ metadata.gz: f645d9c5ef98ebea995deddcf77760cb4d18b0e9
4
+ data.tar.gz: 48f392b54ba5445cbdf36f03d31f4910fdd96b81
5
5
  SHA512:
6
- metadata.gz: 5f4ed23ddb74c10a42f3c3e46ca6fa3701aec3201e78aaeed0e5c1b6a566ae3b5473a5c9c8943dd73d7fe57cedce352e8b61f7da1d0d69022071797f5c321fb4
7
- data.tar.gz: 5b91cd6bb663b016139fbd44f6527878db5abe8fc8ad4773232d0fb1cd0ff634a9354466f119d07e3e48ffdaf3825eddb940a462b9edb3276cd4948ef3357fe6
6
+ metadata.gz: 0cd9a405ec75e402631065be4084ce70431df9fc1e1af82da861b60691691bef41d3731f9629bd61904ed1cf799ead37111e507ef5133fea70d1d4dda781ab06
7
+ data.tar.gz: 19ceebd7f36f52ba7e19de5458cb61ad737bec574b96d72ac0eab2d348766a3e7e162ae8f7b65e432cc5f6b16623ef30073251a9e16fa2230977db9681bc927b
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
1
  require "bundler/gem_tasks"
2
+ require 'rake/testtask'
2
3
 
3
4
  task default: :build
5
+
@@ -1,8 +1,8 @@
1
1
 
2
2
  Gem::Specification.new do |spec|
3
3
  spec.name = "embulk-parser-apache_error_log"
4
- spec.version = "0.1.1"
5
- spec.authors = ["Tomohiro Mitsusmune"]
4
+ spec.version = "0.1.2"
5
+ spec.authors = ["Tomohiro Mitsumune"]
6
6
  spec.summary = "Apache Error Log parser plugin for Embulk"
7
7
  spec.description = "Parses Apache Error Log files read by other file input plugins."
8
8
  spec.email = ["tmitsumune@gmail.com"]
@@ -1,4 +1,4 @@
1
- module Embulk
1
+ module Embulk
2
2
  module Parser
3
3
 
4
4
  class ApacheErrorLog < ParserPlugin
@@ -6,7 +6,6 @@ module Embulk
6
6
 
7
7
  def self.transaction(config, &control)
8
8
  # configuration code:
9
- puts config
10
9
  task = {
11
10
  'hostname' => config.param('hostname', :string, default: '')
12
11
  }
@@ -0,0 +1,3 @@
1
+ [Wed Nov 30 21:00:40 2016] [error] (70007)The timeout specified has expired: ajp_ilink_receive() can't receive header
2
+ [Wed Nov 30 21:39:25 2016] [error] [client 127.0.0.1] client denied by server configuration: /var/www/public_html/
3
+ [Wed Nov 30 21:39:25 2016] [error] [client 127.0.0.1] client denied by server configuration: /var/www/public_html/error/noindex.html
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-parser-apache_error_log
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
- - Tomohiro Mitsusmune
7
+ - Tomohiro Mitsumune
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-30 00:00:00.000000000 Z
11
+ date: 2016-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -68,6 +68,7 @@ files:
68
68
  - embulk-parser-apache_error_log.gemspec
69
69
  - lib/embulk/guess/apache_error_log.rb
70
70
  - lib/embulk/parser/apache_error_log.rb
71
+ - samples/error.log
71
72
  homepage: https://github.com/tmitz/embulk-parser-apache_error_log
72
73
  licenses:
73
74
  - MIT