Skip to content
This repository was archived by the owner on Apr 17, 2019. It is now read-only.

Commit dbc255a

Browse files
committed
fix repo path
1 parent a9effb8 commit dbc255a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PostgreSQL Metrics Exporter
2-
[![Go Report Card](https://goreportcard.com/badge/github.com/ikitiki/postgresql_exporter)](https://goreportcard.com/report/github.com/ikitiki/postgresql_exporter)
2+
[![Go Report Card](https://goreportcard.com/badge/github.com/mkabilov/postgresql_exporter)](https://goreportcard.com/report/github.com/mkabilov/postgresql_exporter)
33

44

55
Prometheus exporter for PostgreSQL metrics.<br>
@@ -16,7 +16,7 @@ Prometheus exporter for PostgreSQL metrics.<br>
1616

1717
Get:
1818
```
19-
go get -u github.com/ikitiki/postgresql_exporter
19+
go get -u github.com/mkabilov/postgresql_exporter
2020
```
2121

2222
Run:

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/prometheus/client_golang/prometheus"
1414
"github.com/prometheus/client_golang/prometheus/promhttp"
1515

16-
"github.com/ikitiki/postgresql_exporter/pkg/config"
17-
"github.com/ikitiki/postgresql_exporter/pkg/pgcollector"
16+
"github.com/mkabilov/postgresql_exporter/pkg/config"
17+
"github.com/mkabilov/postgresql_exporter/pkg/pgcollector"
1818
)
1919

2020
const (

pkg/db/db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/jackc/pgx"
1313
"github.com/jackc/pgx/pgtype"
1414

15-
"github.com/ikitiki/postgresql_exporter/pkg/config"
15+
"github.com/mkabilov/postgresql_exporter/pkg/config"
1616
)
1717

1818
//DbInterface describes Db methods

pkg/pgcollector/pgcollector.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/prometheus/client_golang/prometheus"
1111

12-
"github.com/ikitiki/postgresql_exporter/pkg/config"
13-
"github.com/ikitiki/postgresql_exporter/pkg/db"
12+
"github.com/mkabilov/postgresql_exporter/pkg/config"
13+
"github.com/mkabilov/postgresql_exporter/pkg/db"
1414
)
1515

1616
const (

0 commit comments

Comments
 (0)