Hi,
The following piece of code use to work prior to 1.0.9 SDK, but from 1.0.10 it doesn't push the exception telemetry
Snippet:
exception = (throwable instanceof Exception) ? (Exception)throwable : new Exception(throwable);
ExceptionTelemetry exceptionTelemetry = new ExceptionTelemetry(exception);
exceptionTelemetry.setSeverityLevel(getAISeverityLevel(event));
exceptionTelemetry.getContext().getProperties().put(MSG_LABEL, formattedMessage);
client.trackException(exceptionTelemetry);
Did anything change in the underlying SDK implementation that stops pushing telemetry this way??
Hi,
The following piece of code use to work prior to 1.0.9 SDK, but from 1.0.10 it doesn't push the exception telemetry
Snippet:
exception = (throwable instanceof Exception) ? (Exception)throwable : new Exception(throwable);
ExceptionTelemetry exceptionTelemetry = new ExceptionTelemetry(exception);
exceptionTelemetry.setSeverityLevel(getAISeverityLevel(event));
exceptionTelemetry.getContext().getProperties().put(MSG_LABEL, formattedMessage);
client.trackException(exceptionTelemetry);
Did anything change in the underlying SDK implementation that stops pushing telemetry this way??