Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ On systems without systemd, the logs are available in the console output of the
On Windows, the logs are available in event viewer, or they can be listed using PowerShell:

```powershell
Get-EventLog -LogName Application -Newest 100 -Source OtelcolSumo | Select-Object -Property ReplacementStrings
Get-EventLog -LogName Application -Newest 100 -Source OtelcolSumo | Select-Object @{Name='TimeGenerated'; Expression={($_.TimeGenerated).ToString("yyyy-MM-dd HH:mm:ss")}}, ReplacementStrings | Format-Table -Wrap
```

</TabItem>
Expand Down
Loading