slogtelegram

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: 7 Imported by: 1

README

slog: Telegram handler

tag Go Version GoDoc Build Status Go report Coverage Contributors License

A Telegram Handler for slog Go library.

See also:

🚀 Install

go get github.com/samber/slog-telegram

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-telegram

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

	// Telegram bot token
	Token string
	// Username of the channel in the form of `@username`
	Username string

	// optional: customize Telegram message builder
	Converter Converter
}

Attributes will be injected in message.

Example
import (
	slogtelegram "github.com/samber/slog-telegram"
	"log/slog"
)

func main() {
	token := "xxxx"
	username := "@xxxx"

	logger := slog.New(slogtelegram.Option{Level: slog.LevelDebug, Token: token, Username: username}.NewTelegramHandler())
	logger = logger.With("release", "v1.0.0")

	logger.
		With(
			slog.Group("user",
				slog.String("id", "user-123"),
				slog.Time("created_at", time.Now().AddDate(0, 0, -1)),
			),
		).
		With("environment", "dev").
		With("error", fmt.Errorf("an error")).
		Error("A message")
}

🤝 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

This section is empty.

Variables

This section is empty.

Functions

func DefaultConverter

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

Types

type Converter

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

type Option

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

	// Telegram bot token
	Token string
	// Username of the channel in the form of `@username`
	Username string

	// optional: customize Telegram message builder
	Converter Converter
}

func (Option) NewTelegramHandler

func (o Option) NewTelegramHandler() slog.Handler

type TelegramHandler

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

func (*TelegramHandler) Enabled

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

func (*TelegramHandler) Handle

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

func (*TelegramHandler) WithAttrs

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

func (*TelegramHandler) WithGroup

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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