HeyItsGilbert / ChocoLogParse

Parses Chocolatey logs into easy to use objects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChocoLogParse

Parses Chocolatey logs into easy to use objects.

PowerShell Gallery PowerShell Gallery Version GitHub Workflow Status PowerShell Gallery

Docs automatically updated at heyitsgilbert.github.io/ChocoLogParse

Available via the PowerShell Gallery

Overview

Parsing the Chocolatey logs can be daunting because at first glance it's difficult to see when things change from one thread to the next. Other tools like cmtrace don't support the Log4Net format. This module gives you a simple way of converting the logs into a simple to parse/filter objects.

To also help improve discoverability we included an object formatter so that you can quickly see error log entries, etc.

Installation

Install-Module ChocoLogParse

Examples

To parse the latest Chocolatey log file run the following.

Import-Module ChocoLogParse
$logs = Read-ChocoLog

Find install attempts of specific app (zoom in this example)

Read-ChocoLog | ?{ $_.cli -like "*zoom*"}

Once you found your thread you might want to filter in/out debug.

$logs[0].logs | ?{ $_.level -ne 'DEBUG' }

To grab the latest log you can use Get-ChocoLogEntry. Which is also includes a -Report flag to print an easier to read set of logs and highlight some key information at the top.

Get-ChocoLogEntry

Get more details at heyitsgilbert.github.io/ChocoLogParse

Building and Testing

If you want to contribute or would like to make a local build you just need to run the build.ps1 script with the relevant task.

For your first run you'll want to run the Bootstrap which will fetch all the appropriate modules and tools (as seen in the requirements.ps1).

.\build.ps1 -Bootstrap -Task Test

Building and testing works on Windows PowerShell and PowerShell Core.

About

Parses Chocolatey logs into easy to use objects.

License:MIT License


Languages

Language:PowerShell 95.8%Language:Dockerfile 4.2%