You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
When a delivery service uses a topology, it still should have a total for all "ONLINE" and "OFFLINE" caches as well as totals for each Cache Group employed by the Topology. such as this:
This Bug Report affects these Traffic Control components:
Current behavior:
GET api/{{version}/deliveryservices/{id}/health returns no info if the delivery service uses a topology
{ "response": { "totalOffline": 0, "totalOnline": 0, "cachegroups": [ ] }}Expected behavior:
When a delivery service uses a topology, it still should have a total for all "ONLINE" and "OFFLINE" caches as well as totals for each Cache Group employed by the Topology. such as this:
{ "response": { "totalOffline": 16, "totalOnline": 388, "cachegroups": [ { "offline": 1, "online": 19, "name": "us-fl-sarasota" }, { "offline": 2, "online": 39, "name": "us-il-chicago" } ] }}Steps to reproduce:
GET api/{{version}}/deliveryservices/{{id}}/healthand observe the online/offline counts (total and per cache group)GET api/{{version}}/deliveryservices/{{id}}/healthand observe NO online/offline counts (total and per cache group)