forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 41
/
weekly-consistency-config.yaml
60 lines (59 loc) · 2.17 KB
/
weekly-consistency-config.yaml
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
metric: weekly-consistency
description: Calculate PR consistency for the past week.
query: |
select /* Calculate the probability a commit flaked */
wk,
round(1-sum(flaked)/count(flaked),3) consistency,
count(flaked) commits
from ( /* For each week, count whether a (num, commit) flaked */
select
wk,
num,
commit,
max(if(passed == runs or passed == 0, 0, 1)) flaked,
max(runs) builds
from (
select /* For each week, count runs and passes for a (job, num, commit) */
wk,
max(stamp) stamp,
num,
if(kind = "pull", commit, version) commit,
sum(if(result=='SUCCESS',1,0)) passed,
count(result) runs
from (
SELECT /* Find jobs for the past quarter, noting its commit, week it ran, and whether it passed */
job,
regexp_extract(path, r'pull/(\d+|batch)') as num, /* pr number */
if(left(job, 3) == "pr:", "pull", "ci") kind,
version,
regexp_extract(metadata.value, r'^[^,]+,\d+:([^,"]+)') commit, /* git hash of pr */
date(started) stamp,
date(date_add(date(started), -dayofweek(started), "day")) wk, /* group by week */
result
FROM [k8s-gubernator:build.all]
where
started > date_add(current_timestamp(), -90, "DAY")
and version != "unknown"
and (metadata.key = 'repos' or left(job, 3) == "ci-")
and job in ( /* only consider merge-blocking jobs */
'pr:pull-kubernetes-bazel-build',
'pr:pull-kubernetes-bazel-test',
'pr:pull-kubernetes-e2e-gce',
'pr:pull-kubernetes-e2e-gce-100-performance',
'pr:pull-kubernetes-e2e-kops-aws',
'pr:pull-kubernetes-integration',
'pr:pull-kubernetes-kubemark-e2e-gce-big',
'pr:pull-kubernetes-node-e2e',
'pr:pull-kubernetes-typecheck',
'pr:pull-kubernetes-verify',
)
having kind=='pull'
)
group by wk, job, num, commit
)
group by wk, num, commit
)
group by wk
order by wk
jqfilter: |
[(.[] | {commits: (.commits|tonumber), consistency: (.consistency|tonumber), wk: .wk})]