It is likely that it picked those up because you were monitoring something that appeared int he arguments for those processes.
tail and vi are suspicious because you were probably tailing or editing a file with 'httpd' or whatever in the argument list of the command. e.g. 'vi httpd.conf' I have done two things, one is to turn off argument parsing. Set 'Ignore Parameters' to True if you want to not parse arguments. It is False by default. Also, I have restricted the regular expression by using these types of process Regex: '^httpd$' This is in the regex field in the edit tab on the process. The '^' says "from the beginning of the line". The '$' says "the end of the line". So the above would not match 'httpd.staging', but would match httpd. ------------------------ Torleiv Ringer -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=6888#6888 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
