Get-AzureBatchJobStatistics
Gets job summary statistics for a Batch account.
Warning
The AzureRM PowerShell module has been officially deprecated as of February 29, 2024. Users are advised to migrate from AzureRM to the Az PowerShell module to ensure continued support and updates.
Although the AzureRM module may still function, it's no longer maintained or supported, placing any continued use at the user's discretion and risk. Please refer to our migration resources for guidance on transitioning to the Az module.
Syntax
Get-AzureBatchJobStatistics
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzureBatchJobStatistics 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-AzureBatchJobStatistics -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-AzureRmBatchAccountKeys. 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
-BatchContext
Specifies the BatchAccountContext instance that this cmdlet uses to interact with the Batch service. If you use the Get-AzureRmBatchAccount cmdlet to get your BatchAccountContext, then Microsoft Entra authentication will be used when interacting with the Batch service. To use shared key authentication instead, use the Get-AzureRmBatchAccountKeys 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 |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-DefaultProfile
The credentials, account, tenant, and subscription used for communication with azure.
Type: | IAzureContextContainer |
Aliases: | AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
Parameters: BatchContext (ByValue)