Skip to content

Commit 65bf101

Browse files
committed
chore: rename module to github.com/overmindtech/otelpgx
Update module path, instrumentation scope names, benchmark import, and README references from exaring/otelpgx to overmindtech/otelpgx. Made-with: Cursor
1 parent 545238e commit 65bf101

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Go Reference](https://pkg.go.dev/badge/github.com/exaring/otelpgx.svg)](https://pkg.go.dev/github.com/exaring/otelpgx)
1+
[![Go Reference](https://pkg.go.dev/badge/github.com/overmindtech/otelpgx.svg)](https://pkg.go.dev/github.com/overmindtech/otelpgx)
22

33
# otelpgx
44

@@ -21,7 +21,7 @@ go get github.com/jackc/pgx/v5
2121
Install the library:
2222

2323
```go
24-
go get github.com/exaring/otelpgx
24+
go get github.com/overmindtech/otelpgx
2525
```
2626

2727
Create the tracer as part of your connection:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/exaring/otelpgx
1+
module github.com/overmindtech/otelpgx
22

33
go 1.22.0
44

tracer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
)
2222

2323
const (
24-
tracerName = "github.com/exaring/otelpgx"
25-
meterName = "github.com/exaring/otelpgx"
24+
tracerName = "github.com/overmindtech/otelpgx"
25+
meterName = "github.com/overmindtech/otelpgx"
2626
)
2727

2828
const (

tracer_benchmark_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99
"testing"
1010

11-
"github.com/exaring/otelpgx"
11+
"github.com/overmindtech/otelpgx"
1212
"github.com/jackc/pgx/v5/pgxpool"
1313
sdktrace "go.opentelemetry.io/otel/sdk/trace"
1414
"go.opentelemetry.io/otel/sdk/trace/tracetest"

0 commit comments

Comments
 (0)