I’m having troubles trying to compare the last two analyses of a project, I’m using the SonarQube web-api to achieve it. I did a first version which is not working everyday. Actually on my projects, analyses are triggered every day except for the week end. So I’m trying to compare friday’s report with thursday for exemple or monday with friday (taking week-end in count).
For now I’m calling this to get my measures :
/api/measures/search_history?component=[NAME]&metrics=coverage,duplicated_lines_density,bugs,vulnerabilities,code_smells&ps=100&from=[variable]
variable is a date I’m getting by getting the actual date minus 10 days (not that clean).
After getting my measures I’m looking if there is at least two results and if it is then I just substract the first two to get a value (for exemple -10 code smells).
Then a mail is sent with all the information.
Maybe someone know a better way to do it (maybe with another api call) ?
You’ve asked for a better way to go about this. Nothing springs to mind, but perhaps if you can share the underlying goal?
Also, it’s incumbent upon me to point out that 6.7.2 is past EOL. The current version is 8.4.1 and the current LTS is 7.9.4. You should upgrade at your earliest convenience.
Actually what I want to do is to get the last analysis of the actual day and of the day before to compare them (to see for example if some code smells have been removed) every day. I’m getting the informations and I send a mail everyday to every dev of the team .
The point is that I am having trouble the get the last analysis of a given day.
edit : I cannot really updrade to the latest version because it is a company strategy
If you’re looking for raw counts, I guess you can use api/measures/search_history but it’s not clear to me why you’d want to send a notification about how many issues were closed.
Actually we are using the api/measures/search_history to get our values but what I’m having trouble with is having the last analysis of a given day, for exemple the 2020/04/12 I have 5 reports, I want to get the last one of this day.
We actually focus on keeping new code clean but we also dedicate time to clean the more historical code of our applications and comparing the amount of issues we close between two given days helps the team to see the progression.
You can provide a datetime to the measures history search. And it looks like the results include datetimes. It seems like you would just check the returned values to find the newest one…?