Skip to content

Commit 919c757

Browse files
committed
Update module path on fork
1 parent 1f67986 commit 919c757

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
GITCOMMIT := $(shell git rev-parse --short HEAD 2>/dev/null)
22
GIT_TAG := $(shell git describe --tags 2>/dev/null)
33

4-
LDFLAGS := -s -w -X github.com/mlorenzo-stratio/openldap_exporter.commit=${GITCOMMIT}
5-
LDFLAGS := ${LDFLAGS} -X github.com/mlorenzo-stratio/openldap_exporter.tag=${GIT_TAG}
4+
LDFLAGS := -s -w -X github.com/braincube-io/openldap_exporter.commit=${GITCOMMIT}
5+
LDFLAGS := ${LDFLAGS} -X github.com/braincube-io/openldap_exporter.tag=${GIT_TAG}
66
OUTFILE ?= openldap_exporter
77

88
.PHONY: precommit
@@ -25,7 +25,7 @@ ifeq (, $(shell which goimports))
2525
go install golang.org/x/tools/cmd/goimports@latest
2626
endif
2727
@echo "Running goimports ..."
28-
@goimports -w -local github.com/mlorenzo-stratio/openldap_exporter $(shell find . -type f -name '*.go' | grep -v '/vendor/')
28+
@goimports -w -local github.com/braincube-io/openldap_exporter $(shell find . -type f -name '*.go' | grep -v '/vendor/')
2929

3030
.PHONY: lint
3131
lint:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You may need to also load the monitoring backend module if your _slapd_ installa
2424
moduleload back_monitor
2525
```
2626

27-
Once you've built the exporter (see below), or downloaded the [latest release](https://github.com/mlorenzo-stratio/openldap_exporter/releases), you can install it on the same server as your _slapd_ instance, and run it as a service. You can then configure Prometheus to pull metrics from the exporter's `/metrics` endpoint on port 9330, and check to see that it is working via curl:
27+
Once you've built the exporter (see below), or downloaded the [latest release](https://github.com/braincube-io/openldap_exporter/releases), you can install it on the same server as your _slapd_ instance, and run it as a service. You can then configure Prometheus to pull metrics from the exporter's `/metrics` endpoint on port 9330, and check to see that it is working via curl:
2828

2929
```
3030
$> curl -s http://localhost:9330/metrics

cmd/openldap_exporter/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"syscall"
88
"time"
99

10-
exporter "github.com/mlorenzo-stratio/openldap_exporter"
10+
exporter "github.com/braincube-io/openldap_exporter"
1111

1212
log "github.com/sirupsen/logrus"
1313
"github.com/urfave/cli/v2"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/mlorenzo-stratio/openldap_exporter
1+
module github.com/braincube-io/openldap_exporter
22

33
go 1.18
44

0 commit comments

Comments
 (0)