forked from kubernetes/kube-state-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
265 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# IngressClass Metrics | ||
|
||
| Metric name| Metric type | Labels/tags | Status | | ||
| ---------- | ----------- | ----------- | ----------- | | ||
| kube_ingressclass_annotations | Gauge | `ingressclass`=<ingressclass-name> <br> `annotation_INGRESSCLASS_ANNOTATION`=<INGRESSCLASS_ANNOTATION> | EXPERIMENTAL | | ||
| kube_ingressclass_info | Gauge | `ingressclass`=<ingressclass-name> <br> `controller`=<ingress-controller-name> <br> | STABLE | | ||
| kube_ingressclass_labels | Gauge | `ingressclass`=<ingressclass-name> <br> `label_INGRESSCLASS_LABEL`=<INGRESSCLASS_LABEL> | STABLE | | ||
| kube_ingressclass_created | Gauge | `ingressclass`=<ingressclass-name> | STABLE | |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,6 +97,7 @@ rules: | |
- networking.k8s.io | ||
resources: | ||
- networkpolicies | ||
- ingressclasses | ||
- ingresses | ||
verbs: | ||
- list | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,6 +97,7 @@ rules: | |
- networking.k8s.io | ||
resources: | ||
- networkpolicies | ||
- ingressclasses | ||
- ingresses | ||
verbs: | ||
- list | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
/* | ||
Copyright 2022 The Kubernetes Authors All rights reserved. | ||
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 store | ||
|
||
import ( | ||
"context" | ||
|
||
"k8s.io/kube-state-metrics/v2/pkg/metric" | ||
generator "k8s.io/kube-state-metrics/v2/pkg/metric_generator" | ||
|
||
networkingv1 "k8s.io/api/networking/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
"k8s.io/apimachinery/pkg/watch" | ||
clientset "k8s.io/client-go/kubernetes" | ||
"k8s.io/client-go/tools/cache" | ||
) | ||
|
||
var ( | ||
descIngressClassAnnotationsName = "kube_ingressclass_annotations" | ||
descIngressClassAnnotationsHelp = "Kubernetes annotations converted to Prometheus labels." | ||
descIngressClassLabelsName = "kube_ingressclass_labels" | ||
descIngressClassLabelsHelp = "Kubernetes labels converted to Prometheus labels." | ||
descIngressClassLabelsDefaultLabels = []string{"ingressclass"} | ||
) | ||
|
||
func ingressClassMetricFamilies(allowAnnotationsList, allowLabelsList []string) []generator.FamilyGenerator { | ||
return []generator.FamilyGenerator{ | ||
*generator.NewFamilyGenerator( | ||
"kube_ingressclass_info", | ||
"Information about ingressclass.", | ||
metric.Gauge, | ||
"", | ||
wrapIngressClassFunc(func(s *networkingv1.IngressClass) *metric.Family { | ||
|
||
m := metric.Metric{ | ||
LabelKeys: []string{"controller"}, | ||
LabelValues: []string{s.Spec.Controller}, | ||
Value: 1, | ||
} | ||
return &metric.Family{Metrics: []*metric.Metric{&m}} | ||
}), | ||
), | ||
*generator.NewFamilyGenerator( | ||
"kube_ingressclass_created", | ||
"Unix creation timestamp", | ||
metric.Gauge, | ||
"", | ||
wrapIngressClassFunc(func(s *networkingv1.IngressClass) *metric.Family { | ||
ms := []*metric.Metric{} | ||
if !s.CreationTimestamp.IsZero() { | ||
ms = append(ms, &metric.Metric{ | ||
Value: float64(s.CreationTimestamp.Unix()), | ||
}) | ||
} | ||
return &metric.Family{ | ||
Metrics: ms, | ||
} | ||
}), | ||
), | ||
*generator.NewFamilyGenerator( | ||
descIngressClassAnnotationsName, | ||
descIngressClassAnnotationsHelp, | ||
metric.Gauge, | ||
"", | ||
wrapIngressClassFunc(func(s *networkingv1.IngressClass) *metric.Family { | ||
annotationKeys, annotationValues := createPrometheusLabelKeysValues("annotation", s.Annotations, allowAnnotationsList) | ||
return &metric.Family{ | ||
Metrics: []*metric.Metric{ | ||
{ | ||
LabelKeys: annotationKeys, | ||
LabelValues: annotationValues, | ||
Value: 1, | ||
}, | ||
}, | ||
} | ||
}), | ||
), | ||
*generator.NewFamilyGenerator( | ||
descIngressClassLabelsName, | ||
descIngressClassLabelsHelp, | ||
metric.Gauge, | ||
"", | ||
wrapIngressClassFunc(func(s *networkingv1.IngressClass) *metric.Family { | ||
labelKeys, labelValues := createPrometheusLabelKeysValues("label", s.Labels, allowLabelsList) | ||
return &metric.Family{ | ||
Metrics: []*metric.Metric{ | ||
{ | ||
LabelKeys: labelKeys, | ||
LabelValues: labelValues, | ||
Value: 1, | ||
}, | ||
}, | ||
} | ||
}), | ||
), | ||
} | ||
} | ||
|
||
func wrapIngressClassFunc(f func(*networkingv1.IngressClass) *metric.Family) func(interface{}) *metric.Family { | ||
return func(obj interface{}) *metric.Family { | ||
ingressClass := obj.(*networkingv1.IngressClass) | ||
|
||
metricFamily := f(ingressClass) | ||
|
||
for _, m := range metricFamily.Metrics { | ||
m.LabelKeys, m.LabelValues = mergeKeyValues(descIngressClassLabelsDefaultLabels, []string{ingressClass.Name}, m.LabelKeys, m.LabelValues) | ||
} | ||
|
||
return metricFamily | ||
} | ||
} | ||
|
||
func createIngressClassListWatch(kubeClient clientset.Interface, ns string, fieldSelector string) cache.ListerWatcher { | ||
return &cache.ListWatch{ | ||
ListFunc: func(opts metav1.ListOptions) (runtime.Object, error) { | ||
return kubeClient.NetworkingV1().IngressClasses().List(context.TODO(), opts) | ||
}, | ||
WatchFunc: func(opts metav1.ListOptions) (watch.Interface, error) { | ||
return kubeClient.NetworkingV1().IngressClasses().Watch(context.TODO(), opts) | ||
}, | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/* | ||
Copyright 2022 The Kubernetes Authors All rights reserved. | ||
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 store | ||
|
||
import ( | ||
"testing" | ||
|
||
networkingv1 "k8s.io/api/networking/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
|
||
generator "k8s.io/kube-state-metrics/v2/pkg/metric_generator" | ||
) | ||
|
||
func TestIngressClassStore(t *testing.T) { | ||
startTime := 1501569018 | ||
metav1StartTime := metav1.Unix(int64(startTime), 0) | ||
|
||
cases := []generateMetricsTestCase{ | ||
{ | ||
Obj: &networkingv1.IngressClass{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "test_ingressclass-info", | ||
}, | ||
Spec: networkingv1.IngressClassSpec{ | ||
Controller: "controller", | ||
}, | ||
}, | ||
Want: ` | ||
# HELP kube_ingressclass_info Information about ingressclass. | ||
# TYPE kube_ingressclass_info gauge | ||
kube_ingressclass_info{ingressclass="test_ingressclass-info",controller="controller"} 1 | ||
`, | ||
MetricNames: []string{ | ||
"kube_ingressclass_info", | ||
}, | ||
}, | ||
{ | ||
Obj: &networkingv1.IngressClass{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "test_kube_ingressclass-created", | ||
CreationTimestamp: metav1StartTime, | ||
}, | ||
Spec: networkingv1.IngressClassSpec{ | ||
Controller: "controller", | ||
}, | ||
}, | ||
Want: ` | ||
# HELP kube_ingressclass_created Unix creation timestamp | ||
# TYPE kube_ingressclass_created gauge | ||
kube_ingressclass_created{ingressclass="test_kube_ingressclass-created"} 1.501569018e+09 | ||
`, | ||
MetricNames: []string{ | ||
"kube_ingressclass_created", | ||
}, | ||
}, | ||
{ | ||
AllowAnnotationsList: []string{ | ||
"ingressclass.kubernetes.io/is-default-class", | ||
}, | ||
Obj: &networkingv1.IngressClass{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "test_ingressclass-labels", | ||
Annotations: map[string]string{ | ||
"ingressclass.kubernetes.io/is-default-class": "true", | ||
}, | ||
Labels: map[string]string{ | ||
"foo": "bar", | ||
}, | ||
}, | ||
Spec: networkingv1.IngressClassSpec{ | ||
Controller: "controller", | ||
}, | ||
}, | ||
Want: ` | ||
# HELP kube_ingressclass_annotations Kubernetes annotations converted to Prometheus labels. | ||
# HELP kube_ingressclass_labels Kubernetes labels converted to Prometheus labels. | ||
# TYPE kube_ingressclass_annotations gauge | ||
# TYPE kube_ingressclass_labels gauge | ||
kube_ingressclass_annotations{ingressclass="test_ingressclass-labels",annotation_ingressclass_kubernetes_io_is_default_class="true"} 1 | ||
kube_ingressclass_labels{ingressclass="test_ingressclass-labels"} 1 | ||
`, | ||
MetricNames: []string{ | ||
"kube_ingressclass_annotations", "kube_ingressclass_labels", | ||
}, | ||
}, | ||
} | ||
for i, c := range cases { | ||
c.Func = generator.ComposeMetricGenFuncs(ingressClassMetricFamilies(c.AllowAnnotationsList, nil)) | ||
c.Headers = generator.ExtractMetricFamilyHeaders(ingressClassMetricFamilies(c.AllowAnnotationsList, nil)) | ||
if err := c.run(); err != nil { | ||
t.Errorf("unexpected collecting result in %vth run:\n%s", i, err) | ||
} | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: example-ingress | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: IngressClass | ||
metadata: | ||
name: example-ingressclass | ||
annotations: | ||
ingressclass.kubernetes.io/is-default-class: "true" | ||
spec: | ||
controller: example-ingress/controller |