mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Updated trimet.vehicleID from Integer to Keyword (#132425)
* updated tutorial to use Filebeat and Datastreams rather than Logstash and a static index * Fixed pipeline issue when inCongestion is null the pipeline fails. Now if null its set as false * Fixed pipeline issue when inCongestion is null the pipeline fails. Now if null its set as false * Corrected minor mistakes in docs * Changed trimet.vehicleID from int to keyword * Update docs/maps/asset-tracking-tutorial.asciidoc Co-authored-by: Nick Peihl <nick.peihl@elastic.co> * Update docs/maps/asset-tracking-tutorial.asciidoc Co-authored-by: Nick Peihl <nick.peihl@elastic.co> * Update docs/maps/asset-tracking-tutorial.asciidoc Co-authored-by: Nick Peihl <nick.peihl@elastic.co> * Update docs/maps/asset-tracking-tutorial.asciidoc Co-authored-by: Nick Peihl <nick.peihl@elastic.co> Co-authored-by: Nick Peihl <nick.peihl@elastic.co>
This commit is contained in:
parent
4ad07bd81f
commit
956703a71f
1 changed files with 5 additions and 5 deletions
|
@ -136,10 +136,10 @@ PUT _index_template/tri_met_tracks
|
|||
"type": "text"
|
||||
},
|
||||
"lastLocID": {
|
||||
"type": "integer"
|
||||
"type": "keyword"
|
||||
},
|
||||
"nextLocID": {
|
||||
"type": "integer"
|
||||
"type": "keyword"
|
||||
},
|
||||
"locationInScheduleDay": {
|
||||
"type": "integer"
|
||||
|
@ -163,13 +163,13 @@ PUT _index_template/tri_met_tracks
|
|||
"type": "keyword"
|
||||
},
|
||||
"tripID": {
|
||||
"type": "integer"
|
||||
"type": "keyword"
|
||||
},
|
||||
"delay": {
|
||||
"type": "integer"
|
||||
},
|
||||
"extraBlockID": {
|
||||
"type": "integer"
|
||||
"type": "keyword"
|
||||
},
|
||||
"messageCode": {
|
||||
"type": "integer"
|
||||
|
@ -188,7 +188,7 @@ PUT _index_template/tri_met_tracks
|
|||
"doc_values": true
|
||||
},
|
||||
"vehicleID": {
|
||||
"type": "integer"
|
||||
"type": "keyword"
|
||||
},
|
||||
"offRoute": {
|
||||
"type": "boolean"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue