0
votes
Tracked properties are not getting logged in log analytic workspace. I have configured the required settings in diagnostic settings section of logic app.

  
**Below is logic app code-**
 

{ "definition": { "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", "actions": { "Initialize_variable": { "inputs": { "variables": [ { "name": "test", "type": "string", "value": "@triggerBody()?['uid']" } ] }, "runAfter": {}, "type": "InitializeVariable" }, "Response": { "inputs": { "body": "@variables('test')", "statusCode": 200 }, "kind": "Http", "runAfter": { "Initialize_variable": [ "Succeeded" ] }, "trackedProperties": { "OutputBlobName": "@triggerBody()?['uid']" }, "type": "Response" } }, "contentVersion": "1.0.0.0", "outputs": {}, "parameters": {}, "triggers": { "manual": { "inputs": { "schema": { "properties": { "uid": { "type": "string" } }, "type": "object" } }, "kind": "Http", "type": "Request" } } }, "parameters": {} }

Is there any configuration at workspace level that I ma missing.

1

1 Answers

0
votes

I believe you need to modify your code a bit. I am sharing an example which might help:

Image 1:

enter image description here

changing this ( Image 1) to the this (Image 2) did the trick :

Image 2:

enter image description here

Reference : https://www.connected-pawns.com/2018/06/19/cant-see-tracked-properties-logic-app/

Also you can check : https://peterrombouts.nl/2019/04/01/logicapps-monitoring-with-log-analytics/