未验证 提交 2bc3b613 编写于 作者: K Kirs 提交者: GitHub

Delete unused code (MachineInfo) (#6679)

上级 776f19c7
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.skywalking.apm.util;
import java.lang.management.ManagementFactory;
import java.net.InetAddress;
import java.net.UnknownHostException;
public final class MachineInfo {
private static int PROCESS_NO = -1;
private static String IP;
private static String HOST_NAME;
static {
PROCESS_NO = getProcessNo();
}
public static int getProcessNo() {
if (PROCESS_NO == -1) {
String name = ManagementFactory.getRuntimeMXBean().getName();
try {
PROCESS_NO = Integer.parseInt(name.split("@")[0]);
} catch (Throwable t) {
PROCESS_NO = 0;
}
}
return PROCESS_NO;
}
private static InetAddress getInetAddress() {
try {
return InetAddress.getLocalHost();
} catch (UnknownHostException e) {
HOST_NAME = "unknown host!";
}
return null;
}
public static String getHostIp() {
if (StringUtil.isEmpty(IP)) {
InetAddress netAddress = getInetAddress();
if (null == netAddress) {
IP = "N/A";
} else {
IP = netAddress.getHostAddress(); //get the ip address
}
}
return IP;
}
public static String getHostName() {
if (StringUtil.isEmpty(HOST_NAME)) {
InetAddress netAddress = getInetAddress();
if (null == netAddress) {
HOST_NAME = "N/A";
} else {
HOST_NAME = netAddress.getHostName(); //get the host address
}
}
return HOST_NAME;
}
public static String getHostDesc() {
return getHostName() + "/" + getHostIp();
}
private MachineInfo() {
// Non
}
}
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.skywalking.apm.util;
import org.junit.Assert;
import org.junit.Test;
public class MachineInfoTest {
@Test
public void testMachine() {
int processNo = MachineInfo.getProcessNo();
Assert.assertTrue(processNo >= 0);
String hostIp = MachineInfo.getHostIp();
Assert.assertTrue(!StringUtil.isEmpty(hostIp));
String hostName = MachineInfo.getHostName();
Assert.assertTrue(!StringUtil.isEmpty(hostName));
String hostDesc = MachineInfo.getHostDesc();
Assert.assertTrue(!StringUtil.isEmpty(hostDesc) && hostDesc.contains("/"));
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册