View POST request body in Application Insights
问题 Is it possible to view POST request body in Application Insights? I can see request details, but not the payload being posted in application insights. Do I have to track this with some coding? I am building a MVC core 1.1 Web Api. 回答1: You can simply implement your own Telemetry Initializer: For example, below an implementation that extracts the payload and adds it as a custom dimension of the request telemetry: public class RequestBodyInitializer : ITelemetryInitializer { public void