I am adding few custom properties to the RequestTelemetry object as below
Java Web app
RequestTelemetry.getProperties.put(key,value);
But the same doesn't reflect in the portal.
So i created a new telemetryClient and invoked telemettyClient.trackRequest() but it creates a duplicate request entry in portal.
Is there a way to achieve the same without duplicating the telemetry object.
TIA