if -jar, use the jar name since no classname will be specified
This commit is contained in:
parent
3a2fcef755
commit
430962a988
|
@ -138,13 +138,16 @@ public class Ps extends SigarCommandBase {
|
||||||
String[] args = sigar.getProcArgs(pid);
|
String[] args = sigar.getProcArgs(pid);
|
||||||
for (int i=1; i<args.length; i++) {
|
for (int i=1; i<args.length; i++) {
|
||||||
String arg = args[i];
|
String arg = args[i];
|
||||||
if (!isClassName(arg)) {
|
if (isClassName(arg)) {
|
||||||
continue;
|
|
||||||
}
|
|
||||||
//example: "java:weblogic.Server"
|
//example: "java:weblogic.Server"
|
||||||
name += ":" + arg;
|
name += ":" + arg;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
else if (arg.equals("-jar")) {
|
||||||
|
name += ":" + args[i+1];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} catch (SigarException e) {}
|
} catch (SigarException e) {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue