Categorygithub.com/samber/slog-loki/v2
package
2.2.0
Repository: https://github.com/samber/slog-loki.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

slog: Loki handler

tag Go Version GoDoc Build Status Go report Coverage Contributors License

A Loki Handler for slog Go library.

See also:

🚀 Install

go get github.com/samber/slog-loki/v2

Compatibility: go >= 1.21

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

💡 Usage

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

Handler options

type Option struct {
	// log level (default: debug)
	Level slog.Leveler
	
	// loki endpoint
	Endpoint string
	// log batching
	BatchWait          time.Duration
	BatchEntriesNumber int
}

Attributes will be injected in log payload.

Attributes added to records are not accepted.

Other global parameters:

slogloki.LogLevels = map[slog.Level]promtail.LogLevel{...}

Example

import (
	slogloki "github.com/samber/slog-loki/v2"
	"log/slog"
)

func main() {
	endpoint := "http://localhost:3100"

	logger := slog.New(slogloki.Option{Level: slog.LevelDebug, Endpoint: endpoint}.NewLokiHandler())
	logger = logger.
		With("environment", "dev").
		With("release", "v1.0.0")

	// log error
	logger.Error("caramba!")

	// log user signup
	logger.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.