AppMonitoringFlowCountsResponse
App Monitoring Flow Counts Response
Response containing unique flow counts broken down by traffic direction (Incoming, Outgoing, Internal) for an application. All counts represent unique flows within the requested time interval.
Notes:
- A unique flow is deduplicated by the 4-tuple of source VM, destination VM, destination port, and protocol - multiple occurrences within the requested time window count as one.
JSON Example
{
"ingress_flow_count": 0,
"egress_flow_count": 0,
"intra_flow_count": 0
}
integer As int64
As int64
ingress_flow_count
Optional
Number of unique flows entering the application from outside its boundary.
integer As int64
As int64
egress_flow_count
Optional
Number of unique flows leaving the application to outside its boundary.
integer As int64
As int64
intra_flow_count
Optional
Number of unique flows between workloads within the same application.