The report below gives back a list of the number of eventlog errors in the network on each day during the past two weeks.
The report will only list assets that meet all of the following criteria:
- The computer's state is set to "active".
- The computer has been successfully scanned at least once.
- The asset is a Windows computer.
- Errors have been logged during the last 14 days
Select Top 1000000 Convert(nVARCHAR(10),tblNtlog.TimeGenerated,102) As
DateGenerated,
Count(tblAssets.AssetID) As Total
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tblAssets.Assettype = tsysAssetTypes.AssetType
Inner Join tblState On tblState.State = tblAssetCustom.State
Inner Join tblNtlog On tblAssets.AssetID = tblNtlog.AssetID
Where tblState.Statename = 'Active' And (tsysAssetTypes.AssetTypename =
'Windows' Or tsysAssetTypes.AssetTypename = 'Windows CE') And
Case tblNtlog.Eventtype When 1 Then 'Error' Else 'Other'
End = 'Error' And tblNtlog.TimeGenerated > GetDate() - 14
Group By Convert(nVARCHAR(10),tblNtlog.TimeGenerated,102)
Order By DateGenerated Desc