public static boolean reportException(Exception ex, String customData, ExceptionData exData) {
if (ex == null) {
return false;
}
ExceptionHelper helper = new ExceptionHelper(ex, exData, breadcrumbQueue.toArray(), customData, hostname);
return report(EXCEPTIONS_TIMESERIES, 1.0, helper.createExceptionContext(), helper.createExceptionDimensions());
}