logstash-output-gelf 3.1.4 → 3.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +12 -0
- data/LICENSE +1 -1
- data/docs/index.asciidoc +18 -3
- data/logstash-output-gelf.gemspec +2 -2
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2caa3774bcf7cb5db418d4d5e03ba093869910bb235a32d41bf6a63de1c8ff67
|
4
|
+
data.tar.gz: 43a79c34364e14d94ba864abdc4d62d97c2c6027020a6bade9f15b60bdf33592
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba045693f13ce20c2036bc1475b77736ebdc91b4af44f4e7b1d27068819140e1207505af79e5affa2582cbe4b4aa9d70dab7cb46fb62b845a0f630bcd05ff011
|
7
|
+
data.tar.gz: 99657ad7a5b97b79aff2cc06abc48e3f4ba068b95b4710f330984b913f971303d4bfdf8ac7f3ab0bdd01391cd09b2ab27455673f91546cf4d313baed372aef01
|
data/CHANGELOG.md
CHANGED
@@ -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
data/docs/index.asciidoc
CHANGED
@@ -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://
|
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
|
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
|
+
s.version = '3.1.7'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
|
-
s.summary = "
|
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
|
+
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:
|
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
|
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.
|
116
|
+
rubygems_version: 2.6.11
|
115
117
|
signing_key:
|
116
118
|
specification_version: 4
|
117
|
-
summary:
|
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
|