reset / erollbar

Rollbar client in Erlang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Erollbar

Error handler that posts crash reports to Rollbar.com.

Usage

-type access_token() :: binary().
-type opt() :: {modules, [module()]}|
               {environment, binary()}|
               {platform, binary()}|
               {batch_max, pos_integer()}|
               {time_max, ms()}|
               {endpoint, binary()}|
               {info_fun, info_fun()}|
               {host, binary()}|
               {root, binary()}|
               {branch, binary()}|
               {sha, binary()}|
               send_args.
-type opts() :: [opt()]|[].
-spec start(access_token()) -> ok.
-spec start(access_token(), opts()) -> ok.
-spec stop() -> ok.

Running the tests

$ rebar ct skip_deps=true

License

See LICENSE.

About

Rollbar client in Erlang

License:Other