PSProfiler
PSProfiler copied to clipboard
PowerShell Script Profiler
When I add the following code to `foo.ps1` and run `foo.ps1`, it prints "foo". If I run `Measure-Script -Path foo.ps1`, it outputs nothing. ```powershell param( [string]$Foo = 'foo' ) $Foo...
Salutations👋 I was using this script to speed up my pwsh startup time, and I found the duration formatting a bit hard to read Is there any interest in a...
It isn't immediately clear what we consider a measurable statement, nor how `TimeLine`'s compound measurements per line. Wanted: - [ ] Better examples - [ ] `Verbose` messaging from the...
I would like to measure my script problems. But since I mostly deal with functions that I create doing: ``` Measure-Script { MyFunction } ``` Doesn't bring me any useful...