Hi DivSwa
i am unable to view my workflows name in the dropdown under the runs tab, on some of our flows we are actually using this workbook provided earlier by MS team : Extending Logic Apps App Insight integration with Azure Workbooks , this works fine and we can see the run history with our custom client tracking Id. our host.json file currently looks like below, with this setting this works in the older workbook and not under the logic app insights, do we need to make the host.json exactly to what is mentioned above, as i believe this new insights is basically an extension to the workbook provided earlier.
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
"version": "[1.*, 2.0.0)"
},
"extensions": {
"workflow": {
"Settings": {
"Runtime.ApplicationInsightTelemetryVersion": "v2"
}
}
}
}