1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

HTTP Request トリガーのLogicAppsで呼び出し元を確認する方法

Posted at

背景

Azure LogicAppsは、各種の手作業を自動化するのに便利で、色々と作ってしまう。(すでに100個超)
そして、色々と作っていると共通部品とか出てくるので、HTTP Request Triggerを使ってサブルーチンのようなサブLogicAppを作ってしまう。
すると、後日、「あれ、このLogicAppはどこから呼ばれているんだ???」とわからなくなったりする。
実行履歴から確認する方法があったので、備忘メモ。

方法

  1. 特定のLogicAppのRun historyを確認。
  2. 任意の実行履歴を展開。
  3. HTTP Request Trigger のOUTPUTSを確認。
  4. Headersの中に、User-Agentx-ms-workflow-nameなどがある。これが呼び出し元のLogicAppだったりする。

下の例では、
User-Agentから、AzureLogicAppsから呼び出されていること
x-ms-workflow-nameから、それがLA_ImportTrialというLogicAppだということがわかる。 

スクリーンショット 2023-04-06 10.51.17.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?