logstash-output-gelf 3.1.4 → 3.1.7

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
- SHA1:
3
- metadata.gz: 2edd2cadb538171e20180eb91e9bcc0cea6674e3
4
- data.tar.gz: 086e53e974ae5ceb1d7feb5b09d1692ec7632f84
2
+ SHA256:
3
+ metadata.gz: 2caa3774bcf7cb5db418d4d5e03ba093869910bb235a32d41bf6a63de1c8ff67
4
+ data.tar.gz: 43a79c34364e14d94ba864abdc4d62d97c2c6027020a6bade9f15b60bdf33592
5
5
  SHA512:
6
- metadata.gz: 8317f509977bc6e7f684d62b086c327eaf9618ffff370093e8557851441a3ea2c888f35cdecd86d05ec5cd6f165171c5338915b62b52eb5445392d2e8a343c3f
7
- data.tar.gz: 90e1a8a38e93d4374e200203e82ec7b65abb76b4190de28715dc46b803157416b83d762727aba44e9d3baf2b649e62d0c6c3f59ff65601a28ba56e05907f8541
6
+ metadata.gz: ba045693f13ce20c2036bc1475b77736ebdc91b4af44f4e7b1d27068819140e1207505af79e5affa2582cbe4b4aa9d70dab7cb46fb62b845a0f630bcd05ff011
7
+ data.tar.gz: 99657ad7a5b97b79aff2cc06abc48e3f4ba068b95b4710f330984b913f971303d4bfdf8ac7f3ab0bdd01391cd09b2ab27455673f91546cf4d313baed372aef01
@@ -1,6 +1,18 @@
1
+ ## 3.1.7
2
+ - Docs: Set the default_codec doc attribute.
3
+
4
+ ## 3.1.6
5
+ - Add docs for TCP protocol option, which has existed since 3.1.3
6
+
7
+ ## 3.1.5
8
+ - Update gemspec summary
9
+
1
10
  ## 3.1.4
2
11
  - Fix some documentation issues
3
12
 
13
+ ## 3.1.3
14
+ - Add support for output via TCP protocol
15
+
4
16
  ## 3.1.2
5
17
  - Remove call of logger with an array object which caused logstash to terminate
6
18
 
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012-2018 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.
@@ -1,5 +1,6 @@
1
1
  :plugin: gelf
2
2
  :type: output
3
+ :default_codec: plain
3
4
 
4
5
  ///////////////////////////////////////////
5
6
  START - GENERATED VARIABLES, DO NOT EDIT!
@@ -23,7 +24,7 @@ include::{include_path}/plugin_header.asciidoc[]
23
24
  This output generates messages in GELF format. This is most useful if you
24
25
  want to use Logstash to output events to Graylog2.
25
26
 
26
- More information at http://graylog2.org/gelf#specs[The Graylog2 GELF specs page]
27
+ More information at http://docs.graylog.org/en/2.3/pages/gelf.html#gelf-payload-specification[The Graylog2 GELF specs page]
27
28
 
28
29
  [id="plugins-{type}s-{plugin}-options"]
29
30
  ==== Gelf Output Configuration Options
@@ -40,6 +41,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
40
41
  | <<plugins-{type}s-{plugin}-ignore_metadata>> |<<array,array>>|No
41
42
  | <<plugins-{type}s-{plugin}-level>> |<<array,array>>|No
42
43
  | <<plugins-{type}s-{plugin}-port>> |<<number,number>>|No
44
+ | <<plugins-{type}s-{plugin}-protocol>> |<<string,string>>|No
43
45
  | <<plugins-{type}s-{plugin}-sender>> |<<string,string>>|No
44
46
  | <<plugins-{type}s-{plugin}-ship_metadata>> |<<boolean,boolean>>|No
45
47
  | <<plugins-{type}s-{plugin}-ship_tags>> |<<boolean,boolean>>|No
@@ -57,7 +59,7 @@ output plugins.
57
59
  * Value type is <<number,number>>
58
60
  * Default value is `1420`
59
61
 
60
- The GELF chunksize. You usually don't need to change this.
62
+ The chunksize. You usually don't need to change this.
61
63
 
62
64
  [id="plugins-{type}s-{plugin}-custom_fields"]
63
65
  ===== `custom_fields`
@@ -122,6 +124,17 @@ are accepted: "emergency", "alert", "critical", "warning", "notice", and
122
124
 
123
125
  Graylog2 server port number.
124
126
 
127
+ [id="plugins-{type}s-{plugin}-protocol"]
128
+ ===== `protocol`
129
+
130
+ By default, this plugin outputs via the UDP transfer protocol, but can be
131
+ configured to use TCP instead.
132
+
133
+ * Value type is <<string,string>>
134
+ * Default value is `"UDP"`
135
+
136
+ Values here can be either "TCP" or "UDP".
137
+
125
138
  [id="plugins-{type}s-{plugin}-sender"]
126
139
  ===== `sender`
127
140
 
@@ -164,4 +177,6 @@ the event message is taken instead.
164
177
 
165
178
 
166
179
  [id="plugins-{type}s-{plugin}-common-options"]
167
- include::{include_path}/{type}.asciidoc[]
180
+ include::{include_path}/{type}.asciidoc[]
181
+
182
+ :default_codec!:
@@ -1,9 +1,9 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-gelf'
4
- s.version = '3.1.4'
4
+ s.version = '3.1.7'
5
5
  s.licenses = ['Apache License (2.0)']
6
- s.summary = "This output generates messages in GELF format."
6
+ s.summary = "Generates GELF formatted output for Graylog2"
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/logstash-plugin install gemname. This gem is not a stand-alone program"
8
8
  s.authors = ["Elastic"]
9
9
  s.email = 'info@elastic.co'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-gelf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.4
4
+ version: 3.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-16 00:00:00.000000000 Z
11
+ date: 2018-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -72,7 +72,9 @@ dependencies:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
- 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
75
+ description: This gem is a Logstash plugin required to be installed on top of the
76
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
77
+ gem is not a stand-alone program
76
78
  email: info@elastic.co
77
79
  executables: []
78
80
  extensions: []
@@ -111,10 +113,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
113
  version: '0'
112
114
  requirements: []
113
115
  rubyforge_project:
114
- rubygems_version: 2.4.8
116
+ rubygems_version: 2.6.11
115
117
  signing_key:
116
118
  specification_version: 4
117
- summary: This output generates messages in GELF format.
119
+ summary: Generates GELF formatted output for Graylog2
118
120
  test_files:
119
121
  - spec/outputs/gelf_spec.rb
120
122
  - spec/spec_helper.rb