# errorgap v0.1.0 - Table of Contents

> Elixir notifier for Errorgap error tracking.

## Modules

- [Errorgap](Errorgap.md): Elixir notifier for Errorgap. Configure via `Application` env, then call
`Errorgap.notify/2` directly, attach `Errorgap.Plug` to your Phoenix
endpoint, or wire `Errorgap.LoggerHandler` into `:logger` for handler-style
capture of crash reports and high-severity logs.

- [Errorgap.Configuration](Errorgap.Configuration.md): Reads the runtime configuration from the `:errorgap` application env, with
`ERRORGAP_*` environment variables as defaults.

- [Errorgap.Filter](Errorgap.Filter.md): Masks sensitive map keys before they leave the process.

- [Errorgap.JSON](Errorgap.JSON.md): Minimal JSON encoder. Avoids a runtime dependency on `:jason` so the
library has zero non-stdlib deps. Handles only the types used in notice
envelopes: map, list, binary, atom, number, boolean, nil.

- [Errorgap.Plug](Errorgap.Plug.md): A `Plug` that reports unhandled exceptions to Errorgap. Add to the top
of your Phoenix endpoint

