Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
wifi_status
macOS current WiFi status.
Column | Type | Description |
---|---|---|
bssid | text | The current basic service set identifier |
channel | integer | Channel number |
channel_band | integer | Channel band |
channel_width | integer | Channel width |
country_code | text | The country code (ISO/IEC 3166-1:1997) for the network |
interface | text | Name of the interface |
mode | text | The current operating mode for the Wi-Fi interface |
network_name | text | Name of the network |
noise | integer | The current noise measurement (dBm) |
rssi | integer | The current received signal strength indication (dbm) |
security_type | text | Type of security on this network |
ssid | text | SSID octets of the network |
transmit_rate | text | The current transmit rate |
See the current speed of the WiFi connection, in megabits per second.
SELECT transmit_rate FROM wifi_status;
bssid
and country code
are only available for macOS 11 and earlier because they would enable geolocation.