mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 01:38:10 +00:00
Include a fix to the NodeMetrics and PodMetrics APIs to match k8s conventions. - NodeMetrics and PodMetrics now have labels as they can be filtered by them - Field selector is now applied to NodeMetrics and PodMetrics instead of Nodes and Pods Signed-off-by: Damien Grisonnet <dgrisonn@redhat.com>
233 lines
6.8 KiB
Go
233 lines
6.8 KiB
Go
// Copyright 2018 The Kubernetes Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package api
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"sort"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
metav1beta1 "k8s.io/apimachinery/pkg/apis/meta/v1beta1"
|
|
"k8s.io/apimachinery/pkg/fields"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/apiserver/pkg/registry/generic"
|
|
"k8s.io/apiserver/pkg/registry/rest"
|
|
v1listers "k8s.io/client-go/listers/core/v1"
|
|
"k8s.io/klog/v2"
|
|
"k8s.io/metrics/pkg/apis/metrics"
|
|
_ "k8s.io/metrics/pkg/apis/metrics/install"
|
|
)
|
|
|
|
type nodeMetrics struct {
|
|
groupResource schema.GroupResource
|
|
metrics NodeMetricsGetter
|
|
nodeLister v1listers.NodeLister
|
|
}
|
|
|
|
var _ rest.KindProvider = &nodeMetrics{}
|
|
var _ rest.Storage = &nodeMetrics{}
|
|
var _ rest.Getter = &nodeMetrics{}
|
|
var _ rest.Lister = &nodeMetrics{}
|
|
var _ rest.Scoper = &nodeMetrics{}
|
|
var _ rest.TableConvertor = &nodeMetrics{}
|
|
|
|
func newNodeMetrics(groupResource schema.GroupResource, metrics NodeMetricsGetter, nodeLister v1listers.NodeLister) *nodeMetrics {
|
|
return &nodeMetrics{
|
|
groupResource: groupResource,
|
|
metrics: metrics,
|
|
nodeLister: nodeLister,
|
|
}
|
|
}
|
|
|
|
// Storage interface
|
|
func (m *nodeMetrics) New() runtime.Object {
|
|
return &metrics.NodeMetrics{}
|
|
}
|
|
|
|
// KindProvider interface
|
|
func (m *nodeMetrics) Kind() string {
|
|
return "NodeMetrics"
|
|
}
|
|
|
|
// Lister interface
|
|
func (m *nodeMetrics) NewList() runtime.Object {
|
|
return &metrics.NodeMetricsList{}
|
|
}
|
|
|
|
// Lister interface
|
|
func (m *nodeMetrics) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
|
|
labelSelector := labels.Everything()
|
|
if options != nil && options.LabelSelector != nil {
|
|
labelSelector = options.LabelSelector
|
|
}
|
|
nodes, err := m.nodeLister.List(labelSelector)
|
|
if err != nil {
|
|
errMsg := fmt.Errorf("Error while listing nodes for selector %v: %v", labelSelector, err)
|
|
klog.Error(errMsg)
|
|
return &metrics.NodeMetricsList{}, errMsg
|
|
}
|
|
|
|
// maintain the same ordering invariant as the Kube API would over nodes
|
|
sort.Slice(nodes, func(i, j int) bool {
|
|
return nodes[i].Name < nodes[j].Name
|
|
})
|
|
|
|
metricsItems, err := m.getNodeMetrics(nodes...)
|
|
if err != nil {
|
|
errMsg := fmt.Errorf("Error while fetching node metrics for selector %v: %v", labelSelector, err)
|
|
klog.Error(errMsg)
|
|
return &metrics.NodeMetricsList{}, errMsg
|
|
}
|
|
|
|
if options != nil && options.FieldSelector != nil {
|
|
newMetrics := make([]metrics.NodeMetrics, 0, len(metricsItems))
|
|
fields := make(fields.Set, 2)
|
|
for _, metric := range metricsItems {
|
|
for k := range fields {
|
|
delete(fields, k)
|
|
}
|
|
fieldsSet := generic.AddObjectMetaFieldsSet(fields, &metric.ObjectMeta, false)
|
|
if !options.FieldSelector.Matches(fieldsSet) {
|
|
continue
|
|
}
|
|
newMetrics = append(newMetrics, metric)
|
|
}
|
|
metricsItems = newMetrics
|
|
}
|
|
|
|
return &metrics.NodeMetricsList{Items: metricsItems}, nil
|
|
}
|
|
|
|
func (m *nodeMetrics) Get(ctx context.Context, name string, opts *metav1.GetOptions) (runtime.Object, error) {
|
|
node, err := m.nodeLister.Get(name)
|
|
if err != nil {
|
|
errMsg := fmt.Errorf("Error while getting node %v: %v", name, err)
|
|
klog.Error(errMsg)
|
|
if errors.IsNotFound(err) {
|
|
// return not-found errors directly
|
|
return nil, err
|
|
}
|
|
return nil, errMsg
|
|
}
|
|
if node == nil {
|
|
return nil, errors.NewNotFound(m.groupResource, name)
|
|
}
|
|
nodeMetrics, err := m.getNodeMetrics(node)
|
|
if err == nil && len(nodeMetrics) == 0 {
|
|
err = fmt.Errorf("no metrics known for node %q", name)
|
|
}
|
|
if err != nil {
|
|
klog.Errorf("unable to fetch node metrics for node %q: %v", name, err)
|
|
return nil, errors.NewNotFound(m.groupResource, name)
|
|
}
|
|
|
|
return &nodeMetrics[0], nil
|
|
}
|
|
|
|
func (m *nodeMetrics) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1beta1.Table, error) {
|
|
var table metav1beta1.Table
|
|
|
|
switch t := object.(type) {
|
|
case *metrics.NodeMetrics:
|
|
table.ResourceVersion = t.ResourceVersion
|
|
table.SelfLink = t.SelfLink
|
|
addNodeMetricsToTable(&table, *t)
|
|
case *metrics.NodeMetricsList:
|
|
table.ResourceVersion = t.ResourceVersion
|
|
table.SelfLink = t.SelfLink
|
|
table.Continue = t.Continue
|
|
addNodeMetricsToTable(&table, t.Items...)
|
|
default:
|
|
}
|
|
|
|
return &table, nil
|
|
}
|
|
|
|
func addNodeMetricsToTable(table *metav1beta1.Table, nodes ...metrics.NodeMetrics) {
|
|
var names []string
|
|
for i, node := range nodes {
|
|
if names == nil {
|
|
for k := range node.Usage {
|
|
names = append(names, string(k))
|
|
}
|
|
sort.Strings(names)
|
|
|
|
table.ColumnDefinitions = []metav1beta1.TableColumnDefinition{
|
|
{Name: "Name", Type: "string", Format: "name", Description: "Name of the resource"},
|
|
}
|
|
for _, name := range names {
|
|
table.ColumnDefinitions = append(table.ColumnDefinitions, metav1beta1.TableColumnDefinition{
|
|
Name: name,
|
|
Type: "string",
|
|
Format: "quantity",
|
|
})
|
|
}
|
|
table.ColumnDefinitions = append(table.ColumnDefinitions, metav1beta1.TableColumnDefinition{
|
|
Name: "Window",
|
|
Type: "string",
|
|
Format: "duration",
|
|
})
|
|
}
|
|
row := make([]interface{}, 0, len(names)+1)
|
|
row = append(row, node.Name)
|
|
for _, name := range names {
|
|
v := node.Usage[v1.ResourceName(name)]
|
|
row = append(row, v.String())
|
|
}
|
|
row = append(row, node.Window.Duration.String())
|
|
table.Rows = append(table.Rows, metav1beta1.TableRow{
|
|
Cells: row,
|
|
Object: runtime.RawExtension{Object: &nodes[i]},
|
|
})
|
|
}
|
|
}
|
|
|
|
func (m *nodeMetrics) getNodeMetrics(nodes ...*v1.Node) ([]metrics.NodeMetrics, error) {
|
|
names := make([]string, len(nodes))
|
|
for i, node := range nodes {
|
|
names[i] = node.Name
|
|
}
|
|
timestamps, usages := m.metrics.GetNodeMetrics(names...)
|
|
res := make([]metrics.NodeMetrics, 0, len(names))
|
|
|
|
for i, node := range nodes {
|
|
if usages[i] == nil {
|
|
continue
|
|
}
|
|
res = append(res, metrics.NodeMetrics{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: node.Name,
|
|
CreationTimestamp: metav1.NewTime(myClock.Now()),
|
|
Labels: node.Labels,
|
|
},
|
|
Timestamp: metav1.NewTime(timestamps[i].Timestamp),
|
|
Window: metav1.Duration{Duration: timestamps[i].Window},
|
|
Usage: usages[i],
|
|
})
|
|
metricFreshness.WithLabelValues().Observe(myClock.Since(timestamps[i].Timestamp).Seconds())
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func (m *nodeMetrics) NamespaceScoped() bool {
|
|
return false
|
|
}
|