Changelog for 4.0.1
The following sections list the changes for 4.0.1.
Summary
- Fix #413: Show errors for database ping
- Fix #414: Fix PostgreSQL identifiers to be bigint
- Fix #417: Runner ID was being set to run ID for workflow_job
- Fix #418: Include identifier in labels for workflow jobs
- Fix #418: Update conclusion and completed_at columns
Details
-
Bugfix #413: Show errors for database ping
To get more details why a ping to the database fails while starting the exporter
we have added an error output to the logging. -
Bugfix #414: Fix PostgreSQL identifiers to be bigint
Since Github submit 64bit integers for the identifier of workflow jobs we had to
fix the type toBIGINT
for the database schema to avoid errors related to
store events. -
Bugfix #417: Runner ID was being set to run ID for workflow_job
While implementing the workflow job collector we simply attached the wrong
identifier to the runner id which was base on the run ID. Future webhooks will
store the right ID now. -
Bugfix #418: Include identifier in labels for workflow jobs
To avoid errors related to already scraped metrics we have added the identifier
to the default labels for the workflow job collector. -
Bugfix #418: Update conclusion and completed_at columns
For the new workflow job collector we had been missing the
conclusion
and
completed_at
values, they will be stored by future webhook events.