Guilherme Monteiro
10/05/2023, 11:51 AMStefano Bonicatti
10/05/2023, 12:08 PMhost
column in `wifi_status`: https://osquery.io/schema/5.9.1/#wifi_status
Are you maybe seeing that from a fleet manager dashboard?Stefano Bonicatti
10/05/2023, 12:12 PMhostname
Guilherme Monteiro
10/05/2023, 12:44 PMStefano Bonicatti
10/05/2023, 12:47 PMGuilherme Monteiro
10/05/2023, 12:48 PMStefano Bonicatti
10/05/2023, 12:50 PMGuilherme Monteiro
10/05/2023, 12:53 PMStefano Bonicatti
10/05/2023, 1:05 PMSELECT w.*, s.hostname, s.hardware_serial FROM wifi_status as w, system_info as s;
But this obviously means changing the query and having all the machines resend the data, so that it's all together (and also, each row present in wifi_status will have those 2 additional columns, so data is duplicated). If you want to instead join data after the fact, when it's in the third party fleet manager, then that's their UI jobGuilherme Monteiro
10/05/2023, 2:07 PMGuilherme Monteiro
10/05/2023, 2:07 PM