Insert ephemeral IDs + correct pipeline event stats into the logstash_stats document (elastic/x-pack-elasticsearch#1747)
Before the event stats were mislabeled, so were not being indexed, and the ephemeral_id was only in the _state document. Original commit: elastic/x-pack-elasticsearch@ca0ec81aa5
This commit is contained in:
parent
f0c026d1d9
commit
4967d424f6
|
@ -50,6 +50,9 @@
|
||||||
"name": {
|
"name": {
|
||||||
"type": "keyword"
|
"type": "keyword"
|
||||||
},
|
},
|
||||||
|
"ephemeral_id": {
|
||||||
|
"type": "keyword"
|
||||||
|
},
|
||||||
"host": {
|
"host": {
|
||||||
"type": "keyword"
|
"type": "keyword"
|
||||||
},
|
},
|
||||||
|
@ -245,15 +248,18 @@
|
||||||
"hash": {
|
"hash": {
|
||||||
"type": "keyword"
|
"type": "keyword"
|
||||||
},
|
},
|
||||||
|
"ephemeral_id": {
|
||||||
|
"type": "keyword"
|
||||||
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"input": {
|
"in": {
|
||||||
"type": "long"
|
"type": "long"
|
||||||
},
|
},
|
||||||
"filter": {
|
"filtered": {
|
||||||
"type": "long"
|
"type": "long"
|
||||||
},
|
},
|
||||||
"output": {
|
"out": {
|
||||||
"type": "long"
|
"type": "long"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue