sense-js-sdk
    Preparing search index...

    Interface MonitorStatus

    Represents the status of a Sense monitor.

    interface MonitorStatus {
        device_detection: {
            found: string[];
            in_progress: string[];
            num_detected: number;
        };
        monitor_info: {
            connection_state: string;
            emac: string;
            ethernet: boolean;
            ip_address: string;
            mac: string;
            ndt_enabled: boolean;
            online: boolean;
            serial: string;
            signal: null
            | string;
            ssid: string;
            test_result: string;
            version: string;
            wifi_strength: number;
        };
        signals: { progress: number; status: string };
    }
    Index

    Properties

    device_detection: {
        found: string[];
        in_progress: string[];
        num_detected: number;
    }
    monitor_info: {
        connection_state: string;
        emac: string;
        ethernet: boolean;
        ip_address: string;
        mac: string;
        ndt_enabled: boolean;
        online: boolean;
        serial: string;
        signal: null | string;
        ssid: string;
        test_result: string;
        version: string;
        wifi_strength: number;
    }
    signals: { progress: number; status: string }