bbgo_origin/bbgo/slack/slacklog/logrus_look.go

70 lines
1.3 KiB
Go
Raw Normal View History

2020-09-19 00:13:06 +00:00
package slacklog
import (
"context"
2020-08-07 01:15:50 +00:00
"fmt"
2020-09-05 08:22:46 +00:00
"strings"
"github.com/sirupsen/logrus"
"github.com/slack-go/slack"
)
2020-08-11 00:37:27 +00:00
type LogHook struct {
Slack *slack.Client
ErrorChannel string
}
2020-09-19 01:05:06 +00:00
func NewLogHook(token string, channel string) *LogHook {
var client = slack.New(token)
return &LogHook{
Slack: client,
ErrorChannel: channel,
}
}
2020-08-11 00:37:27 +00:00
func (t *LogHook) Levels() []logrus.Level {
return []logrus.Level{
// log.InfoLevel,
logrus.ErrorLevel,
logrus.PanicLevel,
// log.WarnLevel,
}
}
2020-08-11 00:37:27 +00:00
func (t *LogHook) Fire(e *logrus.Entry) error {
var color = "#F0F0F0"
switch e.Level {
case logrus.DebugLevel:
color = "#9B30FF"
case logrus.InfoLevel:
color = "good"
case logrus.ErrorLevel, logrus.FatalLevel, logrus.PanicLevel:
color = "danger"
default:
color = "warning"
}
var slackAttachments []slack.Attachment = nil
2020-08-07 01:15:50 +00:00
// error fields
var fields []slack.AttachmentField
for k, d := range e.Data {
fields = append(fields, slack.AttachmentField{
Title: k, Value: fmt.Sprintf("%v", d),
})
}
2020-08-07 01:15:50 +00:00
slackAttachments = append(slackAttachments, slack.Attachment{
Color: color,
Title: strings.ToUpper(e.Level.String()),
Fields: fields,
})
_, _, err := t.Slack.PostMessageContext(context.Background(), t.ErrorChannel,
2020-08-07 01:15:50 +00:00
slack.MsgOptionText(":balloon: "+e.Message, true),
slack.MsgOptionAttachments(slackAttachments...))
return err
}