This KQL query might be useful for some:
Event
| where TimeGenerated > ago(7d)
| where Computer contains "APOLLO"
| where EventLog == "System" or EventLog == "Application"
| project TimeGenerated, EventID=tostring(EventID)
| summarize Count=count() by EventID, bin(TimeGenerated, 1d)
| render columnchart