-
Hello again! After identifying hosts with the QueryDeviceFilter I need to get certain information from the hosts. In order to do that, I'm using the GetDeviceDetails function, however it doesn't display the Then, how can I obtain de connection status parameter using falconpy? (The GetDeviceDetails currently shows a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @alexgumo7 - The falcon.query_devices_by_filter(filter="last_seen:>='now-10m'+last_seen:<'now'")
What information are you wanting to retrieve from the hosts? The host doesn't need to be online for you to retrieve data from the API, but would need to be if you are wanting to run RTR commands against it (and get the results back, you would still be able to queue the command). |
Beta Was this translation helpful? Give feedback.
Hi @alexgumo7 -
The
Connection Status
value is calculated dynamically and then shown. It does not align to an attribute directly, but you can filter results to get a close approximation using thelast_seen
value.What information are you wanting to retrieve from the hosts? The host doesn't need to be online for you to retrieve data from the API, but would need to be if you are wanting to run RTR commands against it (and get the results back, you would still be able to queue the command).