logstash-filter-date 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: a3220782531fdb4998fbecc6913dcb3d5cad8419
4
- data.tar.gz: 92a10ac034235e59da6589c322bd248666fa22d5
3
+ metadata.gz: b0f67caeabb6379eade0358f6bd5fb743f98f4d2
4
+ data.tar.gz: afa8b07d3c710668fa17778deb88ab4c610802a3
5
5
  SHA512:
6
- metadata.gz: f6b3b1f6e8f7d4ce0cbf6e40b039832ccfac7212cd5832e42691ba59b102cf250574ac869b12510119c19db7a0fcdffaa2c10dbb083fdf038b6c042da74083aa
7
- data.tar.gz: 50bf360f1d55e8f2fa216159881b4c29c57c7fbd561cd215ce965ed9501d11f39fc2d571ab867ccfae16874e32ee3efa00b592136360421bf882667bc6fc5948
6
+ metadata.gz: 1e3be14a78bb4713c271c4e862bedd13effd8269b6c1bbfa9aa7e269845aa931904e380cf16e8f5b2646788466039aadc7e49180400530731cb5cdb5e7480554
7
+ data.tar.gz: fc667a67b47726496824dc05358f1e5e99852fba1c3a524e581a7ed93579f611cb67511a1c14a017f7d91fa3271402d04889acb2f47c680d1191550233645093
@@ -0,0 +1,32 @@
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
+ * Aaron Mildenstein (untergeek)
6
+ * Bob Corsaro (dokipen)
7
+ * Christian S. (squiddle)
8
+ * Colin Surprenant (colinsurprenant)
9
+ * Danny Berger (dpb587)
10
+ * James Turnbull (jamtur01)
11
+ * Jason Kendall (coolacid)
12
+ * John E. Vincent (lusis)
13
+ * Jonathan Van Eenwyk (jdve)
14
+ * Jordan Sissel (jordansissel)
15
+ * Kevin O'Connor (kjoconnor)
16
+ * Kurt Hurtado (kurtado)
17
+ * Mike Worth (MikeWorth)
18
+ * Nick Ethier (nickethier)
19
+ * Olivier Le Moal (olivierlemoal)
20
+ * Pete Fritchman (fetep)
21
+ * Philippe Weber (wiibaa)
22
+ * Pier-Hugues Pellerin (ph)
23
+ * Pierre Baillet (octplane)
24
+ * Ralph Meijer (ralphm)
25
+ * Richard Pijnenburg (electrical)
26
+ * Suyog Rao (suyograo)
27
+ * debadair
28
+
29
+ Note: If you've sent us patches, bug reports, or otherwise contributed to
30
+ Logstash, and you aren't on the list above and want to be, please let us know
31
+ and we'll make sure you're here. Contributions from folks like you are what make
32
+ 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.
@@ -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.
@@ -27,7 +27,6 @@ class LogStash::Filters::Date < LogStash::Filters::Base
27
27
  end
28
28
 
29
29
  config_name "date"
30
- milestone 3
31
30
 
32
31
  # Specify a time zone canonical ID to be used for date parsing.
33
32
  # The valid IDs are listed on the http://joda-time.sourceforge.net/timezones.html[Joda.org available time zones page].
@@ -67,8 +66,8 @@ class LogStash::Filters::Date < LogStash::Filters::Base
67
66
  #
68
67
  # * `ISO8601` - should parse any valid ISO8601 timestamp, such as
69
68
  # `2011-04-19T03:44:01.103Z`
70
- # * `UNIX` - will parse unix time in seconds since epoch
71
- # * `UNIX_MS` - will parse unix time in milliseconds since epoch
69
+ # * `UNIX` - will parse *float or int* value expressing unix time in seconds since epoch like 1326149001.132 as well as 1326149001
70
+ # * `UNIX_MS` - will parse **int** value expressing unix time in milliseconds since epoch like 1366125117000
72
71
  # * `TAI64N` - will parse tai64n time values
73
72
  #
74
73
  # For example, if you have a field `logdate`, with a value that looks like
@@ -82,7 +81,7 @@ class LogStash::Filters::Date < LogStash::Filters::Base
82
81
  #
83
82
  # If your field is nested in your structure, you can use the nested
84
83
  # syntax `[foo][bar]` to match its value. For more information, please refer to
85
- # http://logstash.net/docs/latest/configuration#fieldreferences
84
+ # http://www.elasticsearch.org/guide/en/logstash/current/_logstash_config_language.html#_field_references
86
85
  config :match, :validate => :array, :default => []
87
86
 
88
87
  # Store the matching timestamp into the given target field. If not provided,
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-filter-date'
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 date filter is used for parsing dates from fields, and then using that date or timestamp as the logstash timestamp for the 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"
metadata CHANGED
@@ -1,18 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-date
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,64 +30,62 @@ 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-input-generator
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-input-generator
45
40
  prerelease: false
46
41
  type: :runtime
47
- - !ruby/object:Gem::Dependency
48
- name: logstash-codec-json
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-codec-json
59
54
  prerelease: false
60
55
  type: :runtime
61
- - !ruby/object:Gem::Dependency
62
- name: logstash-output-null
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-output-null
73
68
  prerelease: false
74
69
  type: :runtime
75
- - !ruby/object:Gem::Dependency
76
- name: logstash-devutils
77
70
  version_requirements: !ruby/object:Gem::Requirement
78
71
  requirements:
79
72
  - - '>='
80
73
  - !ruby/object:Gem::Version
81
74
  version: '0'
75
+ - !ruby/object:Gem::Dependency
82
76
  requirement: !ruby/object:Gem::Requirement
83
77
  requirements:
84
78
  - - '>='
85
79
  - !ruby/object:Gem::Version
86
80
  version: '0'
81
+ name: logstash-devutils
87
82
  prerelease: false
88
83
  type: :development
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
89
  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
90
90
  email: info@elasticsearch.com
91
91
  executables: []
@@ -93,8 +93,10 @@ extensions: []
93
93
  extra_rdoc_files: []
94
94
  files:
95
95
  - .gitignore
96
+ - CONTRIBUTORS
96
97
  - Gemfile
97
98
  - LICENSE
99
+ - README.md
98
100
  - Rakefile
99
101
  - lib/logstash/filters/date.rb
100
102
  - logstash-filter-date.gemspec
@@ -121,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
123
  version: '0'
122
124
  requirements: []
123
125
  rubyforge_project:
124
- rubygems_version: 2.4.4
126
+ rubygems_version: 2.1.9
125
127
  signing_key:
126
128
  specification_version: 4
127
129
  summary: The date filter is used for parsing dates from fields, and then using that date or timestamp as the logstash timestamp for the event.