gocommon/log/hooks/gelf/hook.go

29 lines
450 B
Go
Raw Permalink Normal View History

2022-11-26 20:45:32 +00:00
package gelf
import (
"fmt"
"github.com/juju/errors"
"github.com/sirupsen/logrus"
graylog "github.com/gemnasium/logrus-graylog-hook/v3"
)
// NewHook will create a Gelf Hook for logrus.
func NewHook(c *ConfigStruct) (logrus.Hook, error) {
err := c.IsValid()
if err != nil {
return nil, errors.Trace(err)
}
hook := graylog.NewAsyncGraylogHook(
fmt.Sprintf("%s:%d", c.Host, c.Port),
nil,
2022-11-26 20:45:32 +00:00
)
defer hook.Flush()
return hook, nil
}