Created
June 2, 2022 15:31
-
-
Save ilyesAj/94bb2a783707e5d3485b4c859179a78c to your computer and use it in GitHub Desktop.
This file contains 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
$ kubectl get --raw "/apis/external.metrics.k8s.io/v1beta1" | jq . | |
{ | |
"kind": "APIResourceList", | |
"apiVersion": "v1", | |
"groupVersion": "external.metrics.k8s.io/v1beta1", | |
"resources": [ | |
{ | |
"name": "gitlab_runner_jobs_builds_concurrent_saturation", | |
"singularName": "", | |
"namespaced": true, | |
"kind": "ExternalMetricValueList", | |
"verbs": [ | |
"get" | |
] | |
} | |
] | |
} | |
$ kubectl get --raw "/apis/external.metrics.k8s.io/v1beta1/namespaces/default/gitlab_runner_jobs_builds_concurrent_saturation" | jq . | |
{ | |
"kind": "ExternalMetricValueList", | |
"apiVersion": "external.metrics.k8s.io/v1beta1", | |
"metadata": {}, | |
"items": [ | |
{ | |
"metricName": "gitlab_runner_jobs_builds_concurrent_saturation", | |
"metricLabels": {}, | |
"timestamp": "2022-06-02T15:31:05Z", | |
"value": "0" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment