ptql -> ps
This commit is contained in:
parent
60be6b1151
commit
e5ddd9d63d
|
@ -3,47 +3,47 @@
|
||||||
#were typed in by hand in the shell prompt.
|
#were typed in by hand in the shell prompt.
|
||||||
|
|
||||||
#find weblogic nodes (-1 means last index in the array)
|
#find weblogic nodes (-1 means last index in the array)
|
||||||
alias wlfind ptql State.Name.eq=java,Args.-1.eq=weblogic.Server
|
alias wlfind ps State.Name.eq=java,Args.-1.eq=weblogic.Server
|
||||||
|
|
||||||
|
|
||||||
#find websphere 4.x nodes
|
#find websphere 4.x nodes
|
||||||
alias ws4find ptql State.Name.eq=java,Args.*.eq=com.ibm.ejs.sm.server.ManagedServer
|
alias ws4find ps State.Name.eq=java,Args.*.eq=com.ibm.ejs.sm.server.ManagedServer
|
||||||
|
|
||||||
#find websphere admin server
|
#find websphere admin server
|
||||||
alias ws4admin ptql State.Name.eq=java,Args.*.eq=com.ibm.ejs.sm.server.AdminServer
|
alias ws4admin ps State.Name.eq=java,Args.*.eq=com.ibm.ejs.sm.server.AdminServer
|
||||||
|
|
||||||
#find websphere 5.x nodes
|
#find websphere 5.x nodes
|
||||||
alias ws5find ptql State.Name.eq=java,Args.*.eq=com.ibm.ws.runtime.WsServer
|
alias ws5find ps State.Name.eq=java,Args.*.eq=com.ibm.ws.runtime.WsServer
|
||||||
|
|
||||||
#find websphere 4.x and 5.x nodes
|
#find websphere 4.x and 5.x nodes
|
||||||
alias wsfind ptql State.Name.eq=java,Args.*.eq=com.ibm.ws.bootstrap.WSLauncher
|
alias wsfind ps State.Name.eq=java,Args.*.eq=com.ibm.ws.bootstrap.WSLauncher
|
||||||
|
|
||||||
#find jboss (use .sw=java to match 'java' or 'javaw')
|
#find jboss (use .sw=java to match 'java' or 'javaw')
|
||||||
alias jbfind ptql State.Name.sw=java,Args.*.eq=org.jboss.Main
|
alias jbfind ps State.Name.sw=java,Args.*.eq=org.jboss.Main
|
||||||
|
|
||||||
#find tomcat
|
#find tomcat
|
||||||
alias tcfind ptql State.Name.eq=java,Args.*.eq=org.apache.catalina.startup.Bootstrap
|
alias tcfind ps State.Name.eq=java,Args.*.eq=org.apache.catalina.startup.Bootstrap
|
||||||
|
|
||||||
#find apache parent processes
|
#find apache parent processes
|
||||||
#($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]pache2?$,State.Name.Pne=$1
|
alias apfind ps 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)
|
||||||
alias hant ptql State.Name.eq=java,Args.*.eq=org.apache.tools.ant.Main
|
alias hant ps State.Name.eq=java,Args.*.eq=org.apache.tools.ant.Main
|
||||||
|
|
||||||
#my HQ agent
|
#my HQ agent
|
||||||
#(user.name is in System.getProperties)
|
#(user.name is in System.getProperties)
|
||||||
alias myag ptql CredName.User.eq=$user.name,State.Name.sw=java,Args.-1.ew=AgentClient
|
alias myag ps CredName.User.eq=$user.name,State.Name.sw=java,Args.-1.ew=AgentClient
|
||||||
|
|
||||||
#find all java procs except the shell itself
|
#find all java procs except the shell itself
|
||||||
#($$ is the current process id)
|
#($$ is the current process id)
|
||||||
alias java ptql State.Name.eq=java,Pid.Pid.ne=$$
|
alias java ps State.Name.eq=java,Pid.Pid.ne=$$
|
||||||
|
|
||||||
#find all processes owned by the current user
|
#find all processes owned by the current user
|
||||||
alias myproc ptql CredName.User.eq=$user.name
|
alias myproc ps CredName.User.eq=$user.name
|
||||||
|
|
||||||
#VMware GSX VMs
|
#VMware GSX VMs
|
||||||
alias gsx-vm ptql State.Name.eq=vmware-vmx,Args.1.eq=-C
|
alias gsx-vm ps State.Name.eq=vmware-vmx,Args.1.eq=-C
|
||||||
|
|
Loading…
Reference in New Issue