Skip to content

Commit 812e164

Browse files
PMM-8874 Exporters 2.23
PMM-8618 ship default PG queries in PMM (percona#46) (Vadim Yalovets) PMM-8207 Cleanup. (percona#45) (JiriCtvrtka) PMM-7087 Rename custom query example file (percona#43) (Andrii Skomorokhov) PMM-7902 Remove Go 1.15 (percona#44) (Nurlan Moldomurov)
1 parent ec5e83f commit 812e164

File tree

3 files changed

+16
-318
lines changed

3 files changed

+16
-318
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
/bin
1414
/release
1515
/*.prom
16+
/!.promu.yml
1617
/.metrics.*.*.prom
1718
/.metrics.*.*.prom.unique
1819
/.assets-branch

go.mod

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,32 @@
1-
module github.com/prometheus-community/postgres_exporter
1+
module github.com/percona/postgres_exporter
22

3-
go 1.14
3+
go 1.17
44

55
require (
66
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
77
github.com/blang/semver v3.5.1+incompatible
88
github.com/golang/protobuf v1.5.2 // indirect
9-
github.com/google/go-querystring v1.1.0 // indirect
109
github.com/lib/pq v1.9.0
1110
github.com/percona/exporter_shared v0.7.3
12-
github.com/percona/postgres_exporter v0.4.6 // indirect
1311
github.com/prometheus/client_golang v1.10.0
1412
github.com/prometheus/client_model v0.2.0
1513
github.com/prometheus/common v0.23.0
16-
github.com/prometheus/promu v0.12.0 // indirect
17-
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect
18-
golang.org/x/oauth2 v0.0.0-20210427180440-81ed05c6b58c // indirect
1914
golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 // indirect
2015
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
21-
google.golang.org/appengine v1.6.7 // indirect
2216
gopkg.in/alecthomas/kingpin.v2 v2.2.6
2317
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
2418
gopkg.in/yaml.v2 v2.4.0
2519
)
20+
21+
require (
22+
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
23+
github.com/beorn7/perks v1.0.1 // indirect
24+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
25+
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
26+
github.com/kr/pretty v0.2.1 // indirect
27+
github.com/kr/text v0.1.0 // indirect
28+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
29+
github.com/prometheus/procfs v0.6.0 // indirect
30+
github.com/sirupsen/logrus v1.6.0 // indirect
31+
google.golang.org/protobuf v1.26.0 // indirect
32+
)

0 commit comments

Comments
 (0)