We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
residual_bandwidth
This is a request to update on how to get the residual_bandwidth to make use of Link's utilization metadata on EP23-2.
utilization
The residual_bandwidth can be computed dynamically based on both link.metadata.utilization and link.[endpoint_a|endpoint_b].speed:
link.metadata.utilization
link.[endpoint_a|endpoint_b].speed
residual_bandwidth = 100 - utilization
residual_bandwidth_gbps = speed * 8 * ((100 - utilization) / 100)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a request to update on how to get the
residual_bandwidth
to make use of Link'sutilization
metadata on EP23-2.The
residual_bandwidth
can be computed dynamically based on bothlink.metadata.utilization
andlink.[endpoint_a|endpoint_b].speed
:residual_bandwidth = 100 - utilization
residual_bandwidth_gbps = speed * 8 * ((100 - utilization) / 100)
The text was updated successfully, but these errors were encountered: