Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add logging guidelines #1884

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions pkg/log/guidelines.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Log Guidelines

Logs from `zot` can be pushed to the popular ELK stack and therefore they
become one of the service level indicators (SLI). It is therefore important to
set guidelines about how we log in this project.

## Log Levels

Depending on whether a log message is useful in development or production, set the appropriate level.
Development code should use DEBUG level.

## Message Format

We use structured logs (currently via the `zerolog` library).

1. Use **lower-case** strings by default

2. The "message" field **should not** have any formatting strings

For example,

```
log.Info().Msg(fmt.Sprintf("this is a %s message", "test"))
```

So that exact string matches are possible on the "message" field.

All parameters should be specified **separately** as part of the log.

For example,

```
log.Info().Str("stringParam", "stringValue").Msg("static message")
```

## Separate components

Instead of:

```
log.Info().Msg("module: message")
```

use:

```
log.Info().Str("module", "module").Msg("message")
```

_OR_ if you want to a reusable logger then:

```
log.Info().With().Str("module", "module1").Logger().Msg("message")
```

## Errors

Not all errors are really errors.

For example, lookup a cache (fast path) and it throws a not-found error, and we
expect to handle it and perform a slow path lookup. Instead of logging the
lookup failure at ERROR level, it may be more appropriate to log at DEBUG level
and then handle the error.