oneiroi
07/11/2023, 1:32 PM{
"message": "cannot schedule unknown query ''",
"errors": [
{
"name": "base",
"reason": "cannot schedule unknown query ''"
}
]
}
We have a number of queries being sent though fleetctl apply -f pack.yml
it's difficult to ascertain which is causing the error here, any thoughts on where else to loook (individual queries have been tested and are working OK)oneiroi
07/11/2023, 1:52 PM- query:
name: app_version
interval: 3600
platform: darwin
the query
param was missing an entry; leading to the output above, this was fixed by setting this to:
- query: app_version
name: app_version
interval: 3600
platform: darwin