A Datadog Handler for slog Go library.
See also:
- slog-multi:
slog.Handlerchaining, fanout, routing, failover, load balancing... - slog-formatter:
slogattribute formatting - slog-sampling:
slogsampling policy - slog-gin: Gin middleware for
sloglogger - slog-echo: Echo middleware for
sloglogger - slog-fiber: Fiber middleware for
sloglogger - slog-datadog: A
sloghandler forDatadog - slog-rollbar: A
sloghandler forRollbar - slog-sentry: A
sloghandler forSentry - slog-syslog: A
sloghandler forSyslog - slog-logstash: A
sloghandler forLogstash - slog-fluentd: A
sloghandler forFluentd - slog-graylog: A
sloghandler forGraylog - slog-loki: A
sloghandler forLoki - slog-slack: A
sloghandler forSlack - slog-telegram: A
sloghandler forTelegram - slog-mattermost: A
sloghandler forMattermost - slog-microsoft-teams: A
sloghandler forMicrosoft Teams - slog-webhook: A
sloghandler forWebhook - slog-kafka: A
sloghandler forKafka
go get github.com/samber/slog-datadogCompatibility: go >= 1.21
No breaking changes will be made to exported APIs before v2.0.0.
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.
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")
}- Ping me on twitter @samuelberthe (DMs, mentions, whatever :))
- Fork the project
- Fix open issues or request new features
Don't hesitate ;)
# Install some dev dependencies
make tools
# Run tests
make test
# or
make watch-testGive a βοΈ if this project helped you!
Copyright Β© 2023 Samuel Berthe.
This project is MIT licensed.