Package Usage: go: go.uber.org/zap
Package zap provides fast, structured, leveled logging.
For applications that log in the hot path, reflection-based serialization
and string formatting are prohibitively expensive - they're CPU-intensive
and make many small allocations. Put differently, using json.Marshal and
fmt.Fprintf to log tons of interface{} makes your application slow.
Zap takes a different approach. It includes a reflection-free,
zero-allocation JSON encoder, and the base Logger strives to avoid
serialization overhead and allocations wherever possible. By building the
high-level SugaredLogger on that foundation, zap lets users choose when
they need to count every allocation and when they'd prefer a more familiar,
loosely typed API.
In contexts where performance is nice, but not critical, use the
SugaredLogger. It's 4-10x faster than other structured logging packages and
supports both structured and printf-style logging. Like log15 and go-kit,
the SugaredLogger's structured logging APIs are loosely typed and accept a
variadic number of key-value pairs. (For more advanced use cases, they also
accept strongly typed fields - see the SugaredLogger.With documentation for
details.)
By default, loggers are unbuffered. However, since zap's low-level APIs
allow buffering, calling Sync before letting your process exit is a good
habit.
In the rare contexts where every microsecond and every allocation matter,
use the Logger. It's even faster than the SugaredLogger and allocates far
less, but it only supports strongly-typed, structured logging.
Choosing between the Logger and SugaredLogger doesn't need to be an
application-wide decision: converting between the two is simple and
inexpensive.
The simplest way to build a Logger is to use zap's opinionated presets:
NewExample, NewProduction, and NewDevelopment. These presets build a logger
with a single function call:
Presets are fine for small projects, but larger projects and organizations
naturally require a bit more customization. For most users, zap's Config
struct strikes the right balance between flexibility and convenience. See
the package-level BasicConfiguration example for sample code.
More unusual configurations (splitting output between files, sending logs
to a message queue, etc.) are possible, but require direct use of
go.uber.org/zap/zapcore. See the package-level AdvancedConfiguration
example for sample code.
The zap package itself is a relatively thin wrapper around the interfaces
in go.uber.org/zap/zapcore. Extending zap to support a new encoding (e.g.,
BSON), a new log sink (e.g., Kafka), or something more exotic (perhaps an
exception aggregation service, like Sentry or Rollbar) typically requires
implementing the zapcore.Encoder, zapcore.WriteSyncer, or zapcore.Core
interfaces. See the zapcore documentation for details.
Similarly, package authors can use the high-performance Encoder and Core
implementations in the zapcore package to build their own loggers.
An FAQ covering everything from installation errors to design decisions is
available at https://github.com/uber-go/zap/blob/master/FAQ.md.
38 versions
Latest release: over 1 year ago
35,840 dependent packages
View more package details: https://packages.ecosystem.code.gouv.fr/registries/proxy.golang.org/packages/go.uber.org/zap
Dependent Repos 18
ANSSI-FR/ultrablue
User-friendly Lightweight TPM Remote Attestation over BluetoothSize: 3.87 MB - Last synced: 2 days ago - Pushed: over 2 years ago



InseeFrLab/onyxia-onboarding-operator
An operator for onyxia's onboarding tasksSize: 71.3 KB - Last synced: 2 days ago - Pushed: over 1 year ago

InseeFrLab/s3-operator
A simple operator to dynamically create S3 buckets and policiesSize: 332 KB - Last synced: 2 days ago - Pushed: 4 days ago

InseeFrLab/utils
A collection of scripts that may have been used at some point :)Size: 41 KB - Last synced: 2 days ago - Pushed: over 1 year ago

SocialGouv/secretgen-controller Fork of carvel-dev/secretgen-controller
secretgen-controller provides CRDs to specify what secrets need to be on Kubernetes cluster (to be generated or not)Size: 30.4 MB - Last synced: 1 day ago - Pushed: about 1 year ago

SocialGouv/oblik
An operator designed to watch VPA objects and apply resources recommendations to Deployments and StatefulSets based on configurable annotationsSize: 9.01 MB - Last synced: 1 day ago - Pushed: about 1 month ago

SocialGouv/mattermost-plugin-google-calendar Fork of waseem18/mattermost-plugin-google-calendar
Mattermost plugin for Google Calendar - In rapid developmentSize: 553 KB - Last synced: 1 day ago - Pushed: about 1 year ago


