Slide 18
Slide 18 text
Strategic Evidence Analysis
Show all aircraft in the database that were
powered on between two points in time:
{ "_source" : ["deviceSerial", "timestamp"],
"query": {
"bool": {
"must": { "exists": { "field":
"eventData.MotorStart" } },
"filter": [
{ "range" : {
"timestamp": {
"gte" : "1483246800000",
"lte" : "1491624000000" }
}
}
]
Show the location of an aircraft at a particular
point in time:
{
"_source" : ["eventData.Gps.lat", "eventData.Gps.lon", "eventData.Pos.lat",
"eventData.Pos.lon", "timestamp"],
"size" : 10,
"query" : {
"bool" : {
"must" : [
{
"dis_max" : {
"queries" : [
{ "exists" : { "field": "eventData.Gps" } },
{ "exists" : { "field": "eventData.Pos" } }
]
}
},
{
"match" : { "timestamp" : "{{timestamp}}" }
}
],
"filter" : { "match" : { "deviceSerial" : "{{aircraft}}" } }
}
}
}