use of com.microsoft.identity.common.internal.telemetry.adapter.TelemetryAggregationAdapter in project microsoft-authentication-library-common-for-android by AzureAD.
the class Telemetry method flush.
/**
* Flush the telemetry data based on the correlation id to the observers.
*
* @param correlationId The correlation id should either passed by the client app through the API call
* or generated by the API dispatcher.
*/
public void flush(@NonNull final String correlationId) {
if (!mIsTelemetryEnabled) {
return;
}
if (null == mObservers) {
Logger.warn(TAG, "No telemetry observer set.");
return;
}
if (StringUtil.isEmpty(correlationId)) {
Logger.warn(TAG, "No correlation id set.");
return;
}
// check the configuration
if (!mDefaultConfiguration.isDebugEnabled() && mIsDebugging) {
return;
}
List<Map<String, String>> finalRawMap = new CopyOnWriteArrayList<>();
for (Iterator<Map<String, String>> iterator = mTelemetryRawDataMap.iterator(); iterator.hasNext(); ) {
Map<String, String> event = iterator.next();
if (correlationId.equalsIgnoreCase(event.get(Key.CORRELATION_ID))) {
finalRawMap.add(applyPiiOiiRule(event));
iterator.remove();
}
}
// Add the telemetry context to the telemetry data
finalRawMap.add(applyPiiOiiRule(mTelemetryContext.getProperties()));
for (@SuppressWarnings(WarningType.rawtype_warning) ITelemetryObserver observer : mObservers) {
if (observer instanceof ITelemetryAggregatedObserver) {
new TelemetryAggregationAdapter((ITelemetryAggregatedObserver) observer).process(finalRawMap);
} else if (observer instanceof ITelemetryDefaultObserver) {
new TelemetryDefaultAdapter((ITelemetryDefaultObserver) observer).process(finalRawMap);
} else {
Logger.warn(TAG, "Unknown observer type: " + observer.getClass());
}
}
}
Aggregations