What does running zenprocess output:

Code:
zenprocess run -v10 -d devicename



If this doesn't show much, you can add an extra debug statement to zenprocess. 
Change this (should be line 340 in Products/ZenRRD/zenprocess.py):


Code:
            
            for pid, (name, args) in procs:
                if p.match(name, args):
                    log.debug("Found process %d on %s" % (pid, p.name))
                    after[pid] = p




And add the last two lines:


Code:

            for pid, (name, args) in procs:
                if p.match(name, args):
                    log.debug("Found process %d on %s" % (pid, p.name))
                    after[pid] = p
                else:
                    log.debug("Did not match process %d (%s) on regex %s" % 
(pid, name, p.name))




Re-run the zenprocess with -v10 and it will show you every process that it 
tries to match.

------------------------
 Torleiv Ringer




-------------------- m2f --------------------

Read this topic online here:
http://community.zenoss.com/forums/viewtopic.php?p=6907#6907

-------------------- m2f --------------------



_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to