mirror of
https://github.com/projecthorus/sondehub-infra.git
synced 2024-12-18 20:57:56 +00:00
parent
46db8e1f96
commit
ffd606d60c
@ -596,22 +596,53 @@ async def predict_async(event, context):
|
||||
},
|
||||
"query": {
|
||||
"bool": {
|
||||
"must": [],
|
||||
"filter": [
|
||||
{
|
||||
"match_all": {}
|
||||
},
|
||||
{
|
||||
"range": {
|
||||
"datetime": {
|
||||
"gte": "now-10m",
|
||||
"lte": "now",
|
||||
"format": "strict_date_optional_time"
|
||||
"must_not":[
|
||||
{
|
||||
"match": {
|
||||
"lat": 0,
|
||||
}
|
||||
},
|
||||
{
|
||||
"match": {
|
||||
"lon": 0,
|
||||
}
|
||||
},
|
||||
{
|
||||
"match": {
|
||||
"sats": 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"should": []
|
||||
],
|
||||
# "must": [
|
||||
# {
|
||||
# "exists": {
|
||||
# "field": "sats"
|
||||
# }
|
||||
# },
|
||||
# {
|
||||
# "range": {
|
||||
# "sats": {
|
||||
# "gte": 1,
|
||||
# "lt": None
|
||||
# }
|
||||
# }
|
||||
# }
|
||||
# ],
|
||||
"filter": [
|
||||
{
|
||||
"match_all": {}
|
||||
},
|
||||
{
|
||||
"range": {
|
||||
"datetime": {
|
||||
"gte": "now-10m",
|
||||
"lte": "now",
|
||||
"format": "strict_date_optional_time"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"should": []
|
||||
}
|
||||
},
|
||||
"size": 0
|
||||
|
Loading…
Reference in New Issue
Block a user