Hi folks.
I can see in Process Management list of them but they are, obviously, in different stages:
Is there a way for me, in the GUI, to see how many in-flight processes are running on my instance?
Thanks,
KGM
Hi folks.
I can see in Process Management list of them but they are, obviously, in different stages:
Is there a way for me, in the GUI, to see how many in-flight processes are running on my instance?
Thanks,
KGM
Hi Kristjan,
Do you mean you want to only see those that are In Progress? If so, you can click on the Filter button (seen in your screenshot) and select "Processes In Progress". This will filter out all processes that are Completed or have Failed for any reason. I hope that helps!
-Alan
Hi
We solved the same problem using the advanced reports module with this query
select cas_status, count(1) from pmse_inbox
where deleted = 0
group by cas_status
It could be usefull for you.
Hi
We solved the same problem using the advanced reports module with this query
select cas_status, count(1) from pmse_inbox
where deleted = 0
group by cas_status
It could be usefull for you.