logstash-output-opensearch 2.1.0-java → 2.1.1-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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/logstash/outputs/opensearch/templates/ecs-disabled/3x.json +44 -0
- data/lib/logstash/outputs/opensearch/templates/ecs-disabled/3x_index.json +66 -0
- data/lib/logstash/outputs/opensearch/templates/ecs-v8/3x.json +5252 -0
- data/lib/logstash/outputs/opensearch/templates/ecs-v8/3x_index.json +5254 -0
- data/logstash-output-opensearch.gemspec +1 -1
- data/spec/unit/outputs/opensearch/template_manager_spec.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +5 -1
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b2b80eea7185087d932af9c493bd1609ee7132ef731ba98c2b11cef449c37fa
|
|
4
|
+
data.tar.gz: 602a9cd66c87ca0d69270ff4a356efd3dad02650aa66d7bb1ef3e1cc4f161478
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b8d54c5c376e910c7e67ef4ad5b9d659beb481144d5d9a3785c374dfbe620272cf463da73726deb83d0efdca0c10f0661aafaddcbd160316f308e764d6eb4b1
|
|
7
|
+
data.tar.gz: 3e9cedb6a86b79b561efb2f29335738d84a958220d644fe3aeb9e13f03f0a022b396f4502974b7ebc199b4e37cab8f477f082b63ae1c25edc030991c35ff252c
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"index_patterns" : "logstash-*",
|
|
3
|
+
"version" : 60001,
|
|
4
|
+
"settings" : {
|
|
5
|
+
"index.refresh_interval" : "5s",
|
|
6
|
+
"number_of_shards": 1
|
|
7
|
+
},
|
|
8
|
+
"mappings" : {
|
|
9
|
+
"dynamic_templates" : [ {
|
|
10
|
+
"message_field" : {
|
|
11
|
+
"path_match" : "message",
|
|
12
|
+
"match_mapping_type" : "string",
|
|
13
|
+
"mapping" : {
|
|
14
|
+
"type" : "text",
|
|
15
|
+
"norms" : false
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}, {
|
|
19
|
+
"string_fields" : {
|
|
20
|
+
"match" : "*",
|
|
21
|
+
"match_mapping_type" : "string",
|
|
22
|
+
"mapping" : {
|
|
23
|
+
"type" : "text", "norms" : false,
|
|
24
|
+
"fields" : {
|
|
25
|
+
"keyword" : { "type": "keyword", "ignore_above": 256 }
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
} ],
|
|
30
|
+
"properties" : {
|
|
31
|
+
"@timestamp": { "type": "date"},
|
|
32
|
+
"@version": { "type": "keyword"},
|
|
33
|
+
"geoip" : {
|
|
34
|
+
"dynamic": true,
|
|
35
|
+
"properties" : {
|
|
36
|
+
"ip": { "type": "ip" },
|
|
37
|
+
"location" : { "type" : "geo_point" },
|
|
38
|
+
"latitude" : { "type" : "half_float" },
|
|
39
|
+
"longitude" : { "type" : "half_float" }
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"index_patterns": "logstash-*",
|
|
3
|
+
"version": 60001,
|
|
4
|
+
"priority": 10,
|
|
5
|
+
"template": {
|
|
6
|
+
"settings": {
|
|
7
|
+
"index.refresh_interval": "5s",
|
|
8
|
+
"number_of_shards": 1
|
|
9
|
+
},
|
|
10
|
+
"mappings": {
|
|
11
|
+
"dynamic_templates": [
|
|
12
|
+
{
|
|
13
|
+
"message_field": {
|
|
14
|
+
"path_match": "message",
|
|
15
|
+
"match_mapping_type": "string",
|
|
16
|
+
"mapping": {
|
|
17
|
+
"type": "text",
|
|
18
|
+
"norms": false
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"string_fields": {
|
|
24
|
+
"match": "*",
|
|
25
|
+
"match_mapping_type": "string",
|
|
26
|
+
"mapping": {
|
|
27
|
+
"type": "text",
|
|
28
|
+
"norms": false,
|
|
29
|
+
"fields": {
|
|
30
|
+
"keyword": {
|
|
31
|
+
"type": "keyword",
|
|
32
|
+
"ignore_above": 256
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"properties": {
|
|
40
|
+
"@timestamp": {
|
|
41
|
+
"type": "date"
|
|
42
|
+
},
|
|
43
|
+
"@version": {
|
|
44
|
+
"type": "keyword"
|
|
45
|
+
},
|
|
46
|
+
"geoip": {
|
|
47
|
+
"dynamic": true,
|
|
48
|
+
"properties": {
|
|
49
|
+
"ip": {
|
|
50
|
+
"type": "ip"
|
|
51
|
+
},
|
|
52
|
+
"location": {
|
|
53
|
+
"type": "geo_point"
|
|
54
|
+
},
|
|
55
|
+
"latitude": {
|
|
56
|
+
"type": "half_float"
|
|
57
|
+
},
|
|
58
|
+
"longitude": {
|
|
59
|
+
"type": "half_float"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|