logstash-input-beats 6.4.0-java → 6.4.3-java

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
2
  SHA256:
3
- metadata.gz: 363dca7f2007725bb47f6c9b634d1a76436959c9692a7fa6f6b81edcf6721240
4
- data.tar.gz: 0c7c2111ec1ecdc2e42fc38c38cef7ed12b9cfe15ed413925696c421a789e32e
3
+ metadata.gz: f3322088036b24926aec38be292358e7acc20eb2712c77c87eef414a6df97b4a
4
+ data.tar.gz: 75538f2efea9abd54cfdc27c24a0aebf746ee0c8217c78cf6d26d4b720ad8107
5
5
  SHA512:
6
- metadata.gz: b55b9a7b8a419f80eca97a77a2327aa42c35e3e6f366b85c6c50e5e673ac69e183e62ccfae8688be45b04afeac3133949709137c12699b0034354d45bdd8004f
7
- data.tar.gz: bdb31dcf6cf6f07e9b73e5fc3948f3ca930e3a9c9ffc8123cf465d217cdfd1cb35c4db2b724c951a584d99168bfe2a3b9e8781556de5d2bed519ad0770644dc6
6
+ metadata.gz: 2b62db7a6a10181a528abb921aef2b41566fbf11acafab8c96561a6a5e13988ad2d55629567713ac0caf78836f7bc4bea822a176b9a3a59b9900236350ef1e00
7
+ data.tar.gz: fcb8dc51118e1381ae85aeff139b6dbad681bf8757af001cd68a58a377c456907c160c8d78cd7fbac6b13605fa9be4bbe19052d60549b71535c8c04cd96ac43a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.4.3
2
+ - [DOC] `executor_threads` default value explanation updated. [#461](https://github.com/logstash-plugins/logstash-input-beats/pull/461)
3
+
4
+ ## 6.4.2
5
+ - Build: do not package jackson dependencies [#455](https://github.com/logstash-plugins/logstash-input-beats/pull/455)
6
+
7
+ ## 6.4.1
8
+ - [DOC] Add direct memory example [#454](https://github.com/logstash-plugins/logstash-input-beats/pull/454)
9
+
1
10
  ## 6.4.0
2
11
  - Feat: review and deprecate ssl protocol/cipher settings [#450](https://github.com/logstash-plugins/logstash-input-beats/pull/450)
3
12
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.4.0
1
+ 6.4.3
data/docs/index.asciidoc CHANGED
@@ -88,6 +88,19 @@ will be similar to events directly indexed by {plugin-uc} into Elasticsearch.
88
88
  endif::[]
89
89
 
90
90
 
91
+ [id="plugins-{type}s-{plugin}-memory"]
92
+ ===== Memory usage
93
+
94
+ This plugin uses "off-heap" direct memory in addition to heap memory.
95
+ By default, a JVM's off-heap direct memory limit is the same as the heap size.
96
+ For example, setting `-Xmx10G` without setting the direct memory limit will allocate `10GB` for heap and an additional `10GB` for direct memory, for a total of `20GB` allocated.
97
+ You can set the amount of direct memory with `-XX:MaxDirectMemorySize` in {logstash-ref}/jvm-settings.html[Logstash JVM Settings].
98
+ Consider setting direct memory to half of the heap size.
99
+ Setting direct memory too low decreases the performance of ingestion.
100
+
101
+ NOTE: Be sure that heap and direct memory combined does not exceed the total memory available on the server to avoid an OutOfDirectMemoryError
102
+
103
+
91
104
  //Content for Beats
92
105
  ifeval::["{plugin}"=="beats"]
93
106
  [id="plugins-{type}s-{plugin}-multiline"]
@@ -101,6 +114,7 @@ plugin] to handle multiline events. Doing so will result in the failure to start
101
114
  Logstash.
102
115
  endif::[]
103
116
 
117
+
104
118
  //Content for Beats
105
119
  ifeval::["{plugin}"=="beats"]
106
120
  [id="plugins-{type}s-{plugin}-versioned-indexes"]
@@ -229,10 +243,10 @@ Refer to <<plugins-{type}s-{plugin}-ecs_metadata,ECS mapping>> for detailed info
229
243
  ===== `executor_threads`
230
244
 
231
245
  * Value type is <<number,number>>
232
- * Default value is 1 executor thread per CPU core
246
+ Default value is equal to the number of CPU cores (1 executor thread per CPU core).
233
247
 
234
248
  The number of threads to be used to process incoming beats requests.
235
- By default the Beats input creates a number of threads equal to 2*CPU cores.
249
+ By default, the Beats Input creates a number of threads equal to the number of CPU cores.
236
250
  These threads handle incoming connections, reading from established sockets, and executing most of the tasks related to network connection management.
237
251
  Parsing the Lumberjack protocol is offloaded to a dedicated thread pool.
238
252
 
@@ -3,8 +3,4 @@
3
3
  require 'jar_dependencies'
4
4
  require_jar('io.netty', 'netty-all', '4.1.65.Final')
5
5
  require_jar('org.javassist', 'javassist', '3.24.0-GA')
6
- require_jar('com.fasterxml.jackson.core', 'jackson-core', '2.9.10')
7
- require_jar('com.fasterxml.jackson.core', 'jackson-annotations', '2.9.10')
8
- require_jar('com.fasterxml.jackson.core', 'jackson-databind', '2.9.10.8')
9
- require_jar('com.fasterxml.jackson.module', 'jackson-module-afterburner', '2.9.10')
10
- require_jar('org.logstash.beats', 'logstash-input-beats', '6.4.0')
6
+ require_jar('org.logstash.beats', 'logstash-input-beats', '6.4.3')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-beats
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.4.0
4
+ version: 6.4.3
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-28 00:00:00.000000000 Z
11
+ date: 2022-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -292,13 +292,9 @@ files:
292
292
  - spec/support/integration_shared_context.rb
293
293
  - spec/support/logstash_test.rb
294
294
  - spec/support/shared_examples.rb
295
- - vendor/jar-dependencies/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar
296
- - vendor/jar-dependencies/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar
297
- - vendor/jar-dependencies/com/fasterxml/jackson/core/jackson-databind/2.9.10.8/jackson-databind-2.9.10.8.jar
298
- - vendor/jar-dependencies/com/fasterxml/jackson/module/jackson-module-afterburner/2.9.10/jackson-module-afterburner-2.9.10.jar
299
295
  - vendor/jar-dependencies/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar
300
296
  - vendor/jar-dependencies/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.jar
301
- - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.4.0/logstash-input-beats-6.4.0.jar
297
+ - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.4.3/logstash-input-beats-6.4.3.jar
302
298
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
303
299
  licenses:
304
300
  - Apache License (2.0)