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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 14c03116c883df83068a277ad35fd2ab1cb84c0f2142fdd2b83e0bddd39861e0
4
- data.tar.gz: e9ba4c94c720c84e15bf8180a2fb8188dcf1d742f5955a71d45597645776840e
2
+ SHA1:
3
+ metadata.gz: 4d2207840796781ef249e61f3bd27d46ee91a20a
4
+ data.tar.gz: 2a5066f5937197bcfa2e3b7db25296dbaaecb56a
5
5
  SHA512:
6
- metadata.gz: 5deb0abe32d335230bb52df8cd0b3bfe382d1a8e41411c9fbbf406a25c6f22833069adba8bdeab0f44930cf1d736f6abc807fd93f7ae45b247c96d150aa12b82
7
- data.tar.gz: 3996674c83acc0aff20073ff7fbdbb2ebdd70eab35789a0686b3b69232b6eed36c2906cbec2bd7e06bbfd392494aaaadbca5ee01f7d11f8e48ae3c0924c0e7af
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.1'
4
- s.date = '2019-05-13'
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.14'
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.1
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-13 00:00:00.000000000 Z
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.14
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.14
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.7.3
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.