Use Limit operator with Group BY clause and where clause

I am running the below query to figure out 10 underutilized servers.

select mean(“load15”) FROM “autogen”.“system” WHERE time > now() - 15m GROUP BY host limit 10

I dont see the expected results that shows only 10 servers that are underutilized servers.

Please guide.