Hi @Yauheni Yefimenka ,
Thank you for posting this question on Microsoft Q&A.
I understand that you want to edit the URL being collected through ApplicationInsights for the requests to exclude certain parameters. For that, you may use telemetry initializers to modify the properties of telemetry being submitted to ApplicationInsights. The link here provides a basic example of how to use it in your application - Add/modify properties: ITelemetryInitializer
Note the line var requestTelemetry = telemetry as RequestTelemetry;
in the sample provided. RequestTelemetry
has a property called URL which can be read and overwritten with some obfuscated data.
I also noticed based on the screenshot that the URL was related to a PHP application. Note that PHP is not officially supported language for ApplicationInsights. For details, please see this link.
Please let me know if you have any questions.
---
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.