Skip to content

v4.0.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 07 Nov 14:49
· 28 commits to master since this release
v4.0.1

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.

    #413

  • 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 to BIGINT for the database schema to avoid errors related to
    store events.

    #414

  • 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.

    #417

  • 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.

    #418

  • 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.

    #418