Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
github.com/evalphobia/logrus_fluent
import (
"github.com/sirupsen/logrus"
"github.com/evalphobia/logrus_fluent"
)
func main() {
hook, err := logrus_fluent.NewWithConfig(logrus_fluent.Config{
Host: "localhost",
Port: 24224,
})
if err != nil {
panic(err)
}
// set custom fire level
hook.SetLevels([]logrus.Level{
logrus.PanicLevel,
logrus.ErrorLevel,
})
// set static tag
hook.SetTag("original.tag")
// ignore field
hook.AddIgnore("context")
// filter func
hook.AddFilter("error", logrus_fluent.FilterError)
logrus.AddHook(hook)
}
func logging(ctx context.Context) {
logrus.WithFields(logrus.Fields{
"value": "some content...",
"error": errors.New("unknown error"), // this field will be applied filter function in the hook.
"context": ctx, // this field will be ignored in the hook.
}).Error("error message")
}
Some logrus fields have a special meaning in this hook.
tag
is used as a fluentd tag. (if tag
is omitted, Entry.Message is used as a fluentd tag, unless a static tag is set for the hook with hook.SetTag
)FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.