webpass wrote: > Hmm, nothing ever appears in my OS Processes table except mysqld and httpd... > would that be something wrong with my snmpd config or does Zenoss' OS Process > monitoring just not play nice with FreeBSD?
I second that... I have hundreds of UNIX boxes (a handful of FreeBSD and the rest OpenSUSE) and none of them show Memory or CPU use, in Zenoss. The problem with gathering that data is that it's dynamic. Each PID in SNMP has an index, which changes based on when it's started/stopped. You can walk Processes here: .1.3.6.1.2.1.25.4.2.1.4. You can see their CPU use here: 1.3.6.1.2.1.25.5.1.1.1 You can see their memory use here: 1.3.6.1.2.1.25.5.1.1.2 You'd have to write a modeler, similar to $ZENHOME/Products/ZenModel/FileSystem.py for processes in order to dynamically gather that data. The best way to do it is write a script to parse the data from the host, use a COMMAND check and associate that with your script. You could use SNMP or SSH to gather that info, whatever is easiest for you. -------------------- m2f -------------------- Read this topic online here: http://forums.zenoss.com/viewtopic.php?p=25699#25699 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
