OBJECT
Conversation
Conversation that involves source, destination and protocol
link GraphQL Schema definition
- type Conversation {
- # The IP of the source
- String! :
- # The IP of the destination
- String! :
- # The port of the source
- Int! :
- # The port of the destination
- Int! :
- # The port of the server
- Int! @deprecated( reason: "Use dstPort instead" ) :
- # The protocol used in this conversation
- String! :
- # The starting time of this conversation
- Time! :
- # The ending time of this conversation
- Time! :
- # The count of packets in the conversation
- ConversationPair! :
- # The count of bytes in the conversation
- ConversationPair! :
- }