Interface BuildEventStreamProtos.BuildMetrics.NetworkMetrics.SystemNetworkStatsOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
BuildEventStreamProtos.BuildMetrics.NetworkMetrics.SystemNetworkStats, BuildEventStreamProtos.BuildMetrics.NetworkMetrics.SystemNetworkStats.Builder
Enclosing class:
BuildEventStreamProtos.BuildMetrics.NetworkMetrics

public static interface BuildEventStreamProtos.BuildMetrics.NetworkMetrics.SystemNetworkStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Total bytes received during the invocation.
    long
    Total bytes sent during the invocation.
    long
    Total packets received during the invocation.
    long
    Total packets sent during the invocation.
    long
    Peak bytes/sec received during the invocation.
    long
    Peak bytes/sec sent during the invocation.
    long
    Peak packets/sec received during the invocation.
    long
    Peak packets/sec sent during the invocation.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getBytesSent

      long getBytesSent()
       Total bytes sent during the invocation.
       
      uint64 bytes_sent = 1;
      Returns:
      The bytesSent.
    • getBytesRecv

      long getBytesRecv()
       Total bytes received during the invocation.
       
      uint64 bytes_recv = 2;
      Returns:
      The bytesRecv.
    • getPacketsSent

      long getPacketsSent()
       Total packets sent during the invocation.
       
      uint64 packets_sent = 3;
      Returns:
      The packetsSent.
    • getPacketsRecv

      long getPacketsRecv()
       Total packets received during the invocation.
       
      uint64 packets_recv = 4;
      Returns:
      The packetsRecv.
    • getPeakBytesSentPerSec

      long getPeakBytesSentPerSec()
       Peak bytes/sec sent during the invocation.
       
      uint64 peak_bytes_sent_per_sec = 5;
      Returns:
      The peakBytesSentPerSec.
    • getPeakBytesRecvPerSec

      long getPeakBytesRecvPerSec()
       Peak bytes/sec received during the invocation.
       
      uint64 peak_bytes_recv_per_sec = 6;
      Returns:
      The peakBytesRecvPerSec.
    • getPeakPacketsSentPerSec

      long getPeakPacketsSentPerSec()
       Peak packets/sec sent during the invocation.
       
      uint64 peak_packets_sent_per_sec = 7;
      Returns:
      The peakPacketsSentPerSec.
    • getPeakPacketsRecvPerSec

      long getPeakPacketsRecvPerSec()
       Peak packets/sec received during the invocation.
       
      uint64 peak_packets_recv_per_sec = 8;
      Returns:
      The peakPacketsRecvPerSec.