Forum Discussion
Gk1981
Jan 29, 2020Copper Contributor
Crashes query help
Hi Team, I trying to write a query that checks for crashes. I was told to use the Event table and look for below | where EventLog == "Application" | where Source in (".NET Runtime") and ...
CliveWatson
Jan 29, 2020Former Employee
Both Schema items have a Computer column - I don't know how far you have got, but try this:
ServiceFabricOperationalEvent
| where EventMessage contains "UnexpectedTermination=true"
| join (
Event
| where EventLog == "Application"
//| where Source == ".NET Runtime"
) on Computer
| project EventLog , Computer
This is a working example (I don't have the Fabric data), so used Perf as an example
Go to Log Analytics and run query
| Computer | CounterName | EventLog | count_ |
|---|---|---|---|
| AmberIgniteDemo | % User Time | Application | 3 |