Forum Discussion

oseverma9's avatar
oseverma9
Copper Contributor
Feb 15, 2024

Logic Flow name in Azure Log Analytics

dependencies

| where type == "Ajax"

| where success == "False"

| where name has "logicflows"

| project timestamp, name, resultCode, duration, type, target, data, operation_Name, appName

| order by timestamp desc

This KQL query in Azure Application Insights> Azure Log Analytics is used to get errors for logicflows. It returns the data but, I cannot see the logicflow name or ID anywhere. Is there any way to fetch logicflow ID?

 

The azure app insight is registered for a power app, where we are using automate flows to call apis. We need the flow's name in analytics.

 

I tried looking the database, there is no field for logic flow's name or ID. Though when seen in user>sessions, it shows name in requestHeaders.

1 Reply

  • I believe below the reasons that you are not able to see the Flow name/ID:

     

    • The dependencies table in Application Insights logs client‑side AJAX calls (from your Power App to the Logic Flow endpoint).
    • By default, it only records generic fields like name, target, resultCode, and data.
    • The Logic Flow identifier (GUID or friendly name) is not mapped into these fields. Instead, it’s carried in the HTTP request headers or sometimes in the url field.

Resources