Skip to content

Commit

Permalink
Updated trimet.vehicleID from Integer to Keyword (#132425) (#132436)
Browse files Browse the repository at this point in the history
* 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>
(cherry picked from commit 956703a)

Co-authored-by: James Garside <james@jgarside.co.uk>
  • Loading branch information
kibanamachine and jamesagarside authored May 18, 2022
1 parent 6294107 commit 21c369e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/maps/asset-tracking-tutorial.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -188,7 +188,7 @@ PUT _index_template/tri_met_tracks
"doc_values": true
},
"vehicleID": {
"type": "integer"
"type": "keyword"
},
"offRoute": {
"type": "boolean"
Expand Down

0 comments on commit 21c369e

Please sign in to comment.