forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prometheus_builds.go
218 lines (187 loc) · 7.39 KB
/
prometheus_builds.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
package prometheus
import (
"encoding/json"
"fmt"
"time"
g "github.com/onsi/ginkgo"
o "github.com/onsi/gomega"
"github.com/prometheus/common/model"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/kubernetes/pkg/api/v1"
e2e "k8s.io/kubernetes/test/e2e/framework"
buildapi "github.com/openshift/origin/pkg/build/apis/build"
exutil "github.com/openshift/origin/test/extended/util"
)
var (
execPodName, ns, host, bearerToken string
statsPort int
)
var _ = g.Describe("[Feature:Prometheus][Feature:Builds] Prometheus", func() {
defer g.GinkgoRecover()
var (
oc = exutil.NewCLI("prometheus", exutil.KubeConfigPath())
)
g.BeforeEach(func() {
ns, host, bearerToken, statsPort = bringUpPrometheusFromTemplate(oc)
})
g.Describe("when installed to the cluster", func() {
g.It("should start and expose a secured proxy and verify build metrics", func() {
const (
buildCountQuery = "openshift_build_total"
activeBuildQuery = "openshift_build_active_time_seconds"
)
appTemplate := exutil.FixturePath("..", "..", "examples", "jenkins", "application-template.json")
execPodName = e2e.CreateExecPodOrFail(oc.AdminKubeClient(), ns, "execpod", func(pod *v1.Pod) {
pod.Spec.Containers[0].Image = "centos:7"
})
defer func() { oc.AdminKubeClient().Core().Pods(ns).Delete(execPodName, metav1.NewDeleteOptions(1)) }()
g.By("verifying the oauth-proxy reports a 403 on the root URL")
// allow for some retry, a la prometheus.go and its initial hitting of the metrics endpoint after
// instantiating prometheus tempalte
var err error
for i := 0; i < 30; i++ {
err = expectURLStatusCodeExec(ns, execPodName, fmt.Sprintf("https://%s:%d", host, statsPort), 403)
if err == nil {
break
}
time.Sleep(time.Second)
}
o.Expect(err).NotTo(o.HaveOccurred())
g.By("verifying a service account token is able to authenticate")
err = expectBearerTokenURLStatusCodeExec(ns, execPodName, fmt.Sprintf("https://%s:%d/graph", host, statsPort), bearerToken, 200)
o.Expect(err).NotTo(o.HaveOccurred())
br := startOpenShiftBuild(oc, appTemplate)
g.By("verifying a service account token is able to query active build metrics from the Prometheus API")
// NOTE - activeBuildCountQuery is dependent on prometheus querying while the build is running;
// timing has been a bit tricky when attempting to query after the build is complete based on the
// default prometheus scrapping window, so we do the active query while the build is running
activeTests := map[string][]metricTest{
activeBuildQuery: {
metricTest{
labels: map[string]string{"name": "frontend-1"},
greaterThan: true,
},
},
}
runQueries(activeTests)
g.By("verifying build completed successfully")
err = exutil.WaitForBuildResult(oc.BuildClient().Build().Builds(oc.Namespace()), br)
o.Expect(err).NotTo(o.HaveOccurred())
br.AssertSuccess()
g.By("verifying a service account token is able to query terminal build metrics from the Prometheus API")
terminalTests := map[string][]metricTest{
buildCountQuery: {
metricTest{
labels: map[string]string{"phase": string(buildapi.BuildPhaseComplete)},
greaterThan: true,
},
metricTest{
labels: map[string]string{"phase": string(buildapi.BuildPhaseCancelled)},
},
metricTest{
labels: map[string]string{"phase": string(buildapi.BuildPhaseFailed)},
},
},
}
runQueries(terminalTests)
// NOTE: in manual testing on a laptop, starting several serial builds in succession was sufficient for catching
// at least a few builds in new/pending state with the default prometheus query interval; but that has not
// proven to be the case with automated testing;
// so for now, we have no tests with openshift_build_new_pending_phase_creation_time_seconds
})
})
})
type prometheusResponse struct {
Status string `json:"status"`
Data prometheusResponseData `json:"data"`
}
type prometheusResponseData struct {
ResultType string `json:"resultType"`
Result model.Vector `json:"result"`
}
type metricTest struct {
labels map[string]string
greaterThan bool
value float64
success bool
}
func runQueries(metricTests map[string][]metricTest) {
// expect all correct metrics within 60 seconds
errsMap := map[string]error{}
for i := 0; i < 60; i++ {
for query, tcs := range metricTests {
//TODO when the http/query apis discussed at https://github.com/prometheus/client_golang#client-for-the-prometheus-http-api
// and introduced at https://github.com/prometheus/client_golang/blob/master/api/prometheus/v1/api.go are vendored into
// openshift/origin, look to replace this homegrown http request / query param with that API
g.By("perform prometheus metric query " + query)
contents, err := getBearerTokenURLViaPod(ns, execPodName, fmt.Sprintf("https://%s:%d/api/v1/query?query=%s", host, statsPort, query), bearerToken)
o.Expect(err).NotTo(o.HaveOccurred())
result := prometheusResponse{}
json.Unmarshal([]byte(contents), &result)
metrics := result.Data.Result
// for each test case, register that one of the returned metrics has the desired labels and value
for j, tc := range tcs {
for _, sample := range metrics {
if labelsWeWant(sample, tc.labels) && valueWeWant(sample, tc) {
tcs[j].success = true
break
}
}
}
// now check the results, see if any bad
delete(errsMap, query) // clear out any prior faliures
for _, tc := range tcs {
if !tc.success {
errsMap[query] = fmt.Errorf("query %s for tests %#v had results %s", query, tcs, contents)
break
}
}
}
if len(errsMap) == 0 {
break
}
time.Sleep(time.Second)
}
o.Expect(errsMap).To(o.BeEmpty())
}
func startOpenShiftBuild(oc *exutil.CLI, appTemplate string) *exutil.BuildResult {
g.By("waiting for builder service account")
err := exutil.WaitForBuilderAccount(oc.KubeClient().Core().ServiceAccounts(oc.Namespace()))
o.Expect(err).NotTo(o.HaveOccurred())
g.By(fmt.Sprintf("calling oc new-app %s ", appTemplate))
err = oc.Run("new-app").Args(appTemplate).Execute()
o.Expect(err).NotTo(o.HaveOccurred())
g.By("wait on imagestreams used by build")
err = exutil.WaitForOpenShiftNamespaceImageStreams(oc)
o.Expect(err).NotTo(o.HaveOccurred())
g.By("explicitly set up image stream tag, avoid timing window")
err = oc.AsAdmin().Run("tag").Args("openshift/nodejs:latest", oc.Namespace()+"/nodejs-010-centos7:latest").Execute()
o.Expect(err).NotTo(o.HaveOccurred())
g.By("start build")
br, err := exutil.StartBuildResult(oc, "frontend")
o.Expect(err).NotTo(o.HaveOccurred())
return br
}
func labelsWeWant(sample *model.Sample, labels map[string]string) bool {
//NOTE - prometheus LabelSet.Equals is of little use to us, since the "instance" label
// is specific to the host things are running on, so we can't craft an accurate Metric
// to compare against
for labelName, labelValue := range labels {
if v, ok := sample.Metric[model.LabelName(labelName)]; ok {
if string(v) != labelValue {
return false
}
} else {
return false
}
}
return true
}
func valueWeWant(sample *model.Sample, tc metricTest) bool {
//NOTE - we could use SampleValue has an Equals func, but since SampleValue has no GreaterThan,
// we have to go down the float64 compare anyway
if tc.greaterThan {
return float64(sample.Value) > tc.value
}
return float64(sample.Value) == tc.value
}