@PickleRick I am still not able to figure this out. I am trying to get a list of the all the ufs which are disconnected or not communicating to the Deployment server. I am breaking it down in this way . 1. To List all the existing forwarders for my instance , and 2. List all the forwarders which are establishing connection with DS Hence, Missing/Disconnect UFs = All - (active UFs) In my monitoring console, under Forwarder > Deployment, I see data which shows all the active and missing forwarders, which is pulling its data from a lookup called "| inputlookup dmc_forwarder_assets" , like you said earlier. So, if I want to get all the forwarders which are there in my environment and is active, I am using this query below- | inputlookup dmc_forwarder_assets
| search forwarder_type="uf" AND status="active"
| dedup hostname
| table hostname And to get list of forwarders I am using the below query - index=_internal sourcetype=splunkd component=DC:HandshakeReplyHandler
| dedup host
| table host As, in my instance , under internal logs, only 3 values for the field component seems relevant - DC:HandshakeReplyHandler, DC:DeploymentClient , DC:PhonehomeThread and DS_DC_Common So, with my understanding I used DC:HandshakeReplyHandler as it gives the message - Handshake done (which basically means that uf was able to establish connection with the DS ) Am I going in right direction?? Please reply
... View more