
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-22-2010 05:02 PM
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?
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-22-2010 07:54 PM
you will need to create a custom report for this.
Example:
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
