mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 03:57:34 +00:00
67 lines
2.3 KiB
Markdown
67 lines
2.3 KiB
Markdown
# Prometheus
|
|
|
|
Woodpecker is compatible with Prometheus and exposes a `/metrics` endpoint. Please note that access to the metrics endpoint is restricted and requires an authorization token with administrative privileges.
|
|
|
|
```yaml
|
|
global:
|
|
scrape_interval: 60s
|
|
|
|
scrape_configs:
|
|
- job_name: 'woodpecker'
|
|
bearer_token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
|
|
|
|
static_configs:
|
|
- targets: ['woodpecker.domain.com']
|
|
```
|
|
|
|
## Authorization
|
|
|
|
An administrator will need to generate a user api token and configure in the prometheus configuration file as a bearer token. Please see the following example:
|
|
|
|
```diff
|
|
global:
|
|
scrape_interval: 60s
|
|
|
|
scrape_configs:
|
|
- job_name: 'woodpecker'
|
|
+ bearer_token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
|
|
|
|
static_configs:
|
|
- targets: ['woodpecker.domain.com']
|
|
```
|
|
|
|
## Metric Reference
|
|
|
|
List of prometheus metrics specific to Woodpecker:
|
|
|
|
```
|
|
# HELP woodpecker_build_count Build count.
|
|
# TYPE woodpecker_build_count counter
|
|
woodpecker_build_count{branch="master",pipeline="total",repo="woodpecker-ci/woodpecker",status="success"} 3
|
|
woodpecker_build_count{branch="mkdocs",pipeline="total",repo="woodpecker-ci/woodpecker",status="success"} 3
|
|
# HELP woodpecker_build_time Build time.
|
|
# TYPE woodpecker_build_time gauge
|
|
woodpecker_build_time{branch="master",pipeline="total",repo="woodpecker-ci/woodpecker",status="success"} 116
|
|
woodpecker_build_time{branch="mkdocs",pipeline="total",repo="woodpecker-ci/woodpecker",status="success"} 155
|
|
# HELP woodpecker_build_total_count Total number of builds.
|
|
# TYPE woodpecker_build_total_count gauge
|
|
woodpecker_build_total_count 1025
|
|
# HELP woodpecker_pending_jobs Total number of pending build processes.
|
|
# TYPE woodpecker_pending_jobs gauge
|
|
woodpecker_pending_jobs 0
|
|
# HELP woodpecker_repo_count Total number of repos.
|
|
# TYPE woodpecker_repo_count gauge
|
|
woodpecker_repo_count 9
|
|
# HELP woodpecker_running_jobs Total number of running build processes.
|
|
# TYPE woodpecker_running_jobs gauge
|
|
woodpecker_running_jobs 0
|
|
# HELP woodpecker_user_count Total number of users.
|
|
# TYPE woodpecker_user_count gauge
|
|
woodpecker_user_count 1
|
|
# HELP woodpecker_waiting_jobs Total number of builds waiting on deps.
|
|
# TYPE woodpecker_waiting_jobs gauge
|
|
woodpecker_waiting_jobs 0
|
|
# HELP woodpecker_worker_count Total number of workers.
|
|
# TYPE woodpecker_worker_count gauge
|
|
woodpecker_worker_count 4
|
|
```
|