HI All, Getting an odd error; ```{ "message": ...
# fleet
o
HI All, Getting an odd error;
Copy code
{
  "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)
Resolved this issue, this was due to the following:
Copy code
- 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:
Copy code
- query: app_version
      name: app_version
      interval: 3600
      platform: darwin