grip

package module
v0.0.0-...-f906268 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 13, 2024 License: Apache-2.0 Imports: 12 Imported by: 394

README

=======================================================
``grip`` -- A Go Library for Logging and Error Handling
=======================================================

``grip`` isn't any thing special, but it does a few pretty great
things:

#. Provide a common logging interface with support for multiple
   logging backends including syslog, systemd's journal, slack, xmpp,
   a JSON logging system, and others.

#. Provides some simple methods for handling errors, particularly when
   you want to accumulate and then return errors.

#. Provides tools for collecting structured logging information.

*You just get a grip, folks.*

Use
---

Download:

::

   go get -u github.com/mongodb/grip

Import:

::

   import "github.com/mongodb/grip"

Components
----------

Output Formats
~~~~~~~~~~~~~~

Grip supports a number of different logging output backends:

- systemd's journal (linux-only)
- syslog (unix-only)
- writing messages to standard output. (default)
- writing messages to a file.
- sending messages to a slack's channel
- sending messages to a user via XMPP (jabber.)

The default logger interface has methods to switch the backend to
the standard output (native; default), and file-based loggers. The
SetSender() and CloneSender() methods allow to replace the sender
implementation in your logger.

See the documentation of the `Sender interface
<https://godoc.org/github.com/mongodb/grip/send#Sender>`_ for more
information on building new senders.

Logging
~~~~~~~

Provides a fully featured level-based logging system with multiple
backends (e.g. send.Sender). By default logging messages are printed
to standard output, but backends exists for many possible targets. The
interface for logging is provided by the Journaler interface.

By default ``grip.std`` defines a standard global  instances
that you can use with a set of ``grip.<Level>`` functions, or you can
create your own ``Journaler`` instance and embed it in your own
structures and packages.

Defined helpers exist for the following levels/actions:

- ``Debug``
- ``Info``
- ``Notice``
- ``Warning``
- ``Error``
- ``Critical``
- ``Alert``
- ``Emergency``
- ``EmergencyPanic``
- ``EmergencyFatal``

Helpers ending with ``Panic`` call ``panic()`` after logging the message
message, and helpers ending with ``Fatal`` call ``os.Exit(1)`` after
logging the message. These are primarily for handling errors in your
main() function and should be used sparingly, if at all, elsewhere.

``Journaler`` instances have a notion of "default" log levels and
thresholds, which provide the basis for verbosity control and sane
default behavior. The default level defines the priority/level of any
message with an invalid priority specified. The threshold level,
defines the minimum priority or level that ``grip`` sends to the
logging system. It's not possible to suppress the highest log level,
``Emergency`` messages will always log.

``Journaler`` objects have the following, additional methods (also
available as functions in the ``grip`` package to manage the global
standard logger instance.):

- ``SetName(<string>)`` to reset the name of the logger. ``grip``
  attempts to set this to the name of your program for the standard
  logger.

- ``SetDefault(<level int>)`` change the default log level. Levels are
  values between ``0`` and ``7``, where lower numbers are *more*
  severe. ``grip`` does *not* forbid configurations where default
  levels are *below* the configured threshold.

- ``SetThreshold(<level int>)`` Change the lowest log level that the
  ``grip`` will transmit to the logging mechanism (either ``systemd``
  ``journald`` or Go's standard logging.) Log messages with lower
  levels are not captured and ignored.

The ``Journaler.InvertFallback`` flag (bool) switches a ``Journaler``
instance to prefer the standard logging mechanism rather than
``systemd``.

By default:

- the log level uses the "Notice" level (``5``)

- the minimum threshold for logging is the "Info" level (``6``)
  (suppressing only debug.)

- fallback logging writes to standard output.

Collector for "Continue on Error" Semantics
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you want to do something other than just swallow errors, but don't
need to hard abort, the ``MultiCatcher`` object makes this pattern
swell, a la:

::

   func doStuff(dirname string) (error) {
           files, err := ioutil.ReadDir(dirname)
           if err != nil {
                   // should abort here because we shouldn't continue.
                   return err
           }

           catcher := grip.NewCatcher()
           for _, f := range files {
               err = doStuffToFile(f.Name())
               catcher.Add(err)
           }

           return catcher.Resolve()
   }


Simple Error Catching
~~~~~~~~~~~~~~~~~~~~~

Use ``grip.Catch(<err>)`` to check and print error messages.

There are also helper functions on ``Journaler`` objects that check
and log error messages using either the default (global) ``Journaler``
instance, or as a method on specific ``Journaler`` instances, at all
levels:

- ``CatchDebug``
- ``CatchInfo``
- ``CatchNotice``
- ``CatchWarning``
- ``CatchError``
- ``CatchCritical``
- ``CatchAlert``
- ``CatchEmergency``
- ``CatchEmergencyPanic``
- ``CatchEmergencyFatal``

Conditional Logging
~~~~~~~~~~~~~~~~~~~

``grip`` incldues support for conditional logging, so that you can
only log a message in certain situations, by adding a Boolean argument
to the logging call. Use this to implement "log sometimes" messages to
minimize verbosity without complicating the calling code around the
logging.

These methods have a ``<Level>When<>`` format. For
example: ``AlertWhen``, ``AlertWhenln``, ``AlertWhenf``.

Composed Logging
~~~~~~~~~~~~~~~~

If the production of the log message is resource intensive or
complicated, you may wish to use a "composed logging," which delays
the generation of the log message from the logging call site to the
message propagation, to avoid generating the log message unless
neccessary. Rather than passing the log message as a string, pass the
logging function an instance of a type that implements the
``MessageComposer`` interface: ::

   type MessageComposer interface {
        String() string
        Raw() interface{}
        Loggable() bool
        Priority() level.Priority
        SetPriority(level.Priority) error
   }

Composed logging may be useful for some debugging logging that depends
on additional database, API queries, or data serialization. Composers
are also the mechanism through which the ``Catch<>`` methods are
implemented,

Grip uses composers internally, but you can pass composers directly to
any of the basic logging method (e.g. ``Info()``, ``Debug()``) for
composed logging.

Grip includes a number of message types, including those that collect
system information, process information, stacktraces, or simple
user-specified structured information.

Documentation

Overview

Package grip provides a flexible logging package for basic Go programs. Drawing inspiration from Go and Python's standard library logging, as well as systemd's journal service, and other logging systems, Grip provides a number of very powerful logging abstractions in one high-level package.

Logging Instances

The central type of the grip package is the Journaler type, instances of which provide distinct log capturing system. For ease, following from the Go standard library, the grip package provides parallel public methods that use an internal "standard" Jouernaler instance in the grip package, which has some defaults configured and may be sufficient for many use cases.

Output

The send.Sender interface provides a way of changing the logging backend, and the send package provides a number of alternate implementations of logging systems, including: systemd's journal, logging to standard output, logging to a file, and generic syslog support.

Messages

The message.Composer interface is the representation of all messages. They are implemented to provide a raw structured form as well as a string representation for more conentional logging output. Furthermore they are intended to be easy to produce, and defer more expensive processing until they're being logged, to prevent expensive operations producing messages that are below threshold.

Error Catcher

The MutiCatcher type makes it possible to collect from a group of operations and then aggregate them as a single error.

Basic Logging

Loging helpers exist for the following levels:

Emergency + (fatal/panic)
Alert + (fatal/panic)
Critical + (fatal/panic)
Error + (fatal/panic)
Warning
Notice
Info
Debug

These methods accept both strings (message content,) or types that implement the message.MessageComposer interface. Composer types make it possible to delay generating a message unless the logger is over the logging threshold. Use this to avoid expensive serialization operations for suppressed logging operations.

All levels also have additional methods with `ln` and `f` appended to the end of the method name which allow Println() and Printf() style functionality. You must pass printf/println-style arguments to these methods.

Conditional Logging

The Conditional logging methods take two arguments, a Boolean, and a message argument. Messages can be strings, objects that implement the MessageComposer interface, or errors. If condition boolean is true, the threshold level is met, and the message to log is not an empty string, then it logs the resolved message.

Use conditional logging methods to potentially suppress log messages based on situations orthogonal to log level, with "log sometimes" or "log rarely" semantics. Combine with MessageComposers to to avoid expensive message building operations.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Alert

func Alert(msg interface{})

func AlertWhen

func AlertWhen(conditional bool, m interface{})

func Alertf

func Alertf(msg string, a ...interface{})

func Alertln

func Alertln(a ...interface{})

func Critical

func Critical(msg interface{})

func CriticalWhen

func CriticalWhen(conditional bool, m interface{})

func Criticalf

func Criticalf(msg string, a ...interface{})

func Criticalln

func Criticalln(a ...interface{})

func Debug

func Debug(msg interface{})

func DebugWhen

func DebugWhen(conditional bool, m interface{})

func Debugf

func Debugf(msg string, a ...interface{})

func Debugln

func Debugln(a ...interface{})

func Emergency

func Emergency(msg interface{})

func EmergencyFatal

func EmergencyFatal(msg interface{})

func EmergencyPanic

func EmergencyPanic(msg interface{})

func EmergencyWhen

func EmergencyWhen(conditional bool, m interface{})

func Emergencyf

func Emergencyf(msg string, a ...interface{})

func Emergencyln

func Emergencyln(a ...interface{})

func Error

func Error(msg interface{})

func ErrorTimeFinder

func ErrorTimeFinder(err error) (time.Time, bool)

ErrorTimeFinder unwraps a timestamp annotated error if possible and is capable of finding a timestamp in an error that has been annotated using pkg/errors.

func ErrorWhen

func ErrorWhen(conditional bool, m interface{})

func Errorf

func Errorf(msg string, a ...interface{})

func Errorln

func Errorln(a ...interface{})

func GetSender

func GetSender() send.Sender

GetSender returns the current Journaler's sender instance. Use this in combination with SetSender to have multiple Journaler instances backed by the same send.Sender instance.

func Info

func Info(msg interface{})

func InfoWhen

func InfoWhen(conditional bool, message interface{})

func Infof

func Infof(msg string, a ...interface{})

func Infoln

func Infoln(a ...interface{})

func Log

func Log(l level.Priority, msg interface{})

func LogWhen

func LogWhen(conditional bool, l level.Priority, m interface{})

func Logf

func Logf(l level.Priority, msg string, a ...interface{})

func Logln

func Logln(l level.Priority, a ...interface{})

func MakeStandardLogger

func MakeStandardLogger(p level.Priority) *log.Logger

MakeStandardLogger constructs a standard library logging instance that logs all messages to the global grip logging instance.

func Name

func Name() string

Name of the logger instance

func Notice

func Notice(msg interface{})

func NoticeWhen

func NoticeWhen(conditional bool, m interface{})

func Noticef

func Noticef(msg string, a ...interface{})

func Noticeln

func Noticeln(a ...interface{})

func SetDefaultStandardLogger

func SetDefaultStandardLogger(p level.Priority)

SetDefaultStandardLogger set's the standard library's global logging instance to use grip's global logger at the specified level.

func SetLevel

func SetLevel(info send.LevelInfo) error

SetLevel sets the default and threshold level in the underlying sender.

func SetName

func SetName(name string)

SetName declare a name string for the logger, including in the logging message. Typically this is included on the output of the command.

func SetSender

func SetSender(s send.Sender) error

SetSender swaps send.Sender() implementations in a logging instance. Calls the Close() method on the existing instance before changing the implementation for the current instance.

func Warning

func Warning(msg interface{})

func WarningWhen

func WarningWhen(conditional bool, m interface{})

func Warningf

func Warningf(msg string, a ...interface{})

func Warningln

func Warningln(a ...interface{})

func WrapErrorTime

func WrapErrorTime(err error) error

WrapErrorTime annotates an error with the timestamp. The underlying concrete object implements message.Composer as well as error.

func WrapErrorTimeMessage

func WrapErrorTimeMessage(err error, m string) error

WrapErrorTimeMessage annotates an error with the timestamp and a string form. The underlying concrete object implements message.Composer as well as error.

func WrapErrorTimeMessagef

func WrapErrorTimeMessagef(err error, m string, args ...interface{}) error

WrapErrorTimeMessagef annotates an error with a timestamp and a string formated message, like fmt.Sprintf or fmt.Errorf. The underlying concrete object implements message.Composer as well as error.

Types

type Catcher

type Catcher interface {
	Add(error)
	AddWhen(bool, error)
	Extend([]error)
	ExtendWhen(bool, []error)
	Len() int
	HasErrors() bool
	String() string
	Resolve() error
	Errors() []error

	New(string)
	NewWhen(bool, string)
	Errorf(string, ...interface{})
	ErrorfWhen(bool, string, ...interface{})

	Wrap(error, string)
	Wrapf(error, string, ...interface{})

	Check(CheckFunction)
	CheckExtend([]CheckFunction)
	CheckWhen(bool, CheckFunction)
}

Catcher is an interface for an error collector for use when implementing continue-on-error semantics in concurrent operations. There are three different Catcher implementations provided by this package that differ *only* in terms of the string format returned by String() (and also the format of the error returned by Resolve().)

If you do not use github.com/pkg/errors to attach errors, the implementations are usually functionally equivalent. The Extended variant formats the errors using the "%+v" (which returns a full stack trace with pkg/errors,) the Simple variant uses %s (which includes all the wrapped context,) and the basic catcher calls error.Error() (which should be equvalent to %s for most error implementations.)

func NewBasicCatcher

func NewBasicCatcher() Catcher

NewBasicCatcher collects error messages and formats them using a new-line separated string of the output of error.Error()

func NewCatcher

func NewCatcher() Catcher

NewCatcher returns a Catcher instance that you can use to capture error messages and aggregate the errors. For consistency with earlier versions NewCatcher is the same as NewExtendedCatcher()

DEPRECATED: use one of the other catcher implementations. See the documentation for the Catcher interface for most implementations.

func NewExtendedCatcher

func NewExtendedCatcher() Catcher

NewExtendedCatcher collects error messages and formats them using a new-line separated string of the extended string format of the error message (e.g. %+v).

func NewExtendedTimestampCatcher

func NewExtendedTimestampCatcher() Catcher

NewExtendedTimestampCatcher adds long-form annotation to the aggregated error message (e.g. including stacks, when possible.)

func NewSimpleCatcher

func NewSimpleCatcher() Catcher

NewSimpleCatcher collects error messages and formats them using a new-line separated string of the string format of the error message (e.g. %s).

func NewTimestampCatcher

func NewTimestampCatcher() Catcher

NewTimestampCatcher produces a Catcher instance that reports the short form of all constituent errors and annotates those errors with a timestamp to reflect when the error was collected.

type CheckFunction

type CheckFunction func() error

CheckFunction are functions which take no arguments and return an error.

type Journaler

type Journaler interface {
	Name() string
	SetName(string)

	// Methods to access the underlying message sending backend.
	GetSender() send.Sender
	SetSender(send.Sender) error
	SetLevel(send.LevelInfo) error

	// Send allows you to push a composer which stores its own
	// priorty (or uses the sender's default priority).
	Send(interface{})

	// Specify a log level as an argument rather than a method
	// name.
	Log(level.Priority, interface{})
	Logf(level.Priority, string, ...interface{})
	Logln(level.Priority, ...interface{})
	LogWhen(bool, level.Priority, interface{})

	// Emergency methods have "panic" and "fatal" variants that
	// call panic or os.Exit(1). It is impossible for "Emergency"
	// to be below threshold, however, if the message isn't
	// loggable (e.g. error is nil, or message is empty,) these
	// methods will not panic/error.
	EmergencyFatal(interface{})
	EmergencyPanic(interface{})

	// For each level, in addition to a basic logger that takes
	// strings and message.Composer objects (and tries to do its best
	// with everythingelse.) there are println and printf
	// loggers. Each Level also has "When" variants that only log
	// if the passed condition are true.
	Emergency(interface{})
	Emergencyf(string, ...interface{})
	Emergencyln(...interface{})
	EmergencyWhen(bool, interface{})

	Alert(interface{})
	Alertf(string, ...interface{})
	Alertln(...interface{})
	AlertWhen(bool, interface{})

	Critical(interface{})
	Criticalf(string, ...interface{})
	Criticalln(...interface{})
	CriticalWhen(bool, interface{})

	Error(interface{})
	Errorf(string, ...interface{})
	Errorln(...interface{})
	ErrorWhen(bool, interface{})

	Warning(interface{})
	Warningf(string, ...interface{})
	Warningln(...interface{})
	WarningWhen(bool, interface{})

	Notice(interface{})
	Noticef(string, ...interface{})
	Noticeln(...interface{})
	NoticeWhen(bool, interface{})

	Info(interface{})
	Infof(string, ...interface{})
	Infoln(...interface{})
	InfoWhen(bool, interface{})

	Debug(interface{})
	Debugf(string, ...interface{})
	Debugln(...interface{})
	DebugWhen(bool, interface{})
}

Journaler describes the public interface of the the Grip interface. Used to enforce consistency between the grip and logging packages.

func GetDefaultJournaler

func GetDefaultJournaler() Journaler

GetDefaultJournaler returns the default journal instance used by this library.

func NewJournaler

func NewJournaler(name string) Journaler

NewJournaler creates a new Journaler instance. The Sender method is a non-operational bootstrap method that stores default and threshold types, as needed. You must use SetSender() or the UseSystemdLogger(), UseNativeLogger(), or UseFileLogger() methods to configure the backend.

func NewJournalerFromSlogger

func NewJournalerFromSlogger(logger *slogger.Logger) (Journaler, error)

NewJournalerFromSlogger takes a slogger logging instance and returns a functionally equivalent Jouranler instance.

Directories

Path Synopsis
cmd
Package level defines a Priority type and some conversion methods for a 7-tiered logging level schema, which mirror syslog and system's logging levels.
Package level defines a Priority type and some conversion methods for a 7-tiered logging level schema, which mirror syslog and system's logging levels.
Package logging provides the primary implementation of the Journaler interface (which is cloned in public functions in the grip interface itself.)
Package logging provides the primary implementation of the Journaler interface (which is cloned in public functions in the grip interface itself.)
package message defines the Composer interface and a handful of implementations which represent the structure for messages produced by grip.
package message defines the Composer interface and a handful of implementations which represent the structure for messages produced by grip.
Package recovery provides a number of grip-integrated panic handling tools for capturing and responding to panics using grip loggers.
Package recovery provides a number of grip-integrated panic handling tools for capturing and responding to panics using grip loggers.
Call Site Sender
Call Site Sender

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL