Get-AzureRmLogicAppTriggerHistory
Gets the history of triggers in 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-AzureRmLogicAppTriggerHistory
-ResourceGroupName <String>
-Name <String>
-TriggerName <String>
[-HistoryName <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzureRmLogicAppTriggerHistory cmdlet gets the history of triggers in a logic app in the Logic Apps feature. This cmdlet returns a WorkflowTriggerHistory object. Specify the logic app, resource group, and trigger. 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 a trigger history of a logic app
PS C:\>Get-AzureRmLogicAppTriggerHistory -ResourceGroupName "Resourcegroup11" -Name "LogicApp03" -TriggerName "Trigger01" -HistoryName "08587489107387695768"
Code : BadRequest
EndTime : 1/13/2016 2:42:26 PM
Error : {code, message}
Fired : False
InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/A7392_d1e831de68ac4ef89d19a40f05e663
cb_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=&se=2016-01-14T16%3A15%3A16Z&sp=r
Name : 08587489107387695768
OutputsLink :
Run :
StartTime : 1/13/2016 2:42:26 PM
Status : Failed
TrackingId : f88a499b-f80f-4a28-9bbf-c4cc0d129700
Type : Microsoft.Logic/workflows/triggers/histories
This command gets a specific logic app trigger history for a trigger in the logic app named LogicApp03.
Example 2: Get trigger histories of a logic app
PS C:\>Get-AzureRmLogicAppTriggerHistory -ResourceGroupName "ResourceGroup11" -Name "LogicApp07" -TriggerName "Trigger01"
Code : BadRequest
EndTime : 1/13/2016 2:43:33 PM
Error : {code, message}
Fired : False
InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/CAB46_60e2ad0f0e1947e8b5798716914c5d
b6_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=&se=2016-01-14T16%3A18%3A27Z&sp=r
Name : 08587489106716457817
OutputsLink :
Run :
StartTime : 1/13/2016 2:43:33 PM
Status : Failed
TrackingId : c91a63f1-48b4-4eae-91eb-8f6dbfa9fe06
Type : Microsoft.Logic/workflows/triggers/histories
Code : BadRequest
EndTime : 1/13/2016 2:42:26 PM
Error : {code, message}
Fired : False
InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/A7392_d1e831de68ac4ef89d19a40f05e663
cb_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=&se=2016-01-14T16%3A18%3A27Z&sp=r
Name : 08587489107387695768
OutputsLink :
Run :
StartTime : 1/13/2016 2:42:26 PM
Status : Failed
TrackingId : f88a499b-f80f-4a28-9bbf-c4cc0d129700
Type : Microsoft.Logic/workflows/triggers/histories
This command gets the workflow trigger histories for a trigger in the logic app named LogicApp07.
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 |
-HistoryName
Specifies the name of the history that this cmdlet gets.
Type: | String |
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 trigger history.
Type: | String |
Aliases: | ResourceName |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ResourceGroupName
Specifies the name of the resource group in which this cmdlet gets history.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-TriggerName
Specifies the name of the trigger for which this cmdlet gets history.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |