Hi,
I'm using 7.16.2, here are the fields I've in my index... it holding data on builds in Jenkins.. build number, status: pass or fail...
I need to create a graph of success rate based on time.. for example: % of the tests Passed per week.
e.g.: Week1 - 90%, week 2-85%, week 3- 70%, week 4- 100%...
Can you help me understand how to build this kind of graph?
"hits" : [
{
"_index" : "buildsfailures",
"_type" : "_doc",
"_id" : "AvAe330BtYsQZh-CKKj7",
"_score" : null,
"_source" : {
"buildNumber" : 10948,
"buildStatus" : "FAILURE",
"displayName" : "#10948",
"duration" : "00:0:10",
"timestamp" : "2021-12-20T00:08:06.818Z",
"url" : "https://jenkins.com/job/fireglass/job/dev/10948/"
},
"sort" : [
1639958886818
]
}
Thanks in advance,
Shay