From afe474b84f0d7f6a2878b66be93e46155c40d2e4 Mon Sep 17 00:00:00 2001 From: Adam Wonak Date: Tue, 7 Jul 2015 11:52:22 -0500 Subject: [PATCH] updated readme with usage example --- hooks/sentry/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/hooks/sentry/README.md b/hooks/sentry/README.md index 4e1c147..8b1f9a1 100644 --- a/hooks/sentry/README.md +++ b/hooks/sentry/README.md @@ -31,6 +31,22 @@ func main() { } ``` +If you wish to initialize a SentryHook with tags, you can use the `NewWithTagsSentryHook` constructor to provide default tags: + +```go +tags := map[string]string{ + "site": "example.com", +} +levels := []logrus.Level{ + logrus.PanicLevel, + logrus.FatalLevel, + logrus.ErrorLevel, +} +hook, err := logrus_sentry.NewWithTagsSentryHook(YOUR_DSN, tags, levels) + +``` + + ## Special fields Some logrus fields have a special meaning in this hook,