Tower.Event (Tower v0.8.1)

View Source

A struct representing a captured event.

Tower converts every captured error and message into a struct of this type before passing along to reporters.

Summary

Types

t()

A struct representing a captured event.

Types

error_kind()

@type error_kind() :: :error | :exit | :throw

level()

@type level() :: :logger.level()

non_error_kind()

@type non_error_kind() :: :message

reason()

@type reason() :: Exception.t() | term()

t()

@type t() :: %Tower.Event{
  by: atom() | nil,
  datetime: DateTime.t(),
  id: UUIDv7.t(),
  kind: error_kind() | non_error_kind(),
  level: level(),
  log_event: :logger.log_event() | nil,
  metadata: map(),
  plug_conn: struct() | nil,
  reason: reason(),
  similarity_id: non_neg_integer(),
  stacktrace: Exception.stacktrace() | nil
}

A struct representing a captured event.

Tower converts every captured error and message into a struct of this type before passing along to reporters.