One way to filter out the log events for chkdsk from the logbook.
Starta Powershell > Windows + R opens the Run dialog box.
Write in Powershell.exe
Copy the whole string below and paste it into the right-click in PowerShell.
get-winevent -FilterHashTable @{logname="Application"; id="1001"}| ?{$_.providername -match "wininit"} | fl timecreated, message | out-file "$env:userprofile\Desktop\CHKDSK-log.txt"
Now create a file on your Desktop named CHKDSK log.txt with results from chkdsk.