Log Detail
ollama serve
set OLLAMA_ORIGINS=*&& ollama serve$env:OLLAMA_ORIGINS="*"; ollama serveOLLAMA_ORIGINS=* ollama serveollama pull mistral
level:ERROR AND service:auth*status_code:>=500 AND NOT method:GETmessage:/timeout|refused/isrc_ip:10.0.* OR src_ip:192.168.*latency_ms:>=1000 AND env:production
Get-WinEvent -Path "C:\path\to\your.evtx" | Select-Object TimeCreated,Id,LevelDisplayName,Message,ProviderName,MachineName | ConvertTo-Json -Depth 3 | Out-File -Encoding UTF8 events.jsonThen load
events.json into LogLens.
$events = Get-WinEvent -Path "C:\path\to\your.evtx"
"<Events>" | Out-File events.xml -Encoding UTF8
$events | ForEach-Object { $_.ToXml() } | Out-File events.xml -Append -Encoding UTF8
"</Events>" | Out-File events.xml -Append -Encoding UTF8
Then load events.xml β LogLens parses Windows XML Event Log natively.
wevtutil epl "Security" security.evtx & REM export live log wevtutil qe your.evtx /lf:true /f:XML > events.xml & REM convert to XML