Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 945 Bytes

event_ingestion.md

File metadata and controls

26 lines (21 loc) · 945 Bytes

Event Ingestion

We send the Amazon Chime SDK meeting events to the Amazon Chime backend to analyze meeting health trends or identify common failures. This helps us to improve your meeting experience.

Sensitive attributes

The Amazon Chime SDK for Android will not send below sensitive attributes to the Amazon Chime backend.

Attribute Description
externalMeetingId The Amazon Chime SDK external meeting ID.
externalUserId The Amazon Chime SDK external user ID that can indicate an identity managed by your application.

Opt out of Event Ingestion

To opt out of event ingestion, provide NoopEventReporterFactory to DefaultMeetingSession while creating the meeting session.

See following example code:

    DefaultMeetingSession(
        meetingSessionConfiguration,
        logger,
        applicationContext,
        DefaultEglCoreFactory(),
        NoopEventReporterFactory()
    )