Skip to content

Commit

Permalink
Merge pull request #44 from EvgeniyPatlan/master
Browse files Browse the repository at this point in the history
Lowcase reponame
  • Loading branch information
rnovikovP authored Feb 16, 2017
2 parents e7769d0 + c319c83 commit c890996
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MAINTAINER Tim Vaillancourt <[email protected]>
EXPOSE 9104

ENV GOPATH /go
ENV APPPATH $GOPATH/src/github.com/Percona/mongodb_exporter
ENV APPPATH $GOPATH/src/github.com/percona/mongodb_exporter
COPY . $APPPATH
RUN apk add --update -t build-deps go git mercurial libc-dev gcc libgcc \
&& cd $APPPATH && go get -d && go build -o /bin/mongodb_exporter \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The exporter is in beta/experimental state and field names are **very likely to

### Building

go build -o mongodb_exporter github.com/Percona/mongodb_exporter
go build -o mongodb_exporter github.com/percona/mongodb_exporter

### Usage

Expand Down
6 changes: 3 additions & 3 deletions collector/mongodb_collector.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package collector

import (
"github.com/Percona/mongodb_exporter/shared"
"github.com/Percona/mongodb_exporter/collector/mongod"
"github.com/Percona/mongodb_exporter/collector/mongos"
"github.com/percona/mongodb_exporter/shared"
"github.com/percona/mongodb_exporter/collector/mongod"
"github.com/percona/mongodb_exporter/collector/mongos"
"github.com/golang/glog"
"github.com/prometheus/client_golang/prometheus"
"gopkg.in/mgo.v2"
Expand Down
2 changes: 1 addition & 1 deletion collector/mongodb_collector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package collector
import (
"testing"

"github.com/Percona/mongodb_exporter/shared"
"github.com/percona/mongodb_exporter/shared"
"github.com/prometheus/client_golang/prometheus"
)

Expand Down
2 changes: 1 addition & 1 deletion mongodb_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func main() {

shared.ParseEnabledGroups(*enabledGroupsFlag)

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")
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")

startWebServer()
}
2 changes: 1 addition & 1 deletion vendor/vendor.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@
"revisionTime": "2015-12-01T16:27:45Z"
}
],
"rootPath": "github.com/Percona/mongodb_exporter"
"rootPath": "github.com/percona/mongodb_exporter"
}

0 comments on commit c890996

Please sign in to comment.