mirror of https://github.com/portainer/portainer
21 lines
467 B
Go
21 lines
467 B
Go
package cli
|
|
|
|
import (
|
|
"context"
|
|
|
|
models "github.com/portainer/portainer/api/http/models/kubernetes"
|
|
|
|
"github.com/segmentio/encoding/json"
|
|
)
|
|
|
|
func (kcl *KubeClient) GetMetrics() (models.K8sMetrics, error) {
|
|
var metrics models.K8sMetrics
|
|
resp, err := kcl.cli.CoreV1().RESTClient().Get().AbsPath("apis/metrics.k8s.io/v1beta1/nodes").DoRaw(context.Background())
|
|
if err != nil {
|
|
return metrics, err
|
|
}
|
|
|
|
err = json.Unmarshal(resp, &metrics)
|
|
return metrics, err
|
|
}
|