9deb9890e796eae1ca8df5f6b8fc32abacce1de9
* Added auto discovery fo files to monitor. * Fixed scriptanalyzer rule * Adjusted the parameter attributes * testing feature specifications * Added module building * fix build * fix build * fix build * Exceptions and spacing * added project settings * minor edits * resolve merge conflict
Chronometer
A module for measuring performance of Powershell scripts, one line at a time.
Project status
Preview release. The core logic is fleshed out but more testing is needed.
Getting started
Prerequirements
You need to have Powershell 5.0 or newer. This module uses classes.
Installing Chronometer
This is published in the Powershell Gallery
Install-Module Chronometer
Basic usage
Provide a script file and a command to execute.
$path = myscript.ps1
$Chronometer = Get-Chronometer -Path $path -Script {. .\myscript.ps1}
$Chronometer | Format-Chronometer
Things to know
The Path can be any ps1 and the script can run any command. Ideally, you would either execute the script or load the script and execute a command inside it.
Here is a more complex example:
$script = ls C:\workspace\PSGraph\PSGraph -Recurse -Filter *.ps1
$Chronometer = @{
Path = $script.fullname
Script = {Invoke-Pester C:\workspace\PSGraph}
}
$results = Get-Chronometer @Chronometer
$results | Format-Chronometer
Description
Languages
PowerShell
99.4%
Gherkin
0.6%