Version
7.x.
Topic
This document describes how to check which Bit9 agents are doing synchronization.
Steps
From the Bit9 console, go to Reports > Events. Click Show/Hide Filter and add a filter for Type is 'Computer Management' and Subtype is 'Agent synchronization requested' OR 'Agent synchronization started', OR 'Agent synchronization finished'.
To query directly on the DAS database, use this SQL script:
use DAS select ev.[Timestamp], ev.[ReceivedTimestamp], cm.Computer, ev.Subtype from [das].[bit9_public].[ExEvents] as ev join [das].[bit9_public].[ExComputers] as cm on ev.Computer_Id=cm.Computer_Id where ev.Type='Computer Management' and ev.Subtype='Agent synchronization requested' |
select ev.[Timestamp], ev.[ReceivedTimestamp], cm.Computer, ev.Subtype from [das].[bit9_public].[ExEvents] as ev join [das].[bit9_public].[ExComputers] as cm on ev.Computer_Id=cm.Computer_Id where ev.Type='Computer Management' and ev.Subtype='Agent synchronization started' |
select ev.[Timestamp], ev.[ReceivedTimestamp], cm.Computer, ev.Subtype from [das].[bit9_public].[ExEvents] as ev join [das].[bit9_public].[ExComputers] as cm on ev.Computer_Id=cm.Computer_Id where ev.Type='Computer Management' and ev.Subtype='Agent synchronization finished' |