2

I'm trying to find a way to view the status of a sub orchestration using statusQueryGetUri.

Currently I can only see the custom status which was set when invoking the sub orchestration but would like to be able to see the status of the activities within the sub orchestration as well.

Possible?

Lymedo
  • 576
  • 9
  • 21

2 Answers2

0

There are multiple ways in which you can retrieve the status of the orchestrations.

  1. Azure Function core tools - Example

func durable get-instances --created-after 2019-09-7T13:57:31Z --created-before 2019-09-10T23:59Z --top 15

More Info : Docs

Another way is using this API (for func V2 runtime )

GET /runtime/webhooks/durableTask/instances?
taskHub={taskHub}
&connection={connectionName}
&code={systemKey}
&createdTimeFrom={timestamp}
&createdTimeTo={timestamp}
&runtimeStatus={runtimeStatus1,runtimeStatus2,...}
&showInput=[true|false]
&top={integer}
  1. More information on HTTP API - Docs
HariHaran
  • 3,642
  • 2
  • 16
  • 33
0

Durable Functions Monitor now natively supports navigating to suborchestrations from your parent orchestration's Details page (those links are clickable):

enter image description here enter image description here

scale_tone
  • 232
  • 2
  • 11