Skip to content

Instantly share code, notes, and snippets.

@ahal
Created October 23, 2018 19:49
Show Gist options
  • Save ahal/b78a93acd8ea0312e1d09dd37069c857 to your computer and use it in GitHub Desktop.
Save ahal/b78a93acd8ea0312e1d09dd37069c857 to your computer and use it in GitHub Desktop.
seta_accuracy query
{
"from":"treeherder",
"limit":10,
"select":[
"build.date",
"job.type.name",
"action.request_time",
"build.revision12",
"failure.notes.text"
],
"where":{
"and":[
{
"lte":{
"repo.push.date":{
"date":"today"
}
}
},
{
"gte":{
"repo.push.date":{
"date":"today-week"
}
}
},
{
"in":{
"build.branch":"mozilla-central"
}
},
{
"in":{
"job.type.group.symbol":[
"M",
"M-e10s",
"X"
]
}
},
{
"neq":{
"build.type":"asan"
}
},
{
"eq":{
"run.machine.platform":"linux64"
}
},
{
"eq":{
"failure.classification":"fixed by commit"
}
}
]
},
"format":"table"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment