also match 'apache2' for apfind

This commit is contained in:
Doug MacEachern 2005-12-16 22:34:08 +00:00
parent 54105b5eb3
commit 474474d0b5
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ alias tcfind ptql State.Name.eq=java,Args.*.eq=org.apache.catalina.startup.Boots
#($1 is the return value of the first query in the string) #($1 is the return value of the first query in the string)
#'Pne' => 'P' flags means parent of matched process #'Pne' => 'P' flags means parent of matched process
#to filter out httpd child processes #to filter out httpd child processes
alias apfind ptql State.Name.re=^(https?d.*|[Aa]pache)$,State.Name.Pne=$1 alias apfind ptql State.Name.re=^(https?d.*|[Aa]pache2?)$,State.Name.Pne=$1
#find ant processes (ant hangs on me sometimes) #find ant processes (ant hangs on me sometimes)
#(* matches any value in the array) #(* matches any value in the array)