I use a mixture of recordIssues and publishIssues steps. All recordIssues have the settings aggregatingResults: false
But regardless of this setting the job page shows me an additional chart "Aggregated Analysis Results" which duplicates all other charts I generate. How can this be disabled? I think this behavior was introduced with 5.1.0
Should this be something in the UI, so that an individual user can disable/hide some of the charts? Or a server side option for all users, that needs to be specified in the Jenkinsfile as a parameter?
This should be a server side option in the Jenkinsfile. I could imagine an extra parameter or a predefined ID that can be overridden. BTW what is the meaning of the recordIssues aggregatingResults parameter?
This should be a server side option in the Jenkinsfile. I could imagine an extra parameter or a predefined ID that can be overridden.
Why not on the client side? It feels somewhat wrong to define a UI property on the server side. Maybe other users of a job want to see the aggregation?
BTW what is the meaning of the recordIssues aggregatingResults parameter?
It is used if you are using multiple tools per recordIssues step. Then you get only one result (link) with all warnings aggregated. Otherwise you get a result per tool.
I added an attachment how we use the warnings graph. The aggregated graph has no use for any user, because it's just redundant. So I think it's a decision of the pipeline designer how he want to group the graph results.