The Bamboo database has a table called buildresultsummary listing all build executions.
There are 2 columns related to build duration but I'm not sure of their actual meaning:
I assume both are in milliseconds.
processing_duration seems to be the value that Bamboo shows on the user interface as duration but I'm not sure.
Sometimes duration is greater than processing_duration but it can also be the other way around.
My purpose is to find out how many hours my agents have been building in the past year.
Which value should I use? Or should I take the sum of both?
Here are the queries I currenlty have:
select sum(processing_duration) from buildresultsummary
where build_date >= '01-01-20'
and build_date < '01-01-21'
and build_type = 'CHAIN'
order by build_date desc;
select sum(duration) from buildresultsummary
where build_date >= '01-01-20'
and build_date < '01-01-21'
and build_type = 'CHAIN'
order by build_date desc;
Hi , pay attention to this bug about the calculation of duration
https://jira.atlassian.com/browse/BAM-21817
Vote it please because i think that could affect also your actual work
If you do a query at CHAIN level, I think that to know how long your agents were busy building, you may use the processing_duration field, that is the net time the agent were busy+job queue, because if in your plan you have some JOBS to trigger manually, duration field considers also the time you get to trigger manually that job.
You should sum all duration or processing duration but with build_type= BUILD, so you don't count the queue time. You can connect buildresultsummary to agents with
join queue q on q.queue_id = buildresultsummary.build_agent_id
and aggregate on Agent level
Cheers,
Alessandro
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Further to our discussion internally, just to close the loop,
processing_duration seems to be the value that Bamboo shows on the user interface as duration but I'm not sure.
You are right. processing_duration column is the one you see in the build result summary page in Bamboo UI.
My purpose is to find out how many hours my agents have been building in the past year.
Which value should I use? Or should I take the sum of both?
If you want to know how long your agents were busy building, you may use the duration field.
When a build is scheduled, it first gets into a build queue and then gets assigned to an available agent, thus it can take some time between build scheduling and the actual build.
Hope that helps.
Cheers,
Jey
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.