This is basically due to the service provider using a script to look for offensive mysql behaviour. In this case, that line is from the processlist. You issued a INSERT DELAYED statement, which causes mysql to create a "Delayed Insert thread." This thread will live until mysql has a reason to kill it.
The 22 in the line means that the thread was in the "Waiting for INSERT" state for 22 seconds. My guess is that their script looks for queries that are taking longer than 15 or 20 seconds to run, but they only check every 10 seconds or so, leading to the number being not an even 10 or 5 seconds.
In any case, this line could never appear in the slow query log. I would ask the provider how they determined that you were using mysql excessivly, and maybe point them to the mysql documentation for delayed inserts.
It is also possible that you actually were issuing tons of DELAYED INSERTs and this just happens to be the moment in time that they captured. No way to know without more info.