remove editlogport in frontrnds disks (#24047)
This commit is contained in:
@ -53,7 +53,7 @@ public class FrontendsProcNode implements ProcNodeInterface {
|
||||
.build();
|
||||
|
||||
public static final ImmutableList<String> DISK_TITLE_NAMES = new ImmutableList.Builder<String>()
|
||||
.add("Name").add("Host").add("EditLogPort").add("DirType").add("Dir").add("Filesystem")
|
||||
.add("Name").add("Host").add("DirType").add("Dir").add("Filesystem")
|
||||
.add("Capacity").add("Used").add("Available").add("UseRate").add("MountOn")
|
||||
.build();
|
||||
|
||||
@ -159,7 +159,6 @@ public class FrontendsProcNode implements ProcNodeInterface {
|
||||
List<String> info = new ArrayList<String>();
|
||||
info.add(fe.getNodeName());
|
||||
info.add(fe.getHost());
|
||||
info.add(Integer.toString(fe.getEditLogPort()));
|
||||
info.add(disk.getDirType());
|
||||
info.add(disk.getDir());
|
||||
info.add(disk.getSpaceInfo().fileSystem);
|
||||
|
||||
@ -40,7 +40,6 @@ public class FrontendsDisksTableValuedFunction extends MetadataTableValuedFuncti
|
||||
private static final ImmutableList<Column> SCHEMA = ImmutableList.of(
|
||||
new Column("Name", ScalarType.createStringType()),
|
||||
new Column("Host", ScalarType.createStringType()),
|
||||
new Column("EditLogPort", ScalarType.createStringType()),
|
||||
new Column("DirType", ScalarType.createStringType()),
|
||||
new Column("Dir", ScalarType.createStringType()),
|
||||
new Column("Filesystem", ScalarType.createStringType()),
|
||||
|
||||
Reference in New Issue
Block a user