Get-AzureRmLogicAppRunHistory
Gets the run history of a logic app.
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-AzureRmLogicAppRunHistory
-ResourceGroupName <String>
-Name <String>
[-RunName <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzureRmLogicAppRunHistory cmdlet gets the run history of a logic app. This cmdlet returns a collection of WorkflowRun objects. Specify the logic app and resource group. This module supports dynamic parameters. To use a dynamic parameter, type it in the command. To discover the names of dynamic parameters, type a hyphen (-) after the cmdlet name, and then press the Tab key repeatedly to cycle through the available parameters. If you omit a required template parameter, the cmdlet prompts you for the value.
Examples
Example 1: Get the run history of a logic app
PS C:\>Get-AzureRmLogicAppActionRunHistory -ResourceGroupName "Resourcegroup11" -Name "LogicApp03"
CorrelationId : 00001111-aaaa-2222-bbbb-3333cccc4444
EndTime : 1/13/2016 2:46:55 PM
Error : {code, message}
Name : 08587489104702792076
Outputs : {}
StartTime : 1/13/2016 2:46:55 PM
Status : Failed
TriggerName :
LogicAppName : LogicApp03
LogicAppVersion : 08587489107859952540
CorrelationId : 00001111-aaaa-2222-bbbb-3333cccc4444
EndTime : 1/13/2016 2:42:56 PM
Error : {code, message}
Name : 08587489107100664541
Outputs : {}
StartTime : 1/13/2016 2:42:55 PM
Status : Failed
TriggerName : httpTrigger
LogicAppName : LogicApp03
LogicAppVersion : 08587489107859952120
This command gets the run history of a logic app named LogicApp03.
Example 2: Get a logic app run
PS C:\>Get-AzureRmLogicAppActionRunHistory -ResourceGroupName "Resourcegroup11" -Name "LogicApp03" -RunName "08587489104702792076"
CorrelationId : 00001111-aaaa-2222-bbbb-3333cccc4444
EndTime : 1/13/2016 2:46:55 PM
Error : {code, message}
Name : 08587489104702792076
Outputs : {}
StartTime : 1/13/2016 2:46:55 PM
Status : Failed
TriggerName :
LogicAppName : LogicApp03
LogicAppVersion : 08587489107859952120
This command gets a specific logic app run for the logic app named LogicApp03.
Parameters
-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 |
-Name
Specifies the name of the logic app for which this cmdlet gets run history.
Type: | String |
Aliases: | ResourceName |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ResourceGroupName
Specifies the name of a resource group that contains the logic app.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-RunName
Specifies the run name of a logic app. This cmdlet gets the workflow run that this cmdlet specifies.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |