Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
rename repo
Browse files Browse the repository at this point in the history
  • Loading branch information
greenpau committed Apr 14, 2020
1 parent 38ebe31 commit bda46c1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ BUILD_DATE:=$(shell date +"%Y-%m-%d")
ALIAS=gobgp_exporter
BINARY:=gobgp-exporter
VERBOSE:=-v
PROJECT=github.com/ovnworks/$(ALIAS)
PROJECT=github.com/forward53/$(ALIAS)
PKG_DIR=pkg/$(ALIAS)
PKG_PORT="9474"

Expand Down Expand Up @@ -76,7 +76,7 @@ dist: all
dep:
@echo "Making dependencies check ..."
@#echo "Clean GOPATH/pkg/dep/sources/ if necessary"
@#rm -rf $GOPATH/pkg/dep/sources/https---github.com-ovnworks*
@#rm -rf $GOPATH/pkg/dep/sources/https---github.com-forward53*
@dep version || go get -u github.com/golang/dep/cmd/dep
@dep ensure

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ To run it:

```bash
cd $GOPATH/src
mkdir -p github.com/ovnworks
cd github.com/ovnworks
git clone https://github.com/ovnworks/gobgp_exporter.git
mkdir -p github.com/forward53
cd github.com/forward53
git clone https://github.com/forward53/gobgp_exporter.git
cd gobgp_exporter
make
make qtest
Expand Down Expand Up @@ -284,7 +284,7 @@ Usage: gobgp-exporter [arguments]
-web.telemetry-path string
Path under which to expose metrics. (default "/metrics")

Documentation: https://github.com/ovnworks/gobgp_exporter/
Documentation: https://github.com/forward53/gobgp_exporter/
```

* __`gobgp.address`:__ Address (host and port) of the GoBGP instance we should
Expand Down
4 changes: 2 additions & 2 deletions cmd/gobgp_exporter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"flag"
"fmt"
exporter "github.com/ovnworks/gobgp_exporter/pkg/gobgp_exporter"
exporter "github.com/forward53/gobgp_exporter/pkg/gobgp_exporter"
"github.com/prometheus/common/log"
"net/http"
"os"
Expand Down Expand Up @@ -34,7 +34,7 @@ func main() {
fmt.Fprintf(os.Stderr, "\n%s - Prometheus Exporter for GoBGP\n\n", exporter.GetExporterName())
fmt.Fprintf(os.Stderr, "Usage: %s [arguments]\n\n", exporter.GetExporterName())
flag.PrintDefaults()
fmt.Fprintf(os.Stderr, "\nDocumentation: https://github.com/ovnworks/gobgp_exporter/\n\n")
fmt.Fprintf(os.Stderr, "\nDocumentation: https://github.com/forward53/gobgp_exporter/\n\n")
}
flag.Usage = usageHelp
flag.Parse()
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ovnworks/gobgp_exporter
module github.com/forward53/gobgp_exporter

go 1.13

Expand Down

0 comments on commit bda46c1

Please sign in to comment.