8 lines
277 B
Bash
Executable File
8 lines
277 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! command -v prom2json > /dev/null; then
|
|
echo "You need prom2json to use this command"
|
|
exit 1
|
|
fi
|
|
kubectl get --raw /metrics | prom2json | jq -c '.[] | select(.name=="apiserver_requested_deprecated_apis").metrics[].labels' | column -t -s'{}[],"'
|