Graph generation of bamboo designs

I am a C ++ programmer and new to bamboo. I have many repositories that compile daily as part of the CI in Bamboo as different plans. I want to represent this build state in a graph. (dynamic update)

Bamboo provides a build status graph for each plan. But not in general. Or is there any remedy?

So, my idea is to write the build status of each plan to a file, and then read this file to generate a graph. ie at any time, if I open the chart, it will show me the status by reading this file. enter image description here So my question is:

  • Is it possible what I'm going to do?
  • If so, is there any bamboo built into it?
  • If not, can you suggest me how to do this? (I know a bit of html and js)
+6
source share
1 answer

I would use the APIs mentioned in the comments above to get the data and use D3.js to display the graphs on the web page.

I do not know if built-in functionality is built into bamboo.

+1
source

Source: https://habr.com/ru/post/969793/


All Articles