List all the Devices running specific service
From Zenoss Wiki
This is the approved revision of this page, as well as being the most recent.
We might come across a scenario where we wish to list all the devices which are running certain service. One can tackle such request with few lines of codes.
for d in dmd.Devices.getSubDevices(): for s in d.os.winservices(): if s.id=="XXXXX": d.id,s.getStatusString()
Replace XXX with desired service name. Use above code with ZenDMD and get the desired list.