OBJECT

NetworkTrafficData

link GraphQL Schema definition

  • type NetworkTrafficData {
  • # Total bytes going from the srcEntity to the destEntity
  • egressBytes: NetworkData!
  • # Total bytes coming to the srcEntity from the destEntity
  • ingressBytes: NetworkData!
  • # Total byte rate between the srcEntity and the destEntity
  • totalByteRate: NetworkData!
  • # Total bytes exchanged between srcEntity and destEntity
  • totalBytes: NetworkData!
  • # Total packets flowing between the srcEntity and the destEntity
  • totalPackets: NetworkData!
  • # Total sessions between the srcEntity and the destEntity
  • totalSessionCount: NetworkData!
  • }