logstash-filter-mutate 0.1.2 → 0.1.3

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: 3bc48a969400c2b460590961aa3fbf164c9482ec
4
- data.tar.gz: a0c6d9cf3569d570361dae0f1cd3041e6a9d8a51
3
+ metadata.gz: 8098b99e4e29368986bbb22c38f4812a1fa8efe6
4
+ data.tar.gz: 46c84245998bdb472e9ee6bcec19918304f42be2
5
5
  SHA512:
6
- metadata.gz: c3763d7e7b2c00ea28d2609831037a514e3c5909906d8adbc7588ee4cb42979d6f0185a940a76229f0c2cdf6784eaa9c56b024d58ab188325d4550105074ae42
7
- data.tar.gz: 6edeb18f46779b19bd3c4fbe4fc3d6b7092728dda7d8211bc233907e11d8c88f9c4e098ffb04f4805e58255a7ac3602cddb6b6e5333ee4a3dd0c131b16292945
6
+ metadata.gz: 67c7e1f6123905f84b7b0b1a1e4f4ebf22668225a2c5be3ec10e246e5f565bc113852d9765bea3981016820927757b2c49b6b959884cc24f84bf095e1ddd861f
7
+ data.tar.gz: 5c205f1401d8f19fb526e39cb18723d7e87499867ebb6fc8a069024d5e2fc24dd2baec3c7301fc1216f16522937e7733491e4870f557db62d7077e0f156ea609
data/CONTRIBUTORS ADDED
@@ -0,0 +1,31 @@
1
+ The following is a list of people who have contributed ideas, code, bug
2
+ reports, or in general have helped logstash along its way.
3
+
4
+ Contributors:
5
+ * Andrew Rowson (growse)
6
+ * Avishai Ish-Shalom (avishai-ish-shalom)
7
+ * Christian S. (squiddle)
8
+ * Colin Surprenant (colinsurprenant)
9
+ * Danny Berger (dpb587)
10
+ * Ehtesh Choudhury (shurane)
11
+ * Guillaume ZITTA (gza)
12
+ * John E. Vincent (lusis)
13
+ * Jonathan Van Eenwyk (jdve)
14
+ * Jordan Sissel (jordansissel)
15
+ * Kesavan Rengarajan (cosmok)
16
+ * Kurt Hurtado (kurtado)
17
+ * Laust Rud Jacobsen (rud)
18
+ * Nick Ethier (nickethier)
19
+ * Pete Fritchman (fetep)
20
+ * Philippe Weber (wiibaa)
21
+ * Pier-Hugues Pellerin (ph)
22
+ * Ralph Meijer (ralphm)
23
+ * Richard Pijnenburg (electrical)
24
+ * Suyog Rao (suyograo)
25
+ * Tal Levy (talevy)
26
+ * piavlo
27
+
28
+ Note: If you've sent us patches, bug reports, or otherwise contributed to
29
+ Logstash, and you aren't on the list above and want to be, please let us know
30
+ and we'll make sure you're here. Contributions from folks like you are what make
31
+ open source awesome.
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012-2014 Elasticsearch <http://www.elasticsearch.org>
1
+ Copyright (c) 2012-2015 Elasticsearch <http://www.elasticsearch.org>
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 ADDED
@@ -0,0 +1,95 @@
1
+ # Logstash Plugin
2
+
3
+ This is a plugin for [Logstash](https://github.com/elasticsearch/logstash).
4
+
5
+ It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
6
+
7
+ ## Documentation
8
+
9
+ Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elasticsearch.org/guide/en/logstash/current/).
10
+
11
+ - For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
12
+ - For more asciidoc formatting tips, see the excellent reference here https://github.com/elasticsearch/docs#asciidoc-guide
13
+
14
+ ## Need Help?
15
+
16
+ Need help? Try #logstash on freenode IRC or the logstash-users@googlegroups.com mailing list.
17
+
18
+ ## Developing
19
+
20
+ ### 1. Plugin Developement and Testing
21
+
22
+ #### Code
23
+ - To get started, you'll need JRuby with the Bundler gem installed.
24
+
25
+ - Create a new plugin or clone and existing from the GitHub [logstash-plugins](https://github.com/logstash-plugins) organization.
26
+
27
+ - Install dependencies
28
+ ```sh
29
+ bundle install
30
+ ```
31
+
32
+ #### Test
33
+
34
+ ```sh
35
+ bundle exec rspec
36
+ ```
37
+
38
+ The Logstash code required to run the tests/specs is specified in the `Gemfile` by the line similar to:
39
+ ```ruby
40
+ gem "logstash", :github => "elasticsearch/logstash", :branch => "1.5"
41
+ ```
42
+ To test against another version or a local Logstash, edit the `Gemfile` to specify an alternative location, for example:
43
+ ```ruby
44
+ gem "logstash", :github => "elasticsearch/logstash", :ref => "master"
45
+ ```
46
+ ```ruby
47
+ gem "logstash", :path => "/your/local/logstash"
48
+ ```
49
+
50
+ Then update your dependencies and run your tests:
51
+
52
+ ```sh
53
+ bundle install
54
+ bundle exec rspec
55
+ ```
56
+
57
+ ### 2. Running your unpublished Plugin in Logstash
58
+
59
+ #### 2.1 Run in a local Logstash clone
60
+
61
+ - Edit Logstash `tools/Gemfile` and add the local plugin path, for example:
62
+ ```ruby
63
+ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
64
+ ```
65
+ - Update Logstash dependencies
66
+ ```sh
67
+ rake vendor:gems
68
+ ```
69
+ - Run Logstash with your plugin
70
+ ```sh
71
+ bin/logstash -e 'filter {awesome {}}'
72
+ ```
73
+ At this point any modifications to the plugin code will be applied to this local Logstash setup. After modifying the plugin, simply rerun Logstash.
74
+
75
+ #### 2.2 Run in an installed Logstash
76
+
77
+ - Build your plugin gem
78
+ ```sh
79
+ gem build logstash-filter-awesome.gemspec
80
+ ```
81
+ - Install the plugin from the Logstash home
82
+ ```sh
83
+ bin/plugin install /your/local/plugin/logstash-filter-awesome.gem
84
+ ```
85
+ - Start Logstash and proceed to test the plugin
86
+
87
+ ## Contributing
88
+
89
+ All contributions are welcome: ideas, patches, documentation, bug reports, complaints, and even something you drew up on a napkin.
90
+
91
+ Programming is not a required skill. Whatever you've seen about open source and maintainers or community members saying "send patches or die" - you will not see that here.
92
+
93
+ It is more important to me that you are able to contribute.
94
+
95
+ For more information about contributing, see the [CONTRIBUTING](https://github.com/elasticsearch/logstash/blob/master/CONTRIBUTING.md) file.
@@ -8,7 +8,6 @@ require "logstash/namespace"
8
8
  # TODO(sissel): Support regexp replacements like `String#gsub` ?
9
9
  class LogStash::Filters::Mutate < LogStash::Filters::Base
10
10
  config_name "mutate"
11
- milestone 3
12
11
 
13
12
  # Rename one or more fields.
14
13
  #
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-filter-mutate'
4
- s.version = '0.1.2'
4
+ s.version = '0.1.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "The mutate filter allows you to perform general mutations on fields. You can rename, remove, replace, and modify fields in your events."
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"
@@ -207,6 +207,21 @@ describe LogStash::Filters::Mutate do
207
207
  end
208
208
  end
209
209
 
210
+ describe "convert should work within arrays" do
211
+ config <<-CONFIG
212
+ filter {
213
+ mutate {
214
+ convert => [ "[foo][0]", "integer" ]
215
+ }
216
+ }
217
+ CONFIG
218
+
219
+ sample({ "foo" => ["100", "200"] }) do
220
+ insist { subject["[foo][0]"] } == 100
221
+ insist { subject["[foo][0]"] }.is_a?(Fixnum)
222
+ end
223
+ end
224
+
210
225
  #LOGSTASH-1529
211
226
  describe "gsub on a String with dynamic fields (%{}) in pattern" do
212
227
  config '
metadata CHANGED
@@ -1,18 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-mutate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-19 00:00:00.000000000 Z
11
+ date: 2015-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: logstash
15
- version_requirements: !ruby/object:Gem::Requirement
14
+ requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
16
  - - '>='
18
17
  - !ruby/object:Gem::Version
@@ -20,7 +19,10 @@ dependencies:
20
19
  - - <
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.0.0
23
- requirement: !ruby/object:Gem::Requirement
22
+ name: logstash
23
+ prerelease: false
24
+ type: :runtime
25
+ version_requirements: !ruby/object:Gem::Requirement
24
26
  requirements:
25
27
  - - '>='
26
28
  - !ruby/object:Gem::Version
@@ -28,50 +30,48 @@ dependencies:
28
30
  - - <
29
31
  - !ruby/object:Gem::Version
30
32
  version: 2.0.0
31
- prerelease: false
32
- type: :runtime
33
33
  - !ruby/object:Gem::Dependency
34
- name: logstash-patterns-core
35
- version_requirements: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - '>='
38
- - !ruby/object:Gem::Version
39
- version: '0'
40
34
  requirement: !ruby/object:Gem::Requirement
41
35
  requirements:
42
36
  - - '>='
43
37
  - !ruby/object:Gem::Version
44
38
  version: '0'
39
+ name: logstash-patterns-core
45
40
  prerelease: false
46
41
  type: :runtime
47
- - !ruby/object:Gem::Dependency
48
- name: logstash-filter-grok
49
42
  version_requirements: !ruby/object:Gem::Requirement
50
43
  requirements:
51
44
  - - '>='
52
45
  - !ruby/object:Gem::Version
53
46
  version: '0'
47
+ - !ruby/object:Gem::Dependency
54
48
  requirement: !ruby/object:Gem::Requirement
55
49
  requirements:
56
50
  - - '>='
57
51
  - !ruby/object:Gem::Version
58
52
  version: '0'
53
+ name: logstash-filter-grok
59
54
  prerelease: false
60
55
  type: :runtime
61
- - !ruby/object:Gem::Dependency
62
- name: logstash-devutils
63
56
  version_requirements: !ruby/object:Gem::Requirement
64
57
  requirements:
65
58
  - - '>='
66
59
  - !ruby/object:Gem::Version
67
60
  version: '0'
61
+ - !ruby/object:Gem::Dependency
68
62
  requirement: !ruby/object:Gem::Requirement
69
63
  requirements:
70
64
  - - '>='
71
65
  - !ruby/object:Gem::Version
72
66
  version: '0'
67
+ name: logstash-devutils
73
68
  prerelease: false
74
69
  type: :development
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
75
  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
76
76
  email: info@elasticsearch.com
77
77
  executables: []
@@ -79,8 +79,10 @@ extensions: []
79
79
  extra_rdoc_files: []
80
80
  files:
81
81
  - .gitignore
82
+ - CONTRIBUTORS
82
83
  - Gemfile
83
84
  - LICENSE
85
+ - README.md
84
86
  - Rakefile
85
87
  - lib/logstash/filters/mutate.rb
86
88
  - logstash-filter-mutate.gemspec
@@ -107,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
109
  version: '0'
108
110
  requirements: []
109
111
  rubyforge_project:
110
- rubygems_version: 2.4.4
112
+ rubygems_version: 2.1.9
111
113
  signing_key:
112
114
  specification_version: 4
113
115
  summary: The mutate filter allows you to perform general mutations on fields. You can rename, remove, replace, and modify fields in your events.