slogdatadog

package module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2023 License: MIT Imports: 11 Imported by: 0

README

slog: Datadog handler

tag Go Version GoDoc Build Status Go report Coverage Contributors License

A Datadog Handler for slog Go library.

See also:

🚀 Install

go get github.com/samber/slog-datadog

Compatibility: go >= 1.21

No breaking changes will be made to exported APIs before v2.0.0.

💡 Usage

GoDoc: https://pkg.go.dev/github.com/samber/slog-datadog

Handler options

type Option struct {
	// log level (default: debug)
	Level slog.Leveler

	// datadog endpoint
	Client  *datadog.APIClient
	Context context.Context

	// source parameters
	Service    string
	Hostname   string
	GlobalTags map[string]string

	// optional: customize Datadog message builder
	Converter Converter
}

Attributes will be injected in log payload.

Example
import (
	"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
	slogdatadog "github.com/samber/slog-datadog"
	"log/slog"
)

func newDatadogClient(endpoint string, apiKey string) (*datadog.APIClient, context.Context) {
	ctx := datadog.NewDefaultContext(context.Background())
	ctx = context.WithValue(
		ctx,
		datadog.ContextAPIKeys,
		map[string]datadog.APIKey{"apiKeyAuth": {Key: apiKey}},
	)
	ctx = context.WithValue(
		ctx,
		datadog.ContextServerVariables,
		map[string]string{"site": endpoint},
	)
	configuration := datadog.NewConfiguration()
	apiClient := datadog.NewAPIClient(configuration)

	return apiClient, ctx
}

func main() {
    host := "1.2.3.4"
	service := "api"
	endpoint := slogdatadog.DatadogHostEU
	apiKey := "xxx"
	apiClient, ctx := newDatadogClient(endpoint, apiKey)

	logger := slog.New(slogdatadog.Option{Level: slog.LevelDebug, Client: apiClient, Context: ctx, Hostname: host, Service: service}.NewDatadogHandler())
    logger = logger.
        With("environment", "dev").
        With("release", "v1.0.0")

    // log error
    logger.
        With("category", "sql").
        With("query.statement", "SELECT COUNT(*) FROM users;").
        With("query.duration", 1*time.Second).
        With("error", fmt.Errorf("could not count users")).
        Error("caramba!")

    // log user signup
    logger.
        With(
            slog.Group("user",
                slog.String("id", "user-123"),
                slog.Time("created_at", time.Now()),
            ),
        ).
        Info("user registration")
}

🤝 Contributing

Don't hesitate ;)

# Install some dev dependencies
make tools

# Run tests
make test
# or
make watch-test

👤 Contributors

Contributors

💫 Show your support

Give a ⭐️ if this project helped you!

GitHub Sponsors

📝 License

Copyright © 2023 Samuel Berthe.

This project is MIT licensed.

Documentation

Index

Constants

View Source
const (
	DatadogHostUS    = "datadoghq.com"
	DatadogHostUS3   = "us3.datadoghq.com"
	DatadogHostUS5   = "us5.datadoghq.com"
	DatadogHostEU    = "datadoghq.eu"
	DatadogHostUSGOV = "ddog-gov.com"
)

Variables

This section is empty.

Functions

func DefaultConverter

func DefaultConverter(loggerAttr []slog.Attr, record *slog.Record) map[string]any

Types

type Converter

type Converter func(loggerAttr []slog.Attr, record *slog.Record) map[string]any

type DatadogHandler

type DatadogHandler struct {
	// contains filtered or unexported fields
}

func (*DatadogHandler) Enabled

func (h *DatadogHandler) Enabled(_ context.Context, level slog.Level) bool

func (*DatadogHandler) Handle

func (h *DatadogHandler) Handle(ctx context.Context, record slog.Record) error

func (*DatadogHandler) WithAttrs

func (h *DatadogHandler) WithAttrs(attrs []slog.Attr) slog.Handler

func (*DatadogHandler) WithGroup

func (h *DatadogHandler) WithGroup(name string) slog.Handler

type Option

type Option struct {
	// log level (default: debug)
	Level slog.Leveler

	// datadog endpoint
	Client  *datadog.APIClient
	Context context.Context

	// source parameters
	Service    string
	Hostname   string
	GlobalTags map[string]string

	// optional: customize Datadog message builder
	Converter Converter
}

func (Option) NewDatadogHandler

func (o Option) NewDatadogHandler() slog.Handler

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL