→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
01-30-2024 09:04 AM
LS has one powerful chart. It is line-diagram. It can show more than 2 column data.
I have developed SQL-query to track most generated events.
Firstly, I have selected sourcenames of events. Then create report.
You should use report's name with prefix "Chart:".
Chart: Events last 14 days
Query:
Select Top 1000000 Convert(nVARCHAR(10),tblNtlog.TimeGenerated,102) thedate,
Sum(Case
When tblNtlogSource.Sourcename = 'microsoft-windows-distributedcom' Then 1
Else 0
End) [microsoft-windows-distributedcom],
Sum(Case
When tblNtlogSource.Sourcename = 'application error' Then 1
Else 0
End) [application error],
Sum(Case
When tblNtlogSource.Sourcename = 'Microsoft-Windows-Security-Kerberos' Then
1
Else 0
End) [Microsoft-Windows-Security-Kerberos],
Sum(Case
When tblNtlogSource.Sourcename = 'service control manager' Then 1
Else 0
End) [service control manager],
Sum(Case
When tblNtlogSource.Sourcename = 'microsoft-windows-wmi' Then 1
Else 0
End) [microsoft-windows-wmi],
Sum(Case
When tblNtlogSource.Sourcename = 'Real-time file protection' Then 1
Else 0
End) [Real-time file protection]
From tblNtlog
Inner Join tblNtlogSource On tblNtlogSource.SourcenameID =
tblNtlog.SourcenameID
Where tblNtlog.TimeGenerated > GetDate() - 14 And tblNtlog.TimeGenerated <
GetDate() + 1 And tblNtlog.Eventtype = 1
Group By Convert(nVARCHAR(10),tblNtlog.TimeGenerated,102)
Order By thedate
After create report you can add Chart Report on Tab via drag&drop it
Choose line-type and show label. My result (six lines on same chart):
01-30-2024 09:18 AM
Hello there!
Another nice one! 😎
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now