Skip to content

Commit c890996

Browse files
authored
Merge pull request #44 from EvgeniyPatlan/master
Lowcase reponame
2 parents e7769d0 + c319c83 commit c890996

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MAINTAINER Tim Vaillancourt <[email protected]>
33
EXPOSE 9104
44

55
ENV GOPATH /go
6-
ENV APPPATH $GOPATH/src/github.com/Percona/mongodb_exporter
6+
ENV APPPATH $GOPATH/src/github.com/percona/mongodb_exporter
77
COPY . $APPPATH
88
RUN apk add --update -t build-deps go git mercurial libc-dev gcc libgcc \
99
&& cd $APPPATH && go get -d && go build -o /bin/mongodb_exporter \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The exporter is in beta/experimental state and field names are **very likely to
1717

1818
### Building
1919

20-
go build -o mongodb_exporter github.com/Percona/mongodb_exporter
20+
go build -o mongodb_exporter github.com/percona/mongodb_exporter
2121

2222
### Usage
2323

collector/mongodb_collector.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package collector
22

33
import (
4-
"github.com/Percona/mongodb_exporter/shared"
5-
"github.com/Percona/mongodb_exporter/collector/mongod"
6-
"github.com/Percona/mongodb_exporter/collector/mongos"
4+
"github.com/percona/mongodb_exporter/shared"
5+
"github.com/percona/mongodb_exporter/collector/mongod"
6+
"github.com/percona/mongodb_exporter/collector/mongos"
77
"github.com/golang/glog"
88
"github.com/prometheus/client_golang/prometheus"
99
"gopkg.in/mgo.v2"

collector/mongodb_collector_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package collector
33
import (
44
"testing"
55

6-
"github.com/Percona/mongodb_exporter/shared"
6+
"github.com/percona/mongodb_exporter/shared"
77
"github.com/prometheus/client_golang/prometheus"
88
)
99

mongodb_exporter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ func main() {
183183

184184
shared.ParseEnabledGroups(*enabledGroupsFlag)
185185

186-
fmt.Println("### Warning: the exporter is in beta/experimental state and field names are very\n### likely to change in the future and features may change or get removed!\n### See: https://github.com/Percona/mongodb_exporter for updates")
186+
fmt.Println("### Warning: the exporter is in beta/experimental state and field names are very\n### likely to change in the future and features may change or get removed!\n### See: https://github.com/percona/mongodb_exporter for updates")
187187

188188
startWebServer()
189189
}

vendor/vendor.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@
9393
"revisionTime": "2015-12-01T16:27:45Z"
9494
}
9595
],
96-
"rootPath": "github.com/Percona/mongodb_exporter"
96+
"rootPath": "github.com/percona/mongodb_exporter"
9797
}

0 commit comments

Comments
 (0)