Airbrake Rust

Build Status

*/!\ The project is in the alpha stage /!*

Introduction

Airbrake Rust is an Airbrake notifier library for the Rust Programming language. The library provides minimalist API that enables the ability to send Rust errors to the Airbrake dashboard.

Key features

Installation

Cargo

Add the crate to your Cargo.toml:

toml [dependencies] airbrake = "0.2"

Examples

Basic example

This is the minimal example that you can use to test Airbrake Rust with your project:

```rust extern crate airbrake;

use std::num::ParseIntError;

fn doublenumber(numberstr: &str) -> Result { number_str.parse::().map(|n| 2 * n) }

fn main() { let mut airbrake = airbrake::configure(|config| { config.projectid = "113743".toowned(); config.projectkey = "81bbff95d52f8856c770bb39e827f3f6".toowned(); });

match double_number("NOT A NUMBER") {
    Ok(n) => assert_eq!(n, 20),
    // Asynchronously sends the error to the dashboard.
    Err(err) => airbrake.notify(err),
}

// Joins worker threads.
airbrake.close();

} ```

Configuration

projectkey & projectid

You must set both project_id & project_key.

To find your project_id and project_key navigate to your project's General Settings and copy the values from the right sidebar.

rust let mut airbrake = airbrake::configure(|config| { config.project_id = "113743".to_owned(); config.project_key = "81bbff95d52f8856c770bb39e827f3f6".to_owned(); });

host

By default, it is set to https://airbrake.io. A host is a web address containing a scheme ("http" or "https"), a host and a port. You can omit the port (80 will be assumed).

rust let mut airbrake = airbrake::configure(|config| { config.host = "http://localhost:8080".to_owned(); });

workers

The number of threads that handle notice sending. The default value is 1.

rust let mut airbrake = airbrake::configure(|config| { config.workers = 5; });

proxy

If your server is not able to directly reach Airbrake, you can use proxy support. By default, Airbrake Rust uses direct connection. Note: proxy authentication is not supported yet.

rust let mut airbrake = airbrake::configure(|config| { config.proxy = "127.0.0.1:8080".to_owned(); });

app_version

The version of your application that you can pass to differentiate errors between multiple versions. It's not set by default.

rust let mut airbrake = airbrake::configure(|config| { config.app_version = "1.0.0".to_owned(); });

API

airbrake

airbrake.notify

Sends an error to Airbrake asynchronously. error must implement the std::error::Error trait. Returns ().

```rust let mut airbrake = airbrake::configure(|config| { config.projectid = "123".toowned(); config.projectkey = "321".toowned(); });

airbrake.notify(std::io::Error::lastoserror()); ```

airbrake.notify_sync

Sends an error to Airbrake synchronously. error must implement the std::error::Error trait. Returns rustc_serialize::json::Json. Accepts the same parameters as Airbrake.notify.

```rust let mut airbrake = airbrake::configure(|config| { config.projectid = "123".toowned(); config.projectkey = "321".toowned(); });

airbrake.notifysync(std::io::Error::lastos_error()); ```