Get-AzBatchJobStatistic
Gets job summary statistics for a Batch account.
Note
This is the previous version of our documentation. Please consult the most recent version for up-to-date information.
Syntax
Get-AzBatchJobStatistic
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzBatchJobStatistic cmdlet gets lifetime summary statistics for all of the jobs in an Azure Batch account. Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics.
Examples
Example 1: Get summary statistics for all jobs
PS C:\>Get-AzBatchJobStatistic -BatchContext $Context
FailedTaskCount : 330
KernelCpuTime : 00:24:31.8440000
LastUpdateTime : 5/16/2016 6:00:00 PM
ReadIOGiB : 38.1271341182292
ReadIOps : 26546054
StartTime : 11/3/2015 9:47:14 PM
SucceededTaskCount : 766
TaskRetryCount : 0
Url : https://accountname.westus.batch.azure.com/lifetimejobstats
UserCpuTime : 20:55:50.3200000
WaitTime : 03:54:49.8530000
WallClockTime : 20:55:50.3200000
WriteIOGiB : 0.159623090177774
WriteIOps : 146946
The first command creates an object reference to the account keys for the batch account named ContosoBatchAccount by using Get-AzBatchAccountKey. The command stores this object reference in the $Context variable. The second command gets the summary statistics for all of the jobs. The command uses the $Context value from the first command.
Parameters
Specifies the BatchAccountContext instance that this cmdlet uses to interact with the Batch service. If you use the Get-AzBatchAccount cmdlet to get your BatchAccountContext, then Azure Active Directory authentication will be used when interacting with the Batch service. To use shared key authentication instead, use the Get-AzBatchAccountKey cmdlet to get a BatchAccountContext object with its access keys populated. When using shared key authentication, the primary access key is used by default. To change the key to use, set the BatchAccountContext.KeyInUse property.
| Type: | BatchAccountContext |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
The credentials, account, tenant, and subscription used for communication with azure.
| Type: | IAzureContextContainer |
| Aliases: | AzContext, AzureRmContext, AzureCredential |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |