Prometheus Exporter for Bamboo exposes Bamboo metrics: JVM and issue statistics to Prometheus.
Note |
---|
Be aware, this plugin publicly exposes some sensitive data by default. The metrics page exposes the username of who last logged in, who last edited issues in every project and some more usernames. You should enable token protection to make sure the public cannot view usernames. |
Once app is successfully installed:
- Use the following link to expose necessary metrics: /plugins/servlet/prometheus/metrics.
Set up the Prometheus settings:
Code Block title prometheus.yml scrape_configs: - job_name: 'bamboo' scheme: https #change to http if don't you have https metrics_path: '/<your_bamboo_context_path>/plugins/servlet/prometheus/metrics' static_configs: - targets: ['myhost:1990']
Optionally, to enable secure access, you can configure a secret token. To configure the secret token:
- Log into your Bamboo as Admin.
- In the cog wheel menu, select Bamboo administration.
- Locate and click Prometheus Exporter Settings. The Prometheus Exporter Settings page opens.
- Fill in the fields on this page. Use the following scrape URL: /plugins/servlet/prometheus/metrics?token=secrettoken.
The prometheus settings will now take the following look:
Code Block title prometheus.yml - job_name: 'bamboo' scheme: https #change to http if don't you have https metrics_path: '/<your_bamboo_context_path>/plugins/servlet/prometheus/metrics' params: token: ['1234567890'] # i'd reccomend use 128 symbol lenght long [A-Za-z0-9] static_configs: - targets: ['myhost:1990']
...