logstash-output-logentries 0.1.0 → 0.1.1
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 +4 -4
- data/Gemfile +1 -3
- data/README.md +5 -5
- data/logstash-output-logentries.gemspec +3 -3
- metadata +7 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5086804beaa855586464d390ca6e7af76348fb94
|
|
4
|
+
data.tar.gz: 09421ee2459c70d2d6ee91b859ca133ee9c57d46
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 870e20afeeae176399870e2aae5ade8b77c7e221a2807f51cbc3d9ff23fcec3219a365935ca9384fef901637f851334a19a38c08282dec82f021c707ab6c9ea2
|
|
7
|
+
data.tar.gz: 97d987a0cf8e0d60a54b03990cda7598a22251d020b0b7f9c2ab69bb53305e466da787b8cd7e9478cb4169be2f45211ed2e2c1977b7defc83b2f01f69a86cf2e
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Logentries - Logstash Output Plugin
|
|
2
2
|
|
|
3
|
-
This is a plugin for [Logentries](https://www.logentries.com) and Logstash.
|
|
3
|
+
This is a plugin for [Logentries](https://www.logentries.com) and Logstash.
|
|
4
4
|
|
|
5
5
|
# Send logs using token
|
|
6
|
-
You can forward logs from Logstash to
|
|
6
|
+
You can forward logs from Logstash to Logentries using unique token. To do this you have to configure the output sectin of your .conf file in your logstash main folder.
|
|
7
7
|
|
|
8
8
|
output {
|
|
9
9
|
logentries{
|
|
@@ -11,15 +11,15 @@ output {
|
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
Please refer to this [blog](link here) for more information and instruction on how to set up your .config file.
|
|
14
|
+
Please refer to this [blog](link here) for more information and instruction on how to set up your .config file.
|
|
15
15
|
|
|
16
|
-
#
|
|
16
|
+
# Logentries Token
|
|
17
17
|
|
|
18
18
|
You can find the instructions about Token based input [here](https://logentries.com/doc/input-token/)
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
## Need Help?
|
|
22
22
|
|
|
23
|
-
Try #logstash on freenode IRC or the logstash-users@googlegroups.com mailing
|
|
23
|
+
Try #logstash on freenode IRC or the logstash-users@googlegroups.com mailing
|
|
24
24
|
|
|
25
25
|
You can also refer to [Logentries DOCs](https://logentries.com/doc/)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-logentries'
|
|
4
|
-
s.version = '0.1.
|
|
4
|
+
s.version = '0.1.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
|
-
s.summary = "You can forward logs from Logstash to
|
|
6
|
+
s.summary = "You can forward logs from Logstash to Logentries using unique token."
|
|
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"
|
|
8
8
|
s.authors = ["Logentries - Bart Siniarski"]
|
|
9
9
|
s.email = 'info@elasticsearch.com'
|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
|
|
21
21
|
|
|
22
22
|
# Gem dependencies
|
|
23
|
-
s.add_runtime_dependency
|
|
23
|
+
s.add_runtime_dependency "logstash-core"
|
|
24
24
|
|
|
25
25
|
s.add_development_dependency 'logstash-devutils'
|
|
26
26
|
end
|
metadata
CHANGED
|
@@ -1,35 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-logentries
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Logentries - Bart Siniarski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: logstash
|
|
14
|
+
name: logstash-core
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
20
|
-
- - <
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: 2.0.0
|
|
19
|
+
version: '0'
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
23
|
requirements:
|
|
27
24
|
- - '>='
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
|
-
version:
|
|
30
|
-
- - <
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: 2.0.0
|
|
26
|
+
version: '0'
|
|
33
27
|
- !ruby/object:Gem::Dependency
|
|
34
28
|
name: logstash-devutils
|
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -84,9 +78,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
84
78
|
version: '0'
|
|
85
79
|
requirements: []
|
|
86
80
|
rubyforge_project:
|
|
87
|
-
rubygems_version: 2.
|
|
81
|
+
rubygems_version: 2.4.8
|
|
88
82
|
signing_key:
|
|
89
83
|
specification_version: 4
|
|
90
|
-
summary: You can forward logs from Logstash to
|
|
84
|
+
summary: You can forward logs from Logstash to Logentries using unique token.
|
|
91
85
|
test_files:
|
|
92
86
|
- spec/outputs/logentries_spec.rb
|