本文整理了Java中org.hyperic.sigar.NetStat.getTcpEstablished()
方法的一些代码示例,展示了NetStat.getTcpEstablished()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。NetStat.getTcpEstablished()
方法的具体详情如下:
包路径:org.hyperic.sigar.NetStat
类名称:NetStat
方法名:getTcpEstablished
暂无
代码示例来源:origin: apache/incubator-druid
.put(
"sys/tcp/state/established",
(long) netStat.getTcpEstablished()
代码示例来源:origin: scouter-project/scouter
void netstat() throws SigarException {
long now = System.currentTimeMillis();
if (now - last_time < 10000) {
return;
}
last_time = now;
NetStat net = sigar.getNetStat();
this.net_in = net.getAllInboundTotal();
this.net_out = net.getAllOutboundTotal();
this.tcpstat_close = net.getTcpCloseWait();
this.tcpstat_fin1 = net.getTcpFinWait1();
this.tcpstat_fin2 = net.getTcpFinWait2();
this.tcpstat_time = net.getTcpTimeWait();
this.tcpstat_est = net.getTcpEstablished();
}
代码示例来源:origin: com.axway.ats.framework.agent.standalone/ats-agent-monitoring
@Override
public float poll() {
return fixLongValue( sigarWrapper.netstat.getTcpEstablished() );
}
};
代码示例来源:origin: griddynamics/jagger
private static Map<String, String> toMap(NetStat netStat) {
Map<String, String> result = Maps.newHashMap();
result.put("allInboundTotal", "" + netStat.getAllInboundTotal());
result.put("allOutboundTotal", "" + netStat.getAllOutboundTotal());
result.put("tcpBound", "" + netStat.getTcpBound());
result.put("tcpClose", "" + netStat.getTcpClose());
result.put("tcpCloseWait", "" + netStat.getTcpCloseWait());
result.put("tcpClosing", "" + netStat.getTcpClosing());
result.put("tcpEstablished", "" + netStat.getTcpEstablished());
result.put("tcpFinWait1", "" + netStat.getTcpFinWait1());
result.put("tcpFinWait2", "" + netStat.getTcpFinWait2());
result.put("tcpIdle", "" + netStat.getTcpIdle());
result.put("tcpInboundTotal", "" + netStat.getTcpInboundTotal());
result.put("tcpLastAck", "" + netStat.getTcpLastAck());
result.put("tcpListen", "" + netStat.getTcpListen());
result.put("tcpOutboundTotal", "" + netStat.getTcpOutboundTotal());
result.put("tcpStates", "" + netStat.getTcpStates());
result.put("tcpSynRecv", "" + netStat.getTcpSynRecv());
result.put("tcpSynSent", "" + netStat.getTcpSynSent());
result.put("tcpTimeWait", "" + netStat.getTcpTimeWait());
return result;
}
代码示例来源:origin: metamx/java-util
.put(
"sys/tcp/state/established",
(long) netStat.getTcpEstablished()
代码示例来源:origin: com.metamx/java-util
.put(
"sys/tcp/state/established",
(long) netStat.getTcpEstablished()
代码示例来源:origin: io.druid/java-util
.put(
"sys/tcp/state/established",
(long) netStat.getTcpEstablished()
代码示例来源:origin: org.apache.druid/java-util
.put(
"sys/tcp/state/established",
(long) netStat.getTcpEstablished()
代码示例来源:origin: com.metamx/server-metrics
.put(
"sys/tcp/state/established",
(long) netStat.getTcpEstablished()
代码示例来源:origin: org.apache.geronimo/geronimo-metrics-sigar
definitions.add(new Definition("sigar.network.tcp.established", "TCP established",
"TCP established", "count",
() -> sigar.getNetStat().getTcpEstablished()));
definitions.add(new Definition("sigar.network.tcp.idle", "TCP Idle",
"TCP Idle", "count",
代码示例来源:origin: griddynamics/jagger
@Override
public TcpData getTcpData() {
TcpData data = new TcpData();
try {
NetStat stat = sigar.getNetStat();
data.setTcpBound(stat.getTcpBound());
data.setTcpEstablished(stat.getTcpEstablished());
data.setTcpIdle(stat.getTcpIdle());
data.setTcpListen(stat.getTcpListen());
data.setTcpSynchronizedReceived(stat.getTcpSynRecv());
long inboundBytes = 0;
long outboundBytes = 0;
for(String netInterface : sigar.getNetInterfaceList()) {
for(String mask : interfaceNames) {
if(netInterface.matches(mask)) {
inboundBytes += sigar.getNetInterfaceStat(netInterface).getRxBytes();
outboundBytes += sigar.getNetInterfaceStat(netInterface).getTxBytes();
}
}
}
data.setTcpInboundTotal(inboundBytes);
data.setTcpOutboundTotal(outboundBytes);
logger.debug("getTcpData: {}", data);
} catch (SigarException e) {
logger.warn("Exception during getTcpData", e);
}
return data;
}
代码示例来源:origin: kg.apc/perfmon
break;
case ESTAB:
val = stat.getTcpEstablished();
break;
case FIN_WAIT1:
代码示例来源:origin: undera/perfmon-agent
break;
case ESTAB:
val = stat.getTcpEstablished();
break;
case FIN_WAIT1:
内容来源于网络,如有侵权,请联系作者删除!