web-dev-qa-db-fra.com

Chronométrage de l'exécution d'une commande dans PowerShell

Existe-t-il un moyen simple de chronométrer l'exécution d'une commande dans PowerShell, telle que la commande "time" sous Linux?
Je suis venu avec ceci:

$s=Get-Date; .\do_something.ps1 ; $e=Get-Date; ($e - $s).TotalSeconds

Mais je voudrais quelque chose de plus simple comme

time .\do_something.ps1
170
Paolo Tedesco

Ouaip.

Measure-Command { .\do_something.ps1 }

Notez qu'un inconvénient mineur de Measure-Command est que vous ne voyez aucune sortie standard. Si vous voulez voir la sortie, vous pouvez utiliser l’objet .NET Stopwatch, par exemple:

$sw = [Diagnostics.Stopwatch]::StartNew()
.\do_something.ps1
$sw.Stop()
$sw.Elapsed
279
Keith Hill

Vous pouvez également obtenir la dernière commande de l'historique et soustraire sa EndExecutionTime de sa StartExecutionTime.

.\do_something.ps1  
$command = Get-History -Count 1  
$command.EndExecutionTime - $command.StartExecutionTime
156
Shay Levy

Utilisez Measure-Command

Exemple

Measure-Command { <your command here> | Out-Host }

Le tube vers Out-Host vous permet de voir le résultat de la commande, qui est Sinon consommé par Measure-Command.

85
Droj

Simples

function time($block) {
    $sw = [Diagnostics.Stopwatch]::StartNew()
    &$block
    $sw.Stop()
    $sw.Elapsed
}

alors peut utiliser comme

time { .\some_command }

Vous voudrez peut-être modifier la sortie 

15
Mike West

Voici une fonction que j'ai écrite qui fonctionne de manière similaire à la commande Unix time:

function time {
    Param(
        [Parameter(Mandatory=$true)]
        [string]$command,
        [switch]$quiet = $false
    )
    $start = Get-Date
    try {
        if ( -not $quiet ) {
            iex $command | Write-Host
        } else {
            iex $command > $null
        }
    } finally {
        $(Get-Date) - $start
    }
}

Source: https://Gist.github.com/bender-the-greatest/741f696d965ed9728dc6287bdd336874

4

Utilisation du chronomètre et du formatage du temps écoulé:

Function FormatElapsedTime($ts) 
{
    $elapsedTime = ""

    if ( $ts.Minutes -gt 0 )
    {
        $elapsedTime = [string]::Format( "{0:00} min. {1:00}.{2:00} sec.", $ts.Minutes, $ts.Seconds, $ts.Milliseconds / 10 );
    }
    else
    {
        $elapsedTime = [string]::Format( "{0:00}.{1:00} sec.", $ts.Seconds, $ts.Milliseconds / 10 );
    }

    if ($ts.Hours -eq 0 -and $ts.Minutes -eq 0 -and $ts.Seconds -eq 0)
    {
        $elapsedTime = [string]::Format("{0:00} ms.", $ts.Milliseconds);
    }

    if ($ts.Milliseconds -eq 0)
    {
        $elapsedTime = [string]::Format("{0} ms", $ts.TotalMilliseconds);
    }

    return $elapsedTime
}

Function StepTimeBlock($step, $block) 
{
    Write-Host "`r`n*****"
    Write-Host $step
    Write-Host "`r`n*****"

    $sw = [Diagnostics.Stopwatch]::StartNew()
    &$block
    $sw.Stop()
    $time = $sw.Elapsed

    $formatTime = FormatElapsedTime $time
    Write-Host "`r`n`t=====> $step took $formatTime"
}

Exemples d'utilisation

StepTimeBlock ("Publish {0} Reports" -f $Script:ArrayReportsList.Count)  { 
    $Script:ArrayReportsList | % { Publish-Report $WebServiceSSRSRDL $_ $CarpetaReports $CarpetaDataSources $Script:datasourceReport };
}

StepTimeBlock ("My Process")  {  .\do_something.ps1 }
3
Kiquenet

Measure-Command {echo "Good morning World!" | Write-Host}

Source - https://github.com/PowerShell/PowerShell/issues/2289#issuecomment-247793839

0
Vineet M