View Source Logster (Logster v2.0.0-rc.1)

An easy-to-parse, single-line logger for Elixir Phoenix and Plug.Conn, inspired by lograge. Supports logfmt, JSON and custom output formatting.

By default, Phoenix log output for a request looks similar to the following:

[info] GET /articles/some-article
[debug] Processing with HelloPhoenix.ArticleController.show/2
  Parameters: %{"id" => "some-article"}
  Pipelines: [:browser]
[info] Sent 200 in 21ms

This can be handy for development, but cumbersome for production. The log output is spread across multiple lines, making it difficult to parse and search.

Logster aims to solve this problem by logging the request in a single line:

[info] state=sent method=GET path=/articles/some-article format=html controller=HelloPhoenix.ArticleController action=show params={"id":"some-article"} status=200 duration=0.402

This is especially handy when integrating with log management services such as Logentries or Papertrail.

Alternatively, Logster can also output JSON formatted logs (see configuration section below):

[info] {"state":"sent","method":"GET","path":"/articles/some-article","format":"html","controller":"HelloPhoenix.ArticleController","action":"show","params":{"id":"some-article"},"status":200,"duration":0.402}

Installation

Add :logster to the list of dependencies in mix.exs:

def deps do
  [{:logster, "~> 2.0.0-rc.1"}]
end

Upgrading

See Upgrade Guide for more information.

Usage

Using with Phoenix

Attach the Logster Phoenix logger in the start function in your project's application.ex file:

# lib/my_app/application.ex
def start(_type, _args) do
  children = [
    # ...
  ]

  #
  # Add the line below:
  #
  :ok = Logster.attach_phoenix_logger()

  opts = [strategy: :one_for_one, name: MyApp.Supervisor]
  Supervisor.start_link(children, opts)
end

Next, disable the default Phoenix logger by adding the following line to your config.exs file:

config :phoenix, :logger, false

Using with Plug

Add Logster.Plug to your plug pipeline, or in the relevant module:

plug Logster.Plug

Using standalone logger

Logster provides debug, info, warning, error etc convenience functions that mimic those provided by the elixir logger, which outputs messages in your chosen log format.

For example:

Logger.info(service: :payments, event: :received, amount: 1000, customer: 123)

will output the following to the logs:

[info] service=payments event=received amount=1000 customer=123

You can also provide a function to be called lazily, which will only be called if the log level is enabled:

Logger.debug(fn ->
  # some potentially expensive operation
  # won't be called if the log level is not enabled
  customer = get_customer_id()

  [service: :payments, event: :received, amount: 1000, customer: customer]
end)

Configuration

The following configuration options can be set through your config.exs file

Formatter

JSON formatter

config :logster, formatter: :json

Caution: There is no guarantee that what reaches your console will be valid JSON. The Elixir Logger module has its own formatting which may be appended to your message. See the Logger documentation for more information.

Custom formatter

Provide a function that takes one argument, the parameters as input, and returns formatted output

config :logster, formatter: &MyCustomFormatter.format/1

Filtering parameters

By default, Logster filters parameters named password.

To change the filtered parameters:

config :logster, filter_parameters: ["password", "secret", "token"]

Logging HTTP request headers

By default, Logster won't log any request headers. To log specific headers, you can use the :headers option:

config :logster, headers: ["my-header-one", "my-header-two"]

Changing the log level for a specific controller/action

Through Logster.ChangeLogLevel plug

To change the Logster log level for a specific controller and/or action, you use the Logster.ChangeLogLevel plug.

For example, to change the logging of all requests in a controller to debug, add the following to that controller:

plug Logster.ChangeLogLevel, to: :debug

And to change it only for index and show actions:

plug Logster.ChangeLogLevel, [to: :debug] when action in [:index, :show]

This is specially useful for cases such as when you want to lower the log level for a healthcheck endpoint that gets hit every few seconds.

Through endpoint configuration

You can set the Plug.Telemetry :log option to a tuple, {Mod, Fun, Args}. The Plug.Conn.t() for the request will be prepended to the provided list of arguments.

When invoked, your function must return a Logger.level() or false to disable logging for the request.

# lib/my_app_web/endpoint.ex
plug Plug.Telemetry,
  event_prefix: [:phoenix, :endpoint],
  log: {__MODULE__, :log_level, []}

# Disables logging for routes like /status/*
def log_level(%{status: status}) when status >= 500, do: :error
def log_level(%{status: status}) when status >= 400, do: :warning
def log_level(%{path_info: ["status" | _]}), do: false
def log_level(_), do: :info

Renaming default fields

You can rename the default keys passing a map like %{key: :new_key}:

config :logster, renames: [duration: :response_time, params: :parameters]

Example output:

[info] method=GET path=/articles/some-article format=html controller=HelloPhoenix.ArticleController action=show parameters={"id":"some-article"} status=200 response_time=0.402 state=set

Excluding fields

You can exclude fields with :excludes:

config :logster, excludes: [:params, :status, :state]

Example output:

[info] method=GET path=/articles/some-article format=html controller=HelloPhoenix.ArticleController action=show duration=0.402

Metadata

Custom metadata can be added to logs using Logger.metadata and configuring your logger backend:

# add metadata for all future logs from this process
Logger.metadata(%{user_id: "123", foo: "bar"})

# example for configuring console backend to include metadata in logs.
# see https://hexdocs.pm/logger/Logger.html#module-console-backend documentation for more
# config.exs
config :logger, :console, metadata: [:user_id, :foo]

The easiest way to do this app wide is to introduce a new plug which you can include in your Phoenix router pipeline.

For example:

defmodule HelloPhoenix.SetLoggerMetadata do
  def init(opts), do: opts

  def call(conn, _opts) do
    Logger.metadata user_id: get_user_id(conn),
                    remote_ip: format_ip(conn)
    conn
  end

  defp format_ip(%{remote_ip: remote_ip}) when remote_ip != nil, do: :inet_parse.ntoa(remote_ip)
  defp format_ip(_), do: nil

  defp get_user_id(%{assigns: %{current_user: %{id: id}}}), do: id
  defp get_user_id(_), do: nil
end

And then add this plug to the relevant pipelines in the router:

pipeline :browser do
  plug :fetch_session
  plug :fetch_flash
  plug :put_secure_browser_headers
  # ...
  plug HelloPhoenix.SetLoggerMetadata
  # ...
end

Summary

Functions

Logs a alert message. See Logster.log/3 for more information.

Attaches a telemetry handler to the :phoenix event stream for logging.

Logs a critical message. See Logster.log/3 for more information.

Logs a debug message. See Logster.log/3 for more information.

Detaches logster's telemetry handler from the :phoenix event stream.

Logs a emergency message. See Logster.log/3 for more information.

Logs a error message. See Logster.log/3 for more information.

Logs a info message. See Logster.log/3 for more information.

Logs a message with the given level.

Logs details about the given conn at the given level.

Logs a notice message. See Logster.log/3 for more information.

Logs a warning message. See Logster.log/3 for more information.

Functions

Link to this function

alert(fields_or_message_or_func, metadata \\ [])

View Source
@spec alert(message :: Logger.message(), metadata :: Logger.metadata()) :: :ok

Logs a alert message. See Logster.log/3 for more information.

Returns :ok.

@spec attach_phoenix_logger() :: :ok

Attaches a telemetry handler to the :phoenix event stream for logging.

Returns :ok.

Link to this function

critical(fields_or_message_or_func, metadata \\ [])

View Source
@spec critical(message :: Logger.message(), metadata :: Logger.metadata()) :: :ok

Logs a critical message. See Logster.log/3 for more information.

Returns :ok.

Link to this function

debug(fields_or_message_or_func, metadata \\ [])

View Source
@spec debug(message :: Logger.message(), metadata :: Logger.metadata()) :: :ok

Logs a debug message. See Logster.log/3 for more information.

Returns :ok.

@spec detach_phoenix_logger() :: :ok

Detaches logster's telemetry handler from the :phoenix event stream.

Returns :ok.

Link to this function

emergency(fields_or_message_or_func, metadata \\ [])

View Source
@spec emergency(message :: Logger.message(), metadata :: Logger.metadata()) :: :ok

Logs a emergency message. See Logster.log/3 for more information.

Returns :ok.

Link to this function

error(fields_or_message_or_func, metadata \\ [])

View Source
@spec error(message :: Logger.message(), metadata :: Logger.metadata()) :: :ok

Logs a error message. See Logster.log/3 for more information.

Returns :ok.

Link to this function

info(fields_or_message_or_func, metadata \\ [])

View Source
@spec info(message :: Logger.message(), metadata :: Logger.metadata()) :: :ok

Logs a info message. See Logster.log/3 for more information.

Returns :ok.

Link to this function

log(level, fields_or_message_or_func, metadata \\ [])

View Source
@spec log(
  level :: Logger.level(),
  message :: Logger.message(),
  metadata :: Logger.metadata()
) :: :ok

Logs a message with the given level.

If given an enumerable, the enumerable will be formatted using the configured formatter.

Returns :ok.

Using debug/2, info/2, notice/2, warning/2, error/2, critical/2, alert/2, and emergency/2 are preferred over this function as they can automatically eliminate the call to Logger altogether at compile time if desired (see the documentation for the Logger module).

Example

Logster.log(:info, service: "payment-processor", event: "start-processing", customer: "1234")

will produce the following log entry when using the logfmt formatter:

16:54:29.919 [info] service=payment-processor event=start-processing customer=1234
Link to this function

log_conn(level, conn, duration_us, metadata \\ [])

View Source
@spec log_conn(
  level :: Logger.level(),
  conn :: Plug.Conn.t(),
  duration_us :: integer(),
  metadata :: Logger.metadata()
) :: :ok

Logs details about the given conn at the given level.

See the module documentation for more information on configuration options.

Returns :ok.

Link to this function

notice(fields_or_message_or_func, metadata \\ [])

View Source
@spec notice(message :: Logger.message(), metadata :: Logger.metadata()) :: :ok

Logs a notice message. See Logster.log/3 for more information.

Returns :ok.

Link to this function

warning(fields_or_message_or_func, metadata \\ [])

View Source
@spec warning(message :: Logger.message(), metadata :: Logger.metadata()) :: :ok

Logs a warning message. See Logster.log/3 for more information.

Returns :ok.