我正试图找到一种使用statusQueryGetUri查看子业务流程状态的方法。
目前,我只能看到在调用子编排时设置的自定义状态,但也希望能够看到子业务流程中活动的状态。
有可能吗?
发布于 2019-09-09 06:43:28
有多种方法可以检索编排的状态。
func durable get-instances --created-after 2019-09-7T13:57:31Z --created-before 2019-09-10T23:59Z --top 15
更多信息:文档
另一种方法是使用此API (用于func V2运行时)。
GET /runtime/webhooks/durableTask/instances?
taskHub={taskHub}
&connection={connectionName}
&code={systemKey}
&createdTimeFrom={timestamp}
&createdTimeTo={timestamp}
&runtimeStatus={runtimeStatus1,runtimeStatus2,...}
&showInput=[true|false]
&top={integer}发布于 2019-11-25 18:06:55
https://stackoverflow.com/questions/57831390
复制相似问题