logstash-input-beats 6.4.0-java → 6.4.1-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: 68a12c2391dc30949874806c2fc7fcda4466e9e61069743e59b86a5897db0adf
4
+ data.tar.gz: c45c2f91cc595fa038ca25001b86bd9f68808eb985c57c9660810e657ed50ceb
5
5
  SHA512:
6
- metadata.gz: b55b9a7b8a419f80eca97a77a2327aa42c35e3e6f366b85c6c50e5e673ac69e183e62ccfae8688be45b04afeac3133949709137c12699b0034354d45bdd8004f
7
- data.tar.gz: bdb31dcf6cf6f07e9b73e5fc3948f3ca930e3a9c9ffc8123cf465d217cdfd1cb35c4db2b724c951a584d99168bfe2a3b9e8781556de5d2bed519ad0770644dc6
6
+ metadata.gz: f0a6672e755ddd5ca081213c88ac99f5f4d62fdd31bcd793a31e1873436a8b78eba730dfc331fadd38afb0ca63c62a2e056b9687b3f7ab910ee49e401c68e033
7
+ data.tar.gz: 0f350faaa0187da56c9d00107c66c27172ff13b357627fd0366bfba48572f4f59d843daa35911746ccb9b99fa8bae4a9c6aed8da532fc72e11744f9017c69260
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 6.4.1
2
+ - [DOC] Add direct memory example [#454](https://github.com/logstash-plugins/logstash-input-beats/pull/454)
3
+
1
4
  ## 6.4.0
2
5
  - Feat: review and deprecate ssl protocol/cipher settings [#450](https://github.com/logstash-plugins/logstash-input-beats/pull/450)
3
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.4.0
1
+ 6.4.1
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"]
@@ -7,4 +7,4 @@ require_jar('com.fasterxml.jackson.core', 'jackson-core', '2.9.10')
7
7
  require_jar('com.fasterxml.jackson.core', 'jackson-annotations', '2.9.10')
8
8
  require_jar('com.fasterxml.jackson.core', 'jackson-databind', '2.9.10.8')
9
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')
10
+ require_jar('org.logstash.beats', 'logstash-input-beats', '6.4.1')
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.1
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-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -298,7 +298,7 @@ files:
298
298
  - vendor/jar-dependencies/com/fasterxml/jackson/module/jackson-module-afterburner/2.9.10/jackson-module-afterburner-2.9.10.jar
299
299
  - vendor/jar-dependencies/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar
300
300
  - 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
301
+ - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.4.1/logstash-input-beats-6.4.1.jar
302
302
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
303
303
  licenses:
304
304
  - Apache License (2.0)