generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 74
/
metrics.go
150 lines (126 loc) · 4.36 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
/*
Copyright 2017 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 main
import (
"encoding/json"
"flag"
"fmt"
"net/http"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/sirupsen/logrus"
"sigs.k8s.io/boskos/client"
"sigs.k8s.io/boskos/common"
"sigs.k8s.io/boskos/metrics"
"sigs.k8s.io/prow/pkg/config"
"sigs.k8s.io/prow/pkg/flagutil"
"sigs.k8s.io/prow/pkg/logrusutil"
prowmetrics "sigs.k8s.io/prow/pkg/metrics"
)
var (
resourcesMetric = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: metrics.ResourcesMetricName,
Help: metrics.ResourcesMetricDescription,
}, metrics.ResourcesMetricLabels)
boskosURL string
username string
passwordFile string
rtypes, states common.CommaSeparatedStrings
instrumentationOptions flagutil.InstrumentationOptions
)
func init() {
flag.StringVar(&boskosURL, "boskos-url", "http://boskos", "Boskos Server URL")
flag.StringVar(&username, "username", "", "Username used to access the Boskos server")
flag.StringVar(&passwordFile, "password-file", "", "The path to password file used to access the Boskos server")
flag.Var(&rtypes, "resource-type", "comma-separated list of resources need to have metrics collected.")
flag.Var(&states, "resource-state", "comma-separated list of states need to have metrics collected.")
prometheus.MustRegister(resourcesMetric)
}
func main() {
logrusutil.ComponentInit()
instrumentationOptions.AddFlags(flag.CommandLine)
flag.Parse()
if err := instrumentationOptions.Validate(false); err != nil {
logrus.Fatalf("Invalid options: %v", err)
}
boskos, err := client.NewClient("Metrics", boskosURL, username, passwordFile)
if err != nil {
logrus.WithError(err).Fatal("unable to create a Boskos client")
}
if states == nil {
states = common.KnownStates
}
prowmetrics.ExposeMetrics("boskos", config.PushGateway{}, instrumentationOptions.MetricsPort)
go func() {
tick := time.NewTicker(30 * time.Second).C
for range tick {
if err := updateResourcesMetric(boskos); err != nil {
logrus.WithError(err).Warning("failed to update resource metrics")
}
}
}()
logrus.Info("Start Service")
metricsMux := http.NewServeMux()
metricsMux.Handle("/", handleMetric(boskos))
logrus.WithError(http.ListenAndServe(":8080", metricsMux)).Fatal("ListenAndServe returned.")
}
func updateResourcesMetric(boskos *client.Client) error {
ms := []common.Metric{}
for _, rtype := range rtypes {
metric, err := boskos.Metric(rtype)
if err != nil {
logrus.WithError(err).Errorf("failed to get metric for %s", rtype)
continue
}
ms = append(ms, metric)
}
metrics.NormalizeResourceMetrics(ms, states, func(rtype, state string, count float64) {
resourcesMetric.WithLabelValues(rtype, state).Set(count)
})
return nil
}
// handleMetric: Handler for /
// Method: GET
func handleMetric(boskos *client.Client) http.HandlerFunc {
return func(res http.ResponseWriter, req *http.Request) {
log := logrus.WithField("handler", "handleMetric")
log.Infof("From %v", req.RemoteAddr)
if req.Method != "GET" {
log.Warningf("[BadRequest]method %v, expect GET", req.Method)
http.Error(res, "only accepts GET request", http.StatusMethodNotAllowed)
return
}
rtype := req.URL.Query().Get("type")
if rtype == "" {
msg := "type must be set in the request."
log.Warning(msg)
http.Error(res, msg, http.StatusBadRequest)
return
}
log.Infof("Request for metric %v", rtype)
metric, err := boskos.Metric(rtype)
if err != nil {
log.WithError(err).Errorf("Fail to get metic for %v", rtype)
http.Error(res, err.Error(), http.StatusNotFound)
return
}
metricJSON, err := json.Marshal(metric)
if err != nil {
log.WithError(err).Errorf("json.Marshal failed: %v", metricJSON)
http.Error(res, err.Error(), http.StatusInternalServerError)
return
}
log.Infof("Metric query for %v: %v", rtype, string(metricJSON))
fmt.Fprint(res, string(metricJSON))
}
}