This is a request to update on how to get the residual_bandwidth to make use of Link's utilization metadata on EP23-2.
The residual_bandwidth can be computed dynamically based on both link.metadata.utilization and link.[endpoint_a|endpoint_b].speed:
- In percent (scale from 0 to 100):
residual_bandwidth = 100 - utilization
residual_bandwidth_gbps = speed * 8 * ((100 - utilization) / 100)
This is a request to update on how to get the
residual_bandwidthto make use of Link'sutilizationmetadata on EP23-2.The
residual_bandwidthcan be computed dynamically based on bothlink.metadata.utilizationandlink.[endpoint_a|endpoint_b].speed:residual_bandwidth = 100 - utilizationresidual_bandwidth_gbps = speed * 8 * ((100 - utilization) / 100)