Created
October 2, 2020 01:51
-
-
Save iameli/fd461537fe60145cf47ff2ccec7183e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| set -o pipefail | |
| set -o nounset | |
| for pod in $(kubectl get pods -o name | grep orchestrator); do | |
| echo $pod | |
| kubectl port-forward $pod 7935 & | |
| proc=$! | |
| sleep 2 | |
| curl --silent http://localhost:7935/metrics | grep 'livepeer_current_sessions_total{' >> counts | |
| kill $proc | |
| wait | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment