[PR #167] [MERGED] feat: add subscription metrics #162

Closed
opened 2026-03-03 16:29:29 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/natrontech/pbs-exporter/pull/167
Author: @nicololuescher
Created: 11/28/2025
Status: Merged
Merged: 12/3/2025
Merged by: @nicololuescher

Base: mainHead: feat/pbs-subscription-metric


📝 Commits (9)

  • 4858c2e initial implementation of subscription metrics
  • 5e6ed9b updated go minor version
  • 1bdaf9a 🌱 bump github/codeql-action from 3.29.2 to 4.31.0
  • c2de6e5 🌱 bump anchore/sbom-action from 0.20.2 to 0.20.9
  • bee8fed 🌱 bump sigstore/cosign-installer from 3.9.1 to 4.0.0
  • 13bedaf 🌱 bump docker/login-action from 3.3.0 to 3.6.0
  • 818795b 🌱 bump goreleaser/goreleaser-action from 6.3.0 to 6.4.0
  • f022e63 chore: update to go 1.25
  • c6ed005 ci: update all workflows

📊 Changes

13 files changed (+169 additions, -48 deletions)

View changed files

📝 .github/workflows/codeql.yml (+4 -4)
📝 .github/workflows/dependency-review.yml (+2 -2)
📝 .github/workflows/golangci-lint.yml (+2 -2)
📝 .github/workflows/gosec.yml (+3 -3)
📝 .github/workflows/osv-scan.yml (+1 -1)
📝 .github/workflows/release-verification.yml (+1 -1)
📝 .github/workflows/release.yml (+11 -11)
📝 .github/workflows/scorecard.yml (+3 -3)
📝 .pre-commit-config.yaml (+2 -2)
📝 Makefile (+1 -1)
📝 go.mod (+8 -6)
📝 go.sum (+24 -12)
📝 main.go (+107 -0)

📄 Description

What this PR does:

Which issue this PR fixes (optional, in fixes #<issue number>(, fixes #<issue_number>, ...) format, will close that issue when PR gets merged): fixes #

Notes for Reviewer:

Checklist:

  • I have read and understood the CONTRIBUTING and CODE_OF_CONDUCT documents
  • All commits are signed (see Signing Commits)
  • Pull Request title in the format of Conventional Commits e.g. feat|fix|chore|docs|...: Changed Something
  • Updated documentation in the README.md file (e.g. new parameters, environment variables, return values, ...)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/natrontech/pbs-exporter/pull/167 **Author:** [@nicololuescher](https://github.com/nicololuescher) **Created:** 11/28/2025 **Status:** ✅ Merged **Merged:** 12/3/2025 **Merged by:** [@nicololuescher](https://github.com/nicololuescher) **Base:** `main` ← **Head:** `feat/pbs-subscription-metric` --- ### 📝 Commits (9) - [`4858c2e`](https://github.com/natrontech/pbs-exporter/commit/4858c2ed438f263bf0d2b1de8543a954f75fb12f) initial implementation of subscription metrics - [`5e6ed9b`](https://github.com/natrontech/pbs-exporter/commit/5e6ed9b155b03906e1aaae52093d1fb666d562ee) updated go minor version - [`1bdaf9a`](https://github.com/natrontech/pbs-exporter/commit/1bdaf9a07eda2c2772e20a1d4ab9aaa5e029554c) :seedling: bump github/codeql-action from 3.29.2 to 4.31.0 - [`c2de6e5`](https://github.com/natrontech/pbs-exporter/commit/c2de6e5a9277db8f9c2c17983bc1a98eac7ba265) :seedling: bump anchore/sbom-action from 0.20.2 to 0.20.9 - [`bee8fed`](https://github.com/natrontech/pbs-exporter/commit/bee8fedcb608813ce42851b65a547f766a058f2e) :seedling: bump sigstore/cosign-installer from 3.9.1 to 4.0.0 - [`13bedaf`](https://github.com/natrontech/pbs-exporter/commit/13bedaf2c3e3262005f5820f79e0e6ffbaa2a1f5) :seedling: bump docker/login-action from 3.3.0 to 3.6.0 - [`818795b`](https://github.com/natrontech/pbs-exporter/commit/818795b64da00461582731681ae1f793418e48e2) :seedling: bump goreleaser/goreleaser-action from 6.3.0 to 6.4.0 - [`f022e63`](https://github.com/natrontech/pbs-exporter/commit/f022e63eeaa298628d89d53feb358dbc6352f5a6) chore: update to go 1.25 - [`c6ed005`](https://github.com/natrontech/pbs-exporter/commit/c6ed005d88354fc897f9a20a82b7ef22cafd4015) ci: update all workflows ### 📊 Changes **13 files changed** (+169 additions, -48 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/codeql.yml` (+4 -4) 📝 `.github/workflows/dependency-review.yml` (+2 -2) 📝 `.github/workflows/golangci-lint.yml` (+2 -2) 📝 `.github/workflows/gosec.yml` (+3 -3) 📝 `.github/workflows/osv-scan.yml` (+1 -1) 📝 `.github/workflows/release-verification.yml` (+1 -1) 📝 `.github/workflows/release.yml` (+11 -11) 📝 `.github/workflows/scorecard.yml` (+3 -3) 📝 `.pre-commit-config.yaml` (+2 -2) 📝 `Makefile` (+1 -1) 📝 `go.mod` (+8 -6) 📝 `go.sum` (+24 -12) 📝 `main.go` (+107 -0) </details> ### 📄 Description <!-- Thank you for contributing to natrontech/pbs-exporter. --> **What this PR does**: **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Notes for Reviewer**: **Checklist**: - [x] I have read and understood the [CONTRIBUTING](https://github.com/natrontech/pbs-exporter/blob/main/CONTRIBUTING.md) and [CODE_OF_CONDUCT](https://github.com/natrontech/pbs-exporter/blob/main/CODE_OF_CONDUCT.md) documents - [x] All commits are signed (see [Signing Commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification)) - [x] Pull Request title in the format of [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) e.g. `feat|fix|chore|docs|...: Changed Something` - [ ] Updated documentation in the `README.md` file (e.g. new parameters, environment variables, return values, ...) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 16:29:29 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/pbs-exporter#162
No description provided.