logstash-filter-mutate 0.1.8 → 1.0.0

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: 36f516c5d409bdce072f6f460c041a85c7604587
4
- data.tar.gz: 9ce99da511284ee137f4e896e9892a75a0c9f4f2
3
+ metadata.gz: 4354c58e43d72e6cd7fc60a41f7e5b48331bcaf7
4
+ data.tar.gz: 66e6c06675347f0b253b07b5676782dc1ed17237
5
5
  SHA512:
6
- metadata.gz: 4e7c4427ef17a0dc7076b98409c9452541382c8b7839eb13815caef0e28e5daee51c18c8cb5c48c490490e958b41c0d5c2d428903e2ada4a71316c37c22fc9a3
7
- data.tar.gz: 48631b63b512fb8bcabf6b38d61dce4c5f1bc15b3954f43456fd2d1dcfaab3be17a872eb827af2bd6b8c20543e7db4fed3d6ab049f5e5451d27de8c87f7d6a8c
6
+ metadata.gz: eeb689f3109dbe90ad2e8b1472a453ae4b7ffe5178b49ca8352aadac5a0a9c19b78558454cd6f1b6ec193b6b60785c16a670ec9e8b36ff2c741226ae0d71ac16
7
+ data.tar.gz: 6399801f7de10d778d119fe8472a70e89f0368940996198aa214b3151d29e1efbd2baf13cd4acf8d4044c29bd3161f8d238bae64e02c84d041ee3c4d515925b5
data/CHANGELOG.md ADDED
File without changes
data/NOTICE.TXT ADDED
@@ -0,0 +1,5 @@
1
+ Elasticsearch
2
+ Copyright 2012-2015 Elasticsearch
3
+
4
+ This product includes software developed by The Apache Software
5
+ Foundation (http://www.apache.org/).
data/README.md CHANGED
@@ -13,7 +13,7 @@ Logstash provides infrastructure to automatically generate documentation for thi
13
13
 
14
14
  ## Need Help?
15
15
 
16
- Need help? Try #logstash on freenode IRC or the logstash-users@googlegroups.com mailing list.
16
+ Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
17
17
 
18
18
  ## Developing
19
19
 
@@ -4,8 +4,6 @@ require "logstash/namespace"
4
4
 
5
5
  # The mutate filter allows you to perform general mutations on fields. You
6
6
  # can rename, remove, replace, and modify fields in your events.
7
- #
8
- # TODO(sissel): Support regexp replacements like `String#gsub` ?
9
7
  class LogStash::Filters::Mutate < LogStash::Filters::Base
10
8
  config_name "mutate"
11
9
 
@@ -64,10 +62,12 @@ class LogStash::Filters::Mutate < LogStash::Filters::Base
64
62
  # If the field is a hash, no action will be taken.
65
63
  #
66
64
  # If the conversion type is `boolean`, the acceptable values are:
67
- # **True:** `true`, `t`, `yes`, `y`, and `1`
68
- # **False:** `false`, `f`, `no`, `n`, and `0`
69
- # "true" and "false". If a value other than these is provided, it will
70
- # pass straight through and log a warning message.
65
+ #
66
+ # * **True:** `true`, `t`, `yes`, `y`, and `1`
67
+ # * **False:** `false`, `f`, `no`, `n`, and `0`
68
+ #
69
+ # If a value other than these is provided, it will pass straight through
70
+ # and log a warning message.
71
71
  #
72
72
  # Valid conversion targets are: integer, float, string, and boolean.
73
73
  #
@@ -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.8'
4
+ s.version = '1.0.0'
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"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-mutate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-05 00:00:00.000000000 Z
11
+ date: 2015-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core
@@ -79,9 +79,11 @@ extensions: []
79
79
  extra_rdoc_files: []
80
80
  files:
81
81
  - .gitignore
82
+ - CHANGELOG.md
82
83
  - CONTRIBUTORS
83
84
  - Gemfile
84
85
  - LICENSE
86
+ - NOTICE.TXT
85
87
  - README.md
86
88
  - Rakefile
87
89
  - lib/logstash/filters/mutate.rb
@@ -109,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
111
  version: '0'
110
112
  requirements: []
111
113
  rubyforge_project:
112
- rubygems_version: 2.1.9
114
+ rubygems_version: 2.2.2
113
115
  signing_key:
114
116
  specification_version: 4
115
117
  summary: The mutate filter allows you to perform general mutations on fields. You can rename, remove, replace, and modify fields in your events.