cancel
Showing results for 
Search instead for 
Did you mean: 

What SQL queries do you run to monitor your system?

Ryan_Wakefield
World-Class Innovator
World-Class Innovator

So I have been working through what SQL queries I would like to have executed and based on the results to potentially trigger alerts. However, I know that my list is probably small compared to others. So I come to you to see what other OnBase customers/admins run to monitor their system.

 

Here is a list of the ones that I have come up with so far.

  1. Errored out Unity Scheduler Tasks
  2. Workflow queues that have too many items that shouldn't.
  3. Distribution Service backlog.
  4. Unity Scheduler Tasks with "next run time" older than X [time].
  5. Locks older than X [time].
  6. Scan queues reaching their batch limit.

 

What others have you come up with to help monitor your system?

 

Thanks.

6 REPLIES 6

Lee_Reynolds
Confirmed Champ
Confirmed Champ

We have an alert to monitor for duplicate registration entries in hsi.registeredusers and send an email to our admins.

 

Something like this:

 

select
rtrim(registername) 'Workstation'
, count(registername)'Count'
from hsi.registeredusers
group by registername
having count(registername) > 1