Categorygithub.com/ydb-platform/ydb-go-sdk-zerolog
modulepackage
0.14.0
Repository: https://github.com/ydb-platform/ydb-go-sdk-zerolog.git
Documentation: pkg.go.dev

# README

zerolog

zerolog package helps to create ydb-go-sdk traces with logging driver events with zerolog

Usage

import (
	"context"
	"os"

	"github.com/rs/zerolog"
	"github.com/ydb-platform/ydb-go-sdk/v3"
	"github.com/ydb-platform/ydb-go-sdk/v3/trace"

	ydbZerolog "github.com/ydb-platform/ydb-go-sdk-zerolog"
)

func main() {
	// init your zerolog.Logger
	log := zerolog.New(os.Stdout).With().Timestamp().Logger()

	db, err := ydb.Open(
		context.Background(),
		os.Getenv("YDB_CONNECTION_STRING"),
		ydbZerolog.WithTraces(
			&log,
			trace.DetailsAll,
		),
	)
	if err != nil {
		panic(err)
	}
	defer func() {
		_ = db.Close(context.Background())
	}()

	// work with db
}

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author