args fixup

This commit is contained in:
Doug MacEachern 2005-05-10 16:48:23 +00:00
parent 6630ffe562
commit e34bbcfa2d
1 changed files with 5 additions and 2 deletions

View File

@ -310,9 +310,12 @@ public class Proxy {
if (type.startsWith("Proc")) { if (type.startsWith("Proc")) {
arg = this.pids.getName(iter); arg = this.pids.getName(iter);
} }
else if (type.startsWith("NetIf")) { else if (type.startsWith("Net")) {
arg = this.netif.getName(iter); arg = this.netif.getName(iter);
} }
else if (type.startsWith("MultiProc")) {
arg = "State.Name.eq=java";
}
else if (type.equals("FileSystemUsage") || else if (type.equals("FileSystemUsage") ||
type.equals("MountedFileSystemUsage")) type.equals("MountedFileSystemUsage"))
{ {
@ -323,7 +326,7 @@ public class Proxy {
{ {
arg = this.files.getName(iter); arg = this.files.getName(iter);
} }
else if (type.equals("DirStats")) { else if (type.equals("DirStat")) {
arg = this.dirs.getName(iter); arg = this.dirs.getName(iter);
} }
else { else {