Skip to main content
POST
/
networks
/
traffic
/
situation
Get Network Situation Summary
curl --request POST \
  --url https://api.eflow.team/v1/networks/traffic/situation \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '{}'
{
  "network_id": 1,
  "active_domain_count": 9,
  "active_domain_with_incident_count": 3,
  "active_domain_without_incident_count": 6,
  "active_domain_with_blacklist_incident_count": 1,
  "active_domain_without_blacklist_incident_count": 8,
  "active_incident_count": 4,
  "active_domain_blacklist_incident_count": 2,
  "active_easylist_domain_blacklist_incident_count": 0,
  "active_hetrix_tools_domain_blacklist_incident_count": 0,
  "active_google_threat_intelligence_domain_blacklist_incident_count": 2,
  "active_ip_address_blacklist_incident_count": 0,
  "mean_time_to_resolution_seconds": 0
}
A network-wide Traffic Health summary — aggregate counts of active domains, domains with and without incidents, and blocklist incidents broken down by vendor. Send an empty object {} for the default rollup.

Authorizations

X-Eflow-Api-Key
string
header
required

Body

application/json

Optional filters. Send an empty object {} for the default rollup.

Response

200 - application/json
network_id
integer
active_domain_count
integer
active_domain_with_incident_count
integer
active_domain_without_incident_count
integer
active_domain_with_blacklist_incident_count
integer
active_domain_without_blacklist_incident_count
integer
active_incident_count
integer
active_domain_blacklist_incident_count
integer
active_easylist_domain_blacklist_incident_count
integer
active_hetrix_tools_domain_blacklist_incident_count
integer
active_google_threat_intelligence_domain_blacklist_incident_count
integer
active_ip_address_blacklist_incident_count
integer
mean_time_to_resolution_seconds
integer

Mean time to resolution for resolved incidents, in seconds.