-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathmetrics.go
339 lines (288 loc) · 9.33 KB
/
metrics.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
package util
import (
"bytes"
"context"
"fmt"
"io"
"net/http"
"net/url"
"strings"
"time"
dto "github.com/prometheus/client_model/go"
"github.com/prometheus/common/expfmt"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/util/errors"
"k8s.io/cli-runtime/pkg/genericclioptions"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/rest"
restclient "k8s.io/client-go/rest"
"k8s.io/client-go/tools/portforward"
"k8s.io/client-go/transport/spdy"
"k8s.io/kubernetes/test/utils"
)
// pods whose metrics show a larger ratio of requests per
// second than maxQPSAllowed are considered "unhealthy".
const (
maxQPSAllowed = 1.5
)
var (
// TODO: these exceptions should not exist. Update operators to have a better request-rate per second
perComponentNamespaceMaxQPSAllowed = map[string]float64{
"openshift-apiserver-operator": 7.2,
"openshift-kube-apiserver-operator": 7.2,
"openshift-kube-controller-manager-operator": 2.0,
"openshift-cluster-kube-scheduler-operator": 1.8,
"openshift-cluster-openshift-controller-manager-operator": 1.7,
"openshift-kube-scheduler-operator": 1.7,
}
)
type podInfo struct {
name string
qps float64
status string
namespace string
result string
failed bool
skipped bool
}
// CalculatePodMetrics receives an admin client and an admin.kubeconfig, and traverses a list
// of operator namespaces, measuring requests-per-second for each operator pod, using the
// overall long-running time of each pod as a base metric.
func CalculatePodMetrics(adminClient kubernetes.Interface, adminConfig *restclient.Config) error {
podURLGetter := &portForwardURLGetter{
Protocol: "https",
Host: "localhost",
RemotePort: "8443",
LocalPort: "37587",
}
namespaces, err := adminClient.CoreV1().Namespaces().List(context.Background(), metav1.ListOptions{})
if err != nil {
return err
}
failures := []error{}
for _, ns := range namespaces.Items {
// skip namespaces which do not meet "operator namespace" criteria
if !strings.HasPrefix(ns.Name, "openshift-") || !strings.HasSuffix(ns.Name, "-operator") {
continue
}
infos, err := getPodInfoForNamespace(adminClient, adminConfig, podURLGetter, ns.Name)
if err != nil {
return err
}
for _, info := range infos {
if info.failed {
failures = append(failures, fmt.Errorf("failed to fetch operator pod metrics for pod %q: %s", info.name, info.result))
continue
}
if info.skipped {
continue
}
qpsLimit := maxQPSAllowed
if customLimit, ok := perComponentNamespaceMaxQPSAllowed[info.namespace]; ok {
qpsLimit = customLimit
}
if info.qps > qpsLimit {
failures = append(failures, fmt.Errorf("operator pod %q in namespace %q is making %v requests per second. Maximum allowed is %v requests per second", info.name, info.namespace, info.qps, qpsLimit))
continue
}
}
}
if len(failures) > 0 {
return errors.NewAggregate(failures)
}
return nil
}
func getPodInfoForNamespace(adminClient kubernetes.Interface, adminConfig *restclient.Config, podURLGetter *portForwardURLGetter, namespace string) ([]*podInfo, error) {
pods, err := adminClient.CoreV1().Pods(namespace).List(context.Background(), metav1.ListOptions{})
if err != nil {
return nil, err
}
podInfos := []*podInfo{}
for _, pod := range pods.Items {
info := &podInfo{
name: pod.Name,
namespace: pod.Namespace,
status: string(pod.Status.Phase),
}
podReady, err := utils.PodRunningReady(&pod)
if !podReady || err != nil {
result := "skipped, pod is not Running"
if err != nil {
result = fmt.Sprintf("%s: %v", result, err)
}
info.result = result
info.skipped = true
podInfos = append(podInfos, info)
continue
}
if len(pod.Spec.Containers) == 0 {
info.result = "skipped, no containers found"
info.skipped = true
podInfos = append(podInfos, info)
continue
}
metrics, err := getPodMetrics(adminConfig, &pod, podURLGetter)
if err != nil {
info.result = fmt.Sprintf("error: %s", err)
info.failed = true
// ignore errors from pods with no /metrics endpoint available
switch err.(type) {
case *url.Error:
if strings.Contains(err.Error(), "EOF") {
info.skipped = true
info.failed = false
info.result = fmt.Sprintf("/metrics endpoint not available")
}
}
podInfos = append(podInfos, info)
continue
}
metricGroup, ok := metrics["rest_client_requests_total"]
if !ok {
info.result = fmt.Sprintf("error: failed to find counter: %q", "rest_client_requests_total")
info.failed = true
podInfos = append(podInfos, info)
continue
}
procStartTime, ok := metrics["process_start_time_seconds"]
if !ok || len(procStartTime.Metric) == 0 {
info.result = fmt.Sprintf("error: failed to find metric: %q", "process_start_time_seconds")
info.failed = true
podInfos = append(podInfos, info)
continue
}
procStartTimeSeconds := procStartTime.Metric[0].GetGauge().GetValue()
totalProcTimeSeconds := time.Now().Unix() - int64(procStartTimeSeconds)
totalRequestCount := float64(0)
for _, metric := range metricGroup.Metric {
totalRequestCount += metric.Counter.GetValue()
}
comment := "within QPS bounds"
qps := totalRequestCount / float64(totalProcTimeSeconds)
if qps > maxQPSAllowed {
comment = "exceeds QPS bounds"
}
info.status = fmt.Sprintf("%s (%s)", info.status, comment)
info.qps = qps
info.result = fmt.Sprintf("%v requests over a span of %v seconds", totalRequestCount, totalProcTimeSeconds)
podInfos = append(podInfos, info)
}
return podInfos, nil
}
func getPodMetrics(adminConfig *restclient.Config, pod *v1.Pod, podURLGetter *portForwardURLGetter) (map[string]*dto.MetricFamily, error) {
result, err := podURLGetter.Get("/metrics", pod, adminConfig)
if err != nil {
return nil, err
}
return parseRawMetrics(result)
}
func parseRawMetrics(rawMetrics string) (map[string]*dto.MetricFamily, error) {
p := expfmt.TextParser{}
return p.TextToMetricFamilies(bytes.NewBufferString(rawMetrics))
}
type defaultPortForwarder struct {
restConfig *rest.Config
StopChannel chan struct{}
ReadyChannel chan struct{}
}
func newDefaultPortForwarder(adminConfig *rest.Config) *defaultPortForwarder {
return &defaultPortForwarder{
restConfig: adminConfig,
StopChannel: make(chan struct{}, 1),
ReadyChannel: make(chan struct{}, 1),
}
}
func (f *defaultPortForwarder) forwardPortsAndExecute(pod *v1.Pod, ports []string, toExecute func()) error {
if len(ports) < 1 {
return fmt.Errorf("at least 1 PORT is required for port-forward")
}
restClient, err := rest.RESTClientFor(setRESTConfigDefaults(*f.restConfig))
if err != nil {
return err
}
if pod.Status.Phase != v1.PodRunning {
return fmt.Errorf("unable to forward port because pod is not running. Current status=%v", pod.Status.Phase)
}
stdout := bytes.NewBuffer(nil)
req := restClient.Post().
Resource("pods").
Namespace(pod.Namespace).
Name(pod.Name).
SubResource("portforward")
transport, upgrader, err := spdy.RoundTripperFor(f.restConfig)
if err != nil {
return err
}
dialer := spdy.NewDialer(upgrader, &http.Client{Transport: transport}, "POST", req.URL())
fw, err := portforward.New(dialer, ports, f.StopChannel, f.ReadyChannel, stdout, stdout)
if err != nil {
return err
}
go func() {
if f.StopChannel != nil {
defer close(f.StopChannel)
}
<-f.ReadyChannel
toExecute()
}()
return fw.ForwardPorts()
}
func setRESTConfigDefaults(config rest.Config) *rest.Config {
if config.GroupVersion == nil {
config.GroupVersion = &schema.GroupVersion{Group: "", Version: "v1"}
}
if config.NegotiatedSerializer == nil {
config.NegotiatedSerializer = scheme.Codecs
}
if len(config.UserAgent) == 0 {
config.UserAgent = rest.DefaultKubernetesUserAgent()
}
config.APIPath = "/api"
return &config
}
func newInsecureRESTClientForHost(host string) (rest.Interface, error) {
insecure := true
configFlags := &genericclioptions.ConfigFlags{}
configFlags.Insecure = &insecure
configFlags.APIServer = &host
newConfig, err := configFlags.ToRESTConfig()
if err != nil {
return nil, err
}
return rest.RESTClientFor(setRESTConfigDefaults(*newConfig))
}
type portForwardURLGetter struct {
Protocol string
Host string
RemotePort string
LocalPort string
}
// Get receives a url path (i.e. /metrics), a pod, and a rest config, and forwards a set remote port on the pod
// to a specified local port. It then executes a GET request using an insecure REST client against the given urlPath.
func (c *portForwardURLGetter) Get(urlPath string, pod *v1.Pod, config *rest.Config) (string, error) {
var result string
var lastErr error
forwarder := newDefaultPortForwarder(config)
if err := forwarder.forwardPortsAndExecute(pod, []string{c.LocalPort + ":" + c.RemotePort}, func() {
restClient, err := newInsecureRESTClientForHost(fmt.Sprintf("https://localhost:%s/", c.LocalPort))
if err != nil {
lastErr = err
return
}
ioCloser, err := restClient.Get().RequestURI(urlPath).Stream(context.Background())
if err != nil {
lastErr = err
return
}
defer ioCloser.Close()
data := bytes.NewBuffer(nil)
_, lastErr = io.Copy(data, ioCloser)
result = data.String()
}); err != nil {
return "", err
}
return result, lastErr
}