I was trying to remember the name of the logic app headers that I needed to log when configuring APIM so I can easily search in the App Insights logs for requests related to specific Logic App Runs. Since it took a while to check this im just logging it here for my reference.
Below are the list of headers you need.
- x-ms-workflow-resourcegroup-name
- x-ms-workflow-run-id
- x-ms-client-tracking-id
- x-ms-workflow-name
- x-ms-correlation-id
You will then see these in App Insights as shown below.

You could then do a query like the below which would let you find a request matching your specific logic app run and you can project out the columns you need.
let logicAppRunId = "08584552257064153469198242870CU01";
requests
| where customDimensions.["API Name"] == "outbound-api-sap-invoices"
| where customDimensions.["Operation Name"] == "submit-invoice"
| where customDimensions.["Request-x-ms-workflow-run-id"] == logicAppRunId
| extend client_tracking_id_ = tostring(customDimensions.["Request-x-ms-client-tracking-id"])
| extend correlation_id_ = tostring(customDimensions.["Request-x-ms-correlation-id"])
| extend workflow_name_ = tostring(customDimensions.["Request-x-ms-workflow-name"])
| extend resource_group_name_ = tostring(customDimensions.["Request-x-ms-workflow-resourcegroup-name"])
| extend workflow_run_id_ = tostring(customDimensions.["Request-x-ms-workflow-run-id"])