logstash-input-generator 2.0.4 → 3.0.0

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: 0939747daa625107f8c42d97df077dc28a38db96
4
- data.tar.gz: 237c5876b3fa9c09ceb9c01de4e6603bb24c1ecd
3
+ metadata.gz: 2dd0b3b3aabf16976785125861bd07088a03a08d
4
+ data.tar.gz: 9514f01b795498417fd1ae4fca0f57219cede195
5
5
  SHA512:
6
- metadata.gz: 04f13c446a09f12aedeed8c2a7ad824a8adbcf99dd51cf1761317f9fbac6776e58712103259fbce6295d3c82e300f79bd68ae2ec295ecbb748feb31bb02b9a2a
7
- data.tar.gz: 48c54a32ecc02ec5980ec661f083ec6fcb5c8d1814bd71be9751b8e166e030356c6536906b7d36ab56e4b62bbaaad013806598593abd9f274ce9a901b8f8335d
6
+ metadata.gz: 3f888fc323121e69fab4c4a10490b6caa9177b8d27b5e2995ca704687a214efd4db8217ed36a7c820db0c429d3de4cc2894313dbf90e3c3b22c8e232b8bc9c3f
7
+ data.tar.gz: 50aac279448ec40515ce2f93cd53b52e6b0ce9d4b9b0fc472f80753f66d43c12baf11aa95b0f237ce3d03cd5c114d9f095b954717e17d9b34d21261c22297afb
@@ -1,3 +1,5 @@
1
+ ## 3.0.0
2
+ - Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
1
3
  # 2.0.4
2
4
  - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
3
5
  # 2.0.3
data/Gemfile CHANGED
@@ -1,2 +1,4 @@
1
1
  source 'https://rubygems.org'
2
- gemspec
2
+
3
+ # Specify your gem's dependencies in logstash-mass_effect.gemspec
4
+ gemspec
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2015 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012–2016 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.
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Logstash Plugin
2
2
 
3
- [![Build
4
- Status](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Inputs/job/logstash-plugin-input-generator-unit/badge/icon)](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Inputs/job/logstash-plugin-input-generator-unit/)
3
+ [![Travis Build Status](https://travis-ci.org/logstash-plugins/logstash-input-generator.svg)](https://travis-ci.org/logstash-plugins/logstash-input-generator)
5
4
 
6
5
  This is a plugin for [Logstash](https://github.com/elastic/logstash).
7
6
 
@@ -56,7 +55,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
56
55
  ```
57
56
  - Install plugin
58
57
  ```sh
58
+ # Logstash 2.3 and higher
59
+ bin/logstash-plugin install --no-verify
60
+
61
+ # Prior to Logstash 2.3
59
62
  bin/plugin install --no-verify
63
+
60
64
  ```
61
65
  - Run Logstash with your plugin
62
66
  ```sh
@@ -74,7 +78,12 @@ gem build logstash-filter-awesome.gemspec
74
78
  ```
75
79
  - Install the plugin from the Logstash home
76
80
  ```sh
77
- bin/plugin install /your/local/plugin/logstash-filter-awesome.gem
81
+ # Logstash 2.3 and higher
82
+ bin/logstash-plugin install --no-verify
83
+
84
+ # Prior to Logstash 2.3
85
+ bin/plugin install --no-verify
86
+
78
87
  ```
79
88
  - Start Logstash and proceed to test the plugin
80
89
 
@@ -66,8 +66,8 @@ class LogStash::Inputs::Generator < LogStash::Inputs::Threadable
66
66
  @lines.each do |line|
67
67
  @codec.decode(line.clone) do |event|
68
68
  decorate(event)
69
- event["host"] = @host
70
- event["sequence"] = number
69
+ event.set("host", @host)
70
+ event.set("sequence", number)
71
71
  queue << event
72
72
  end
73
73
  end
@@ -77,7 +77,7 @@ class LogStash::Inputs::Generator < LogStash::Inputs::Threadable
77
77
  if @codec.respond_to?(:flush)
78
78
  @codec.flush do |event|
79
79
  decorate(event)
80
- event["host"] = @host
80
+ event.set("host", @host)
81
81
  queue << event
82
82
  end
83
83
  end
@@ -88,7 +88,7 @@ class LogStash::Inputs::Generator < LogStash::Inputs::Threadable
88
88
  if @codec.respond_to?(:flush)
89
89
  @codec.flush do |event|
90
90
  decorate(event)
91
- event["host"] = @host
91
+ event.set("host", @host)
92
92
  queue << event
93
93
  end
94
94
  end
@@ -1,10 +1,10 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-generator'
4
- s.version = '2.0.4'
4
+ s.version = '3.0.0'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Generate random log events."
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"
7
+ s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
8
8
  s.authors = ["Elastic"]
9
9
  s.email = 'info@elastic.co'
10
10
  s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
@@ -20,9 +20,9 @@ Gem::Specification.new do |s|
20
20
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
21
21
 
22
22
  # Gem dependencies
23
- s.add_runtime_dependency "logstash-core-plugin-api", "~> 1.0"
24
-
23
+ s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
25
24
  s.add_runtime_dependency 'logstash-codec-plain'
25
+
26
26
  s.add_development_dependency 'logstash-devutils'
27
27
  end
28
28
 
@@ -21,11 +21,11 @@ describe LogStash::Inputs::Generator do
21
21
  2.times.map{queue.pop}
22
22
  end
23
23
 
24
- insist { events[0]["sequence"] } == 0
25
- insist { events[0]["message"] } == "foo"
24
+ insist { events[0].get("sequence") } == 0
25
+ insist { events[0].get("message") } == "foo"
26
26
 
27
- insist { events[1]["sequence"] } == 1
28
- insist { events[1]["message"] } == "foo"
27
+ insist { events[1].get("sequence") } == 1
28
+ insist { events[1].get("message") } == "foo"
29
29
  end
30
30
 
31
31
  it "should generate message from stdin" do
@@ -47,11 +47,11 @@ describe LogStash::Inputs::Generator do
47
47
  2.times.map{queue.pop}
48
48
  end
49
49
 
50
- insist { events[0]["sequence"] } == 0
51
- insist { events[0]["message"] } == "bar"
50
+ insist { events[0].get("sequence") } == 0
51
+ insist { events[0].get("message") } == "bar"
52
52
 
53
- insist { events[1]["sequence"] } == 1
54
- insist { events[1]["message"] } == "bar"
53
+ insist { events[1].get("sequence") } == 1
54
+ insist { events[1].get("message") } == "bar"
55
55
 
56
56
  $stdin = saved_stdin
57
57
  end
metadata CHANGED
@@ -1,58 +1,60 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-24 00:00:00.000000000 Z
11
+ date: 2016-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
+ name: logstash-core-plugin-api
14
15
  requirement: !ruby/object:Gem::Requirement
15
16
  requirements:
16
17
  - - "~>"
17
18
  - !ruby/object:Gem::Version
18
- version: '1.0'
19
- name: logstash-core-plugin-api
20
- prerelease: false
19
+ version: '2.0'
21
20
  type: :runtime
21
+ prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.0'
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
+ name: logstash-codec-plain
28
29
  requirement: !ruby/object:Gem::Requirement
29
30
  requirements:
30
31
  - - ">="
31
32
  - !ruby/object:Gem::Version
32
33
  version: '0'
33
- name: logstash-codec-plain
34
- prerelease: false
35
34
  type: :runtime
35
+ prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
+ name: logstash-devutils
42
43
  requirement: !ruby/object:Gem::Requirement
43
44
  requirements:
44
45
  - - ">="
45
46
  - !ruby/object:Gem::Version
46
47
  version: '0'
47
- name: logstash-devutils
48
- prerelease: false
49
48
  type: :development
49
+ prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- 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
55
+ description: This gem is a Logstash plugin required to be installed on top of the
56
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
57
+ gem is not a stand-alone program
56
58
  email: info@elastic.co
57
59
  executables: []
58
60
  extensions: []
@@ -73,7 +75,7 @@ licenses:
73
75
  metadata:
74
76
  logstash_plugin: 'true'
75
77
  logstash_group: input
76
- post_install_message:
78
+ post_install_message:
77
79
  rdoc_options: []
78
80
  require_paths:
79
81
  - lib
@@ -88,9 +90,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
90
  - !ruby/object:Gem::Version
89
91
  version: '0'
90
92
  requirements: []
91
- rubyforge_project:
92
- rubygems_version: 2.4.8
93
- signing_key:
93
+ rubyforge_project:
94
+ rubygems_version: 2.5.1
95
+ signing_key:
94
96
  specification_version: 4
95
97
  summary: Generate random log events.
96
98
  test_files: