mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-10 16:08:26 -05:00
* Ran gopls modernize to fix everything go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./... * Override rules_go provided dependency for golang.org/x/tools to v0.38.0. To update this, checked out rules_go, then ran `bazel run //go/tools/releaser -- upgrade-dep -mirror=false org_golang_x_tools` and copied the patches. * Fix buildtag violations and ignore buildtag violations in external * Introduce modernize analyzer package. * Add modernize "any" analyzer. * Fix violations of any analyzer * Add modernize "appendclipped" analyzer. * Fix violations of appendclipped * Add modernize "bloop" analyzer. * Add modernize "fmtappendf" analyzer. * Add modernize "forvar" analyzer. * Add modernize "mapsloop" analyzer. * Add modernize "minmax" analyzer. * Fix violations of minmax analyzer * Add modernize "omitzero" analyzer. * Add modernize "rangeint" analyzer. * Fix violations of rangeint. * Add modernize "reflecttypefor" analyzer. * Fix violations of reflecttypefor analyzer. * Add modernize "slicescontains" analyzer. * Add modernize "slicessort" analyzer. * Add modernize "slicesdelete" analyzer. This is disabled by default for now. See https://go.dev/issue/73686. * Add modernize "stringscutprefix" analyzer. * Add modernize "stringsbuilder" analyzer. * Fix violations of stringsbuilder analyzer. * Add modernize "stringsseq" analyzer. * Add modernize "testingcontext" analyzer. * Add modernize "waitgroup" analyzer. * Changelog fragment * gofmt * gazelle * Add modernize "newexpr" analyzer. * Disable newexpr until go1.26 * Add more details in WORKSPACE on how to update the override * @nalepae feedback on min() * gofmt * Fix violations of forvar
77 lines
1.8 KiB
Go
77 lines
1.8 KiB
Go
//go:build linux
|
|
|
|
// Package journald was copied directly from https://github.com/wercker/journalhook,
|
|
// where this library was previously hosted.
|
|
package journald
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/coreos/go-systemd/journal"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type JournalHook struct{}
|
|
|
|
var (
|
|
severityMap = map[logrus.Level]journal.Priority{
|
|
logrus.DebugLevel: journal.PriDebug,
|
|
logrus.InfoLevel: journal.PriInfo,
|
|
logrus.WarnLevel: journal.PriWarning,
|
|
logrus.ErrorLevel: journal.PriErr,
|
|
logrus.FatalLevel: journal.PriCrit,
|
|
logrus.PanicLevel: journal.PriEmerg,
|
|
}
|
|
)
|
|
|
|
func stringifyOp(r rune) rune {
|
|
// Journal wants uppercase strings. See `validVarName`
|
|
// https://github.com/coreos/go-systemd/blob/ff118ad0f8d9cf99903d3391ca3a295671022cee/journal/journal.go#L137-L147
|
|
switch {
|
|
case r >= 'A' && r <= 'Z':
|
|
return r
|
|
case r >= '0' && r <= '9':
|
|
return r
|
|
case r == '_':
|
|
return r
|
|
case r >= 'a' && r <= 'z':
|
|
return r - 32
|
|
default:
|
|
return rune('_')
|
|
}
|
|
}
|
|
|
|
func stringifyKey(key string) string {
|
|
key = strings.Map(stringifyOp, key)
|
|
key = strings.TrimPrefix(key, "_")
|
|
return key
|
|
}
|
|
|
|
// Journal wants strings but logrus takes anything.
|
|
func stringifyEntries(data map[string]any) map[string]string {
|
|
entries := make(map[string]string)
|
|
for k, v := range data {
|
|
key := stringifyKey(k)
|
|
entries[key] = fmt.Sprint(v)
|
|
}
|
|
return entries
|
|
}
|
|
|
|
// Fire fires an entry into the journal.
|
|
func (hook *JournalHook) Fire(entry *logrus.Entry) error {
|
|
return journal.Send(entry.Message, severityMap[entry.Level], stringifyEntries(entry.Data))
|
|
}
|
|
|
|
// Levels returns a slice of `Levels` the hook is fired for.
|
|
func (hook *JournalHook) Levels() []logrus.Level {
|
|
return []logrus.Level{
|
|
logrus.PanicLevel,
|
|
logrus.FatalLevel,
|
|
logrus.ErrorLevel,
|
|
logrus.WarnLevel,
|
|
logrus.InfoLevel,
|
|
logrus.DebugLevel,
|
|
}
|
|
}
|