Interface OperatingSystemStatistics.NetworkStatistics

Enclosing interface:
OperatingSystemStatistics

public static interface OperatingSystemStatistics.NetworkStatistics
  • 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 long getRxDropped()
      Deprecated.
    • getTxDropped

      @Deprecated long getTxDropped()
      Deprecated.
    • getPrevious