Hi jason.triplett,
Service Broker is considered a background process, here is the 'quickpoll where clause' that you will need to add in Ignite to get all of the background processes.
AND s.spid like '%'
UNION ALL
SELECT s1.loginame, db_name(s1.dbid) name, s1.hostname, s1.program_name, s1.sql_handle, s1.stmt_start, s1.stmt_end,
s1.spid, CONVERT(smallint, s1.waittype) waittype, s1.lastwaittype, s1.ecid, s1.waittime,
CONVERT(varchar(64), s1.context_info) context_info , s1.blocked , null
FROM master..sysprocesses s1 WITH(NOLOCK)
WHERE s1.spid < 50
AND s1.status != 'sleeping'
AND s1.cmd<>'AVAITING COMMAND'
AND s1.lastwaittype NOT IN ('SLEEP_TASK')
To add:
In Ignite > Options > Advanced Options > check 'support options' box > choose database (lower right screen) Look for parameter: QuickPoll Where Clause and add the code above. Please let me know if this doesn't help, if the issue persists please send an email to support@confio.com and we'll take a look for you.