logstash-input-azure_event_hubs 1.1.4 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/VERSION +1 -1
- data/lib/logstash/inputs/azure_event_hubs.rb +2 -2
- data/logstash-input-azure_event_hubs.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a84ffdcd6f8eddd2290fb2f9e1cb14345cb07c0b39cf91771a6013971fd7ac63
|
4
|
+
data.tar.gz: 63083ca43c0457dd22995513f1a391ed2dfd1d6ae477207ea84c81293cdec31a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d5319c9d6f5bb34bac296b4f2902777ca86a619998288de24c9ff7095a570ecfeb53c4f784cb89ffa007866907e766870373376d41c2b69f5c8bff056fc96ee
|
7
|
+
data.tar.gz: 749ac6a52a1ce84131c68852cef071f9192acc5d4200e66dedd8083ddbb8f647acaa6e57a0f2f2a85ac76628aab5139f0bdf4efe1d2807f23bc6b881d73cd243
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 1.2.0
|
2
|
+
- Changed the default number of threads from `4` to `16` to match the default number from the Azure-Sdk EventProcessorHost [#54](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/54)
|
3
|
+
|
1
4
|
## 1.1.4
|
2
5
|
- Fixed missing configuration of the `max_batch_size`setting [#52](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/52)
|
3
6
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.2.0
|
@@ -111,9 +111,9 @@ class LogStash::Inputs::AzureEventHubs < LogStash::Inputs::Base
|
|
111
111
|
|
112
112
|
# Total threads used process events. Requires at minimum 2 threads. This option can not be set per Event Hub.
|
113
113
|
# azure_event_hubs {
|
114
|
-
# threads =>
|
114
|
+
# threads => 16
|
115
115
|
# }
|
116
|
-
config :threads, :validate => :number, :default =>
|
116
|
+
config :threads, :validate => :number, :default => 16
|
117
117
|
|
118
118
|
# Consumer group used to read the Event Hub(s). It is recommended to change from the $Default to a consumer group specifically for Logstash, and ensure that all instances of Logstash use that consumer group.
|
119
119
|
# basic Example:
|
@@ -24,5 +24,5 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.add_runtime_dependency 'logstash-codec-plain'
|
25
25
|
s.add_runtime_dependency 'logstash-codec-json'
|
26
26
|
s.add_runtime_dependency 'stud', '>= 0.0.22'
|
27
|
-
s.add_development_dependency 'logstash-devutils', '>= 0.0
|
27
|
+
s.add_development_dependency 'logstash-devutils', '>= 1.0.0'
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-azure_event_hubs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -71,7 +71,7 @@ dependencies:
|
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: 0.0
|
74
|
+
version: 1.0.0
|
75
75
|
name: logstash-devutils
|
76
76
|
prerelease: false
|
77
77
|
type: :development
|
@@ -79,7 +79,7 @@ dependencies:
|
|
79
79
|
requirements:
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 0.0
|
82
|
+
version: 1.0.0
|
83
83
|
description: This gem is a Logstash plugin required to be installed on top of the
|
84
84
|
Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
|
85
85
|
gem is not a stand-alone program
|