logstash-input-gelfx 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTORS +2 -0
- data/README.md +8 -1
- data/logstash-input-gelfx.gemspec +3 -3
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0e714f8f36e0c664a5d091c87f676eb05b3fea4
|
4
|
+
data.tar.gz: 88c39f333e44b4eb6f0939aaf9c932c5c59f55e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 276433df374657b7193c3b4b1b4f69bfec43c1da1403e452171a62c94e09d3e3903599d987360e4e9efd2b4588b2a47796caeb2cad4671ffcb0eabdb9d730ab9
|
7
|
+
data.tar.gz: 12e2378a8b9f305114c23e10c5cf6f14f2be32f895e867173e4eb0b2a014995e441202fa240c89c5d1dfac58211005852e480655637868611026c94147d4470e
|
data/CONTRIBUTORS
CHANGED
data/README.md
CHANGED
@@ -79,8 +79,15 @@ You can use the same **2.1** method to run your plugin in an installed Logstash
|
|
79
79
|
|
80
80
|
- Build your plugin gem
|
81
81
|
```sh
|
82
|
-
gem build logstash-
|
82
|
+
gem build logstash-input-gelfx.gemspec
|
83
83
|
```
|
84
|
+
|
85
|
+
- Publish your plugin gem
|
86
|
+
```sh
|
87
|
+
gem build logstash-input-gelfx.gemspec
|
88
|
+
```
|
89
|
+
|
90
|
+
|
84
91
|
- Install the plugin from the Logstash home
|
85
92
|
```sh
|
86
93
|
# Logstash 2.3 and higher
|
@@ -1,11 +1,11 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-gelfx'
|
4
|
-
s.version = '1.0.
|
4
|
+
s.version = '1.0.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "This input will read GELF messages as events over the network, making it a good choice if you already use Graylog2 today."
|
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
|
-
s.authors = ["Elastic"]
|
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. Modifications done on the gelf gem for simpler usage by Leffen"
|
8
|
+
s.authors = ["Elastic","leffen"]
|
9
9
|
s.email = 'info@elastic.co'
|
10
10
|
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
|
11
11
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-gelfx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
|
+
- leffen
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
@@ -114,7 +115,7 @@ dependencies:
|
|
114
115
|
- - ">="
|
115
116
|
- !ruby/object:Gem::Version
|
116
117
|
version: '0'
|
117
|
-
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
|
118
|
+
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. Modifications done on the gelf gem for simpler usage by Leffen
|
118
119
|
email: info@elastic.co
|
119
120
|
executables: []
|
120
121
|
extensions: []
|