OBJECT

Conversation

Conversation that involves source, destination and protocol

link GraphQL Schema definition

  • type Conversation {
  • # The IP of the source
  • srcIP: String!
  • # The IP of the destination
  • dstIP: String!
  • # The port of the server
  • port: Int!
  • # The protocol used in this conversation
  • protocol: String!
  • # The starting time of this conversation
  • start: Time!
  • # The ending time of this conversation
  • end: Time!
  • # The count of packets in the conversation
  • packets: ConversationPair!
  • # The count of bytes in the conversation
  • len: ConversationPair!
  • }