cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
pawnfodder
Engaged Sweeper
I am looking to add disk error events from eventlog alerts to the main dashboard. Is it possible to add these to the Dashboard configuration under high priority? If not, is there a good way to make a report of X number of eventlog alerts and have the report linked of the main dashboard page?
1 REPLY 1
Hemoco
Lansweeper Alumni
you will need to create a custom report for this.

Example:


Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblntlogevent.Eventcode, tblntlogevent.Sourcename,
tblntlogevent.Message, tblntlogevent.TimeGenerated
From tblComputers Inner Join
tblntlogevent On tblComputers.Computername = tblntlogevent.Computername
Where tblntlogevent.Eventcode = 1000
Order By tblntlogevent.TimeGenerated Desc