Release 0.12.0-rc.0

BREAKING CHANGES:

This release changes support for multiple postgres servers to use the
multi-target exporter pattern. This makes it much easier to monitor multiple
PostgreSQL servers from a single exporter by passing the target via URL
params. See the Multi-Target Support section of the README.

* [CHANGE] Add multi-target support #618
* [BUGFIX] Add dsn type for handling datasources #678

Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
SuperQ
2022-08-26 16:49:54 +02:00
parent f72680be33
commit d86dd06ffe
9 changed files with 39 additions and 23 deletions

View File

@@ -19,7 +19,7 @@ import (
"fmt"
"time"
"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/go-kit/log/level"
"github.com/lib/pq"
"github.com/prometheus/client_golang/prometheus"

View File

@@ -24,7 +24,7 @@ import (
"strings"
"time"
"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/go-kit/log/level"
"github.com/prometheus/client_golang/prometheus"
)

View File

@@ -24,7 +24,7 @@ import (
"testing"
"time"
"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/prometheus/client_golang/prometheus"
. "gopkg.in/check.v1"
)

View File

@@ -17,7 +17,7 @@ import (
"errors"
"fmt"
"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/go-kit/log/level"
"gopkg.in/yaml.v2"
)

View File

@@ -19,7 +19,7 @@ import (
"sync"
"time"
"github.com/blang/semver"
"github.com/blang/semver/v4"
"github.com/go-kit/log/level"
"github.com/prometheus/client_golang/prometheus"
)