Is there a way to update and show a field in Azure application insight request body using KQL?
request body: { name: "SomeName", insertionTime: "timeInUtc" } query: requests | where url contains "/get" | extend requestBody = parse_json(customDimensions["Request-Body"]) | project requestBody I want to show the request body with updated timestamp in the results table. like timestamp plus…