logstash-output-elasticsearch 11.22.7-java → 11.22.9-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79e398b6f51a26f05cce8ee42a518d206018596100d295a315be80ece7657a69
4
- data.tar.gz: 64e8a614ba19d35f57b9eb273f27d47656610b64075a9007e8b3b3800d7fc3fd
3
+ metadata.gz: 1276b8bd29a1332d9dadb06c92e9c62b70e23293a7316d62c8e124b492f7b6b8
4
+ data.tar.gz: 7c6163b80bcffa621a2d19c91133b9d66733781ae5075f403a478ba0a7d122ed
5
5
  SHA512:
6
- metadata.gz: 848bc00774e5bbb7189aa178cb52c804a6fd70032c132b22a6ba4304be4cb9c82e0e4025fa6494ee2c7ce0bf2ebe0c225d95a09dfa3b31d90dc387ee4af0e160
7
- data.tar.gz: 3d7b26d1454c5e4c65380bca12d6fd1f3831cf076e758d443c217b0e5f1c917373b8ba6b80a7ccd2e952d1cf49bb245e6c3c110c32197c43c82a9ee07b7da068
6
+ metadata.gz: '092df2c01ae5c4f9e364bb56469ba3acbf705391bd4c04e65891deae3b9c377fd3be37c6dd6b12b0e9de2f4a3125e4d09df0de6d8dd03bc7ada19a85b1eaca4e'
7
+ data.tar.gz: ca93c24e48e71360d5e9722ec35025241c40eac255e83c60ce65b5d607517752609bb304e6d091f02cd8df06d9607afcdbe43c1d2dfb6f5990972fe40c0e1bd1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 11.22.9
2
+ - Vendor ECS template for Elasticsearch 9.x in built gem [#1188](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1188)
3
+
4
+ ## 11.22.8
5
+ - Added ECS template for Elasticsearch 9.x [#1187](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1187)
6
+
1
7
  ## 11.22.7
2
8
  - [DOC] `ssl_key` requires PKCS#8 format [#1181](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1181)
3
9
 
@@ -0,0 +1,50 @@
1
+ {
2
+ "index_patterns" : "logstash-*",
3
+ "version" : 80001,
4
+ "template" : {
5
+ "settings" : {
6
+ "index.refresh_interval" : "5s",
7
+ "number_of_shards": 1
8
+ },
9
+ "mappings" : {
10
+ "dynamic_templates" : [ {
11
+ "message_field" : {
12
+ "path_match" : "message",
13
+ "match_mapping_type" : "string",
14
+ "mapping" : {
15
+ "type" : "text",
16
+ "norms" : false
17
+ }
18
+ }
19
+ }, {
20
+ "string_fields" : {
21
+ "match" : "*",
22
+ "match_mapping_type" : "string",
23
+ "mapping" : {
24
+ "type" : "text", "norms" : false,
25
+ "fields" : {
26
+ "keyword" : { "type": "keyword", "ignore_above": 256 }
27
+ }
28
+ }
29
+ }
30
+ } ],
31
+ "properties" : {
32
+ "@timestamp": { "type": "date" },
33
+ "@version": { "type": "keyword" },
34
+ "geoip" : {
35
+ "dynamic": true,
36
+ "properties" : {
37
+ "ip": { "type": "ip" },
38
+ "location" : { "type" : "geo_point" },
39
+ "latitude" : { "type" : "half_float" },
40
+ "longitude" : { "type" : "half_float" }
41
+ }
42
+ }
43
+ }
44
+ }
45
+ },
46
+ "priority": 200,
47
+ "_meta" : {
48
+ "description": "index template for logstash-output-elasticsearch"
49
+ }
50
+ }