Hello,
I'm currently storing in ElasticSearch build data from Jenkins, related to the success of client deployments. If we see such data as a table, this is what I have:
client_id | build_url | result |
---|---|---|
123456 | http://jenkins.com/build/1 | FAILURE |
123456 | http://jenkins.com/build/2 | FAILURE |
123456 | http://jenkins.com/build/3 | SUCCESS |
789999 | http://jenkins.com/build/4 | FAILURE |
789999 | http://jenkins.com/build/5 | SUCCESS |
258963 | http://jenkins.com/build/6 | FAILURE |
258963 | http://jenkins.com/build/7 | FAILURE |
458963 | http://jenkins.com/build/8 | FAILURE |
I want to create a table visualization in Kibana that shows all the failed builds for clients that didn't had at least one SUCCESS.
So, for the example data set above, I would expect to only see:
client_id | build_url | result |
---|---|---|
258963 | http://jenkins.com/build/6 | FAILURE |
258963 | http://jenkins.com/build/7 | FAILURE |
458963 | http://jenkins.com/build/8 | FAILURE |
Does anyone know how I could create this sort of group filtering? I would need this by client_id
.
Thank you in advance.