Home > Software engineering >  Possible to tag a logic app run with some notes?
Possible to tag a logic app run with some notes?

Time:08-31

Is there any way I can tag a single run execution of a logic app with some notes or details during the execution? I want to be able to search for a particular run using some string stored on the unique run. If this isn't doable, does anyone recommend a good workaround for accomplishing this? Thanks

CodePudding user response:

You can retrieve the run id and persist it.

enter image description here

enter image description here

Later, you could use this run id in the Runs history tab to go directly to the instance you are looking for.

CodePudding user response:

search for a particular run using some string stored on the unique run

You can also grab the run id and use it for other tracking by initializing it to a variable in logic app also by using below expression in workflow:

workflow()['run']['name']

I used initializing a variable action:

enter image description here

Then save it

enter image description here

Output:

enter image description here

References taken from:

I couldnt find Print run identifier action neither in standard nor in consumption:

enter image description here

  • Related