Package org.openspaces.admin.os
Interface OperatingSystemStatistics.NetworkStatistics
- Enclosing interface:
- OperatingSystemStatistics
public static interface OperatingSystemStatistics.NetworkStatistics
-
Method Summary
Modifier and TypeMethodDescriptiongetName()The name of the network device.longThe total rx bytes received.doubleThe number of bytes received per second (computed against the previous sampled stats).longDeprecated.longlongdoublelongThe total tx bytes transmitted.doubleThe number of bytes transmitted per second (computed against the previous sampled stats).longDeprecated.longlongdouble
-
Method Details
-
getName
String getName()The name of the network device. -
getRxBytes
long getRxBytes()The total rx bytes received. -
getRxBytesPerSecond
double getRxBytesPerSecond()The number of bytes received per second (computed against the previous sampled stats). -
getTxBytes
long getTxBytes()The total tx bytes transmitted. -
getTxBytesPerSecond
double getTxBytesPerSecond()The number of bytes transmitted per second (computed against the previous sampled stats). -
getRxPackets
long getRxPackets() -
getRxPacketsPerSecond
double getRxPacketsPerSecond() -
getTxPackets
long getTxPackets() -
getTxPacketsPerSecond
double getTxPacketsPerSecond() -
getRxErrors
long getRxErrors() -
getTxErrors
long getTxErrors() -
getRxDropped
Deprecated. -
getTxDropped
Deprecated. -
getPrevious
OperatingSystemStatistics.NetworkStatistics getPrevious()
-