logstash-filter-json 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 825e18911c25bb5ad94834dc7efb91ec3253ebb9
4
- data.tar.gz: 7a2c95ef588ff8db7ed4f166f92115e91e6ec73d
3
+ metadata.gz: b4abf730a01ac9da979c89a47d2e1b92d657a87f
4
+ data.tar.gz: 03a580d2eac4b824f0f1ec9f5f79f02e0be9a6f4
5
5
  SHA512:
6
- metadata.gz: 54cda02a1b06c364019bbbda7d8e2e8bb747efd749a33aa20f20efd388de187d4d275f05257e8a096425aa7d703a8a2cd594dc0d3438ade0b5c94e06b01fd61c
7
- data.tar.gz: 044c20003c87ec31e90f403f4aa7d7368c25eed14bbc5392bf21ea98a22f319b0e0babdfc54d06a7c835b2578348c249f9fffc971fbafec59e8fe623cf624a89
6
+ metadata.gz: eb74108d4ad143faded3a10c92892ab429bc56b8521b12a519357c9a993a9139ad518b405ed98beebfc3f4ed57d0b439b9f3e52fdc690264f4d7c31322ee53a5
7
+ data.tar.gz: 474d3e47d19b1356b9db9da4e68f188e9ac052a3ebee1aaff04cd87ff1e80720fce9e84411f62237cf12bfa95070e285867d7e86966436d9b394c61a0769abf2
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012-2015 Elasticsearch <http://www.elasticsearch.org>
1
+ Copyright (c) 20122015 Elasticsearch <http://www.elastic.co>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
@@ -18,7 +18,7 @@ class LogStash::Filters::Json < LogStash::Filters::Base
18
18
  # [source,ruby]
19
19
  # source => source_field
20
20
  #
21
- # For example, if you have JSON data in the @message field:
21
+ # For example, if you have JSON data in the `message` field:
22
22
  # [source,ruby]
23
23
  # filter {
24
24
  # json {
@@ -26,7 +26,7 @@ class LogStash::Filters::Json < LogStash::Filters::Base
26
26
  # }
27
27
  # }
28
28
  #
29
- # The above would parse the json from the @message field
29
+ # The above would parse the json from the `message` field
30
30
  config :source, :validate => :string, :required => true
31
31
 
32
32
  # Define the target field for placing the parsed data. If this setting is
@@ -1,13 +1,13 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-filter-json'
4
- s.version = '0.1.4'
4
+ s.version = '0.1.5'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This is a JSON parsing filter. It takes an existing field which contains JSON and expands it into an actual data structure within the Logstash event."
7
7
  s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
8
- s.authors = ["Elasticsearch"]
9
- s.email = 'info@elasticsearch.com'
10
- s.homepage = "http://www.elasticsearch.org/guide/en/logstash/current/index.html"
8
+ s.authors = ["Elastic"]
9
+ s.email = 'info@elastic.co'
10
+ s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
11
11
  s.require_paths = ["lib"]
12
12
 
13
13
  # Files
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-json
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
- - Elasticsearch
7
+ - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-26 00:00:00.000000000 Z
11
+ date: 2015-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -45,7 +45,7 @@ dependencies:
45
45
  - !ruby/object:Gem::Version
46
46
  version: '0'
47
47
  description: This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program
48
- email: info@elasticsearch.com
48
+ email: info@elastic.co
49
49
  executables: []
50
50
  extensions: []
51
51
  extra_rdoc_files: []
@@ -59,7 +59,7 @@ files:
59
59
  - lib/logstash/filters/json.rb
60
60
  - logstash-filter-json.gemspec
61
61
  - spec/filters/json_spec.rb
62
- homepage: http://www.elasticsearch.org/guide/en/logstash/current/index.html
62
+ homepage: http://www.elastic.co/guide/en/logstash/current/index.html
63
63
  licenses:
64
64
  - Apache License (2.0)
65
65
  metadata:
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.4.5
84
+ rubygems_version: 2.1.9
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: This is a JSON parsing filter. It takes an existing field which contains JSON and expands it into an actual data structure within the Logstash event.