Release v0.15.0 ()

* [ENHANCEMENT] Add 1kB and 2kB units 
* [BUGFIX] Add error log when probe collector creation fails 
* [BUGFIX] Fix test build failures on 32-bit arch 
* [BUGFIX] Adjust collector to use separate connection per scrape 

Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
Ben Kochie 2023-10-27 10:25:39 -04:00 committed by GitHub
parent e2892a7976
commit 68c176b883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 8 deletions

View File

@ -8,7 +8,7 @@ executors:
# This must match .promu.yml. # This must match .promu.yml.
golang: golang:
docker: docker:
- image: cimg/go:1.20 - image: cimg/go:1.21
jobs: jobs:
test: test:
@ -57,12 +57,12 @@ workflows:
matrix: matrix:
parameters: parameters:
postgres_image: postgres_image:
- circleci/postgres:10
- circleci/postgres:11 - circleci/postgres:11
- circleci/postgres:12 - circleci/postgres:12
- circleci/postgres:13 - circleci/postgres:13
- cimg/postgres:14.1 - cimg/postgres:14.9
- cimg/postgres:15.1 - cimg/postgres:15.4
- cimg/postgres:16.0
- prometheus/build: - prometheus/build:
name: build name: build
parallelism: 3 parallelism: 3

View File

@ -1,13 +1,12 @@
go: go:
# This must match .circle/config.yml. # This must match .circle/config.yml.
version: 1.20 version: 1.21
repository: repository:
path: github.com/prometheus-community/postgres_exporter path: github.com/prometheus-community/postgres_exporter
build: build:
binaries: binaries:
- name: postgres_exporter - name: postgres_exporter
path: ./cmd/postgres_exporter path: ./cmd/postgres_exporter
flags: -a -tags 'netgo static_build'
ldflags: | ldflags: |
-X github.com/prometheus/common/version.Version={{.Version}} -X github.com/prometheus/common/version.Version={{.Version}}
-X github.com/prometheus/common/version.Revision={{.Revision}} -X github.com/prometheus/common/version.Revision={{.Revision}}

View File

@ -1,3 +1,10 @@
## 0.15.0 / 2023-10-27
* [ENHANCEMENT] Add 1kB and 2kB units #915
* [BUGFIX] Add error log when probe collector creation fails #918
* [BUGFIX] Fix test build failures on 32-bit arch #919
* [BUGFIX] Adjust collector to use separate connection per scrape #936
## 0.14.0 / 2023-09-11 ## 0.14.0 / 2023-09-11
* [CHANGE] Add `state` label to pg_process_idle_seconds #862 * [CHANGE] Add `state` label to pg_process_idle_seconds #862

View File

@ -7,7 +7,7 @@
Prometheus exporter for PostgreSQL server metrics. Prometheus exporter for PostgreSQL server metrics.
CI Tested PostgreSQL versions: `10`, `11`, `12`, `13`, `14`, `15` CI Tested PostgreSQL versions: `11`, `12`, `13`, `14`, `15`, `16`
## Quick Start ## Quick Start
This package is available for Docker: This package is available for Docker:

View File

@ -1 +1 @@
0.14.0 0.15.0