Home > @datadog/browser-rum > CommonProperties > connectivity
Device connectivity properties
Signature:
connectivity?: {
readonly status: 'connected' | 'not_connected' | 'maybe';
readonly interfaces?: ('bluetooth' | 'cellular' | 'ethernet' | 'wifi' | 'wimax' | 'mixed' | 'other' | 'unknown' | 'none')[];
readonly effective_type?: 'slow-2g' | '2g' | '3g' | '4g';
readonly cellular?: {
readonly technology?: string;
readonly carrier_name?: string;
[k: string]: unknown;
};
[k: string]: unknown;
};