Skip to content

asabil/raven-erlang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

raven-erlang

raven-erlang is an Erlang client for Sentry that integrates with the standard error_logger module.

Quick Start

git clone https://github.com/asabil/raven-erlang.git
cd raven-erlang
rebar3 compile
ERL_LIBS=_build/default/lib erl -s raven_app -raven dsn '"https://PUBLIC_KEY:PRIVATE_KEY@app.getsentry.com/PROJECT_ID"'

Which should start and erlang shell prompt, where you should be able to type something like this:

Erlang R15B03 (erts-5.9.3.1) [source] [64-bit] [smp:4:4] [async-threads:0] [hipe] [kernel-poll:false] [dtrace]

Eshell V5.9.3.1  (abort with ^G)
1> raven:capture("Hello Raven", []).
ok
2> q().
ok

Basic Usage

Add raven as a dependency to your project, and include the raven application in your release (in the reltool.config rel section):

{rel, "my_app", "1", [
    kernel,
    stdlib,
    sasl,
    crypto,
    ssl,
    inets,
    raven,

    my_app
]}.

The raven application itself needs to be configured using the application's environment, this is generally done in app.config or sys.config.

{raven, [
    {dsn, "https://PUBLIC_KEY:PRIVATE_KEY@app.getsentry.com/PROJECT_ID"},
    {error_logger, true}  % Set to true in order to install the standard error logger
]}.

Now all events logged using error_logger will be sent to the Sentry service.

Advanced Usage

You can log directly events to sentry using the raven:capture/2 function, for example:

raven:capture("Test Event", [
    {exception, {error, badarg}},
    {stacktrace, erlang:get_stacktrace()},
    {extra, [
        {pid, self()},
        {process_dictionnary, erlang:get()}
    ]}
]).

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages