Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: replace keyval-dev to odigos-io #9

Merged
merged 1 commit into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
with:
token: ${{ secrets.RELEASE_BOT_TOKEN }}
release-type: go
package-name: github.com/keyval-dev/opentelemetry-zap-bridge
package-name: github.com/odigos-io/opentelemetry-zap-bridge
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Changelog

## [0.0.3](https://github.com/keyval-dev/opentelemetry-zap-bridge/compare/v0.0.2...v0.0.3) (2023-10-15)
## [0.0.3](https://github.com/odigos-io/opentelemetry-zap-bridge/compare/v0.0.2...v0.0.3) (2023-10-15)


### Bug Fixes

* handle OTEL_SDK_DISABLE value correctly ([#7](https://github.com/keyval-dev/opentelemetry-zap-bridge/issues/7)) ([97b92c3](https://github.com/keyval-dev/opentelemetry-zap-bridge/commit/97b92c39651bfef92f73c769479331659e02fe7e))
* handle OTEL_SDK_DISABLE value correctly ([#7](https://github.com/odigos-io/opentelemetry-zap-bridge/issues/7)) ([97b92c3](https://github.com/odigos-io/opentelemetry-zap-bridge/commit/97b92c39651bfef92f73c769479331659e02fe7e))

## [0.0.2](https://github.com/keyval-dev/opentelemetry-zap-bridge/compare/v0.0.1...v0.0.2) (2023-10-11)
## [0.0.2](https://github.com/odigos-io/opentelemetry-zap-bridge/compare/v0.0.1...v0.0.2) (2023-10-11)


### Bug Fixes

* instrumentation library name as go mod name ([#5](https://github.com/keyval-dev/opentelemetry-zap-bridge/issues/5)) ([f795916](https://github.com/keyval-dev/opentelemetry-zap-bridge/commit/f79591697151d6b638bb30f2d1c3dc44a1633c50))
* instrumentation library name as go mod name ([#5](https://github.com/odigos-io/opentelemetry-zap-bridge/issues/5)) ([f795916](https://github.com/odigos-io/opentelemetry-zap-bridge/commit/f79591697151d6b638bb30f2d1c3dc44a1633c50))
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This project might give you value if you:
## Installation

```bash
go get github.com/keyval-dev/opentelemetry-zap-bridge
go get github.com/odigos-io/opentelemetry-zap-bridge
```

## Usage
Expand All @@ -32,7 +32,7 @@ If you have a `zap.Logger` instance, which you obtained with `zap.NewProduction(
```go
import (
"go.uber.org/zap"
bridge "github.com/keyval-dev/opentelemetry-zap-bridge"
bridge "github.com/odigos-io/opentelemetry-zap-bridge"
)
logger, _ := zap.NewProduction()
logger = bridge.AttachToZapLogger(logger)
Expand All @@ -51,7 +51,7 @@ You can convert this code to attach an otel sdk to it like this:
import (
"sigs.k8s.io/controller-runtime/pkg/log/zap"
"github.com/go-logr/zapr"
bridge "github.com/keyval-dev/opentelemetry-zap-bridge"
bridge "github.com/odigos-io/opentelemetry-zap-bridge"
)

func main() {
Expand All @@ -70,7 +70,7 @@ You can use the `NewOtelZapCore` function to create a new `zapcore.Core` instan
```go
import (
"go.uber.org/zap"
bridge "github.com/keyval-dev/opentelemetry-zap-bridge"
bridge "github.com/odigos-io/opentelemetry-zap-bridge"
)

func main() {
Expand All @@ -91,7 +91,7 @@ If you are advanced user and you can create your own `zapcore.Core` instance, yo
```go
import (
"go.uber.org/zap/zapcore"
bridge "github.com/keyval-dev/opentelemetry-zap-bridge"
bridge "github.com/odigos-io/opentelemetry-zap-bridge"
)

func main() {
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/keyval-dev/opentelemetry-zap-bridge
module github.com/odigos-io/opentelemetry-zap-bridge

go 1.21.0

Expand Down
2 changes: 1 addition & 1 deletion otellogger.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

const (
otelSdkDisabled = "OTEL_SDK_DISABLED"
instrumentationLibraryName = "github.com/keyval-dev/opentelemetry-zap-bridge"
instrumentationLibraryName = "github.com/odigos-io/opentelemetry-zap-bridge"
)

type OtelZapCore struct {
Expand Down
Loading