logstash-output-coralogix 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +20 -1
- data/logstash-output-coralogix.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4d2207840796781ef249e61f3bd27d46ee91a20a
|
4
|
+
data.tar.gz: 2a5066f5937197bcfa2e3b7db25296dbaaecb56a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3df35e78214dd980a15404abf869b35a0afbf605dee1107dad8905215b2d1d5e11b9c1047847540c6b84ae818f48d758132ba9a25feed1c1c9f5954c545a68e
|
7
|
+
data.tar.gz: 7317bd4fec3f754472ef997270bc1e34800c4506cefbb8ea817cedc2764c9cca8f1d92f2b5db5e48e7d6407658a53eed74c2084d7b9f31c73969458773ec75c8
|
data/README.md
CHANGED
@@ -94,4 +94,23 @@ Coralogix automatically generates the timestamp based on the log arrival time. I
|
|
94
94
|
|
95
95
|
### JSON support
|
96
96
|
|
97
|
-
In case your raw log message is a JSON object you should set `is_json` key to a **true** value, otherwise you can ignore it.
|
97
|
+
In case your raw log message is a JSON object you should set `is_json` key to a **true** value, otherwise you can ignore it.
|
98
|
+
|
99
|
+
### Proxy support
|
100
|
+
|
101
|
+
This plugin supports sending data via proxy. Here is the example of the configuration:
|
102
|
+
|
103
|
+
```ruby
|
104
|
+
output {
|
105
|
+
coralogix {
|
106
|
+
...
|
107
|
+
# Proxy settings
|
108
|
+
proxy => {
|
109
|
+
host => "PROXY_ADDRESS"
|
110
|
+
port => PROXY_PORT
|
111
|
+
user => "PROXY_USER" # Optional
|
112
|
+
password => "PROXY_PASSWORD" # Optional
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
```
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-output-coralogix'
|
3
|
-
s.version = '1.0.
|
4
|
-
s.date = '2019-05-
|
3
|
+
s.version = '1.0.2'
|
4
|
+
s.date = '2019-05-22'
|
5
5
|
s.licenses = ['Apache-2.0']
|
6
6
|
s.summary = 'Deliver the logs to Coralogix service.'
|
7
7
|
s.description = 'This gem is a Logstash output plugin to deliver the logs to Coralogix service.'
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
22
22
|
# Gem dependencies
|
23
23
|
s.add_runtime_dependency 'logstash-core-plugin-api', '~> 2.0'
|
24
24
|
s.add_runtime_dependency 'logstash-codec-plain'
|
25
|
-
s.add_runtime_dependency 'centralized_ruby_logger', '>= 0.0.
|
25
|
+
s.add_runtime_dependency 'centralized_ruby_logger', '>= 0.0.15'
|
26
26
|
|
27
27
|
s.add_development_dependency 'logstash-devutils'
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-coralogix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Coralogix
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: logstash-core-plugin-api
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.0.
|
47
|
+
version: 0.0.15
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.0.
|
54
|
+
version: 0.0.15
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: logstash-devutils
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
103
|
version: '0'
|
104
104
|
requirements: []
|
105
105
|
rubyforge_project:
|
106
|
-
rubygems_version: 2.
|
106
|
+
rubygems_version: 2.5.2.1
|
107
107
|
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: Deliver the logs to Coralogix service.
|