rollbar-rs icon indicating copy to clipboard operation
rollbar-rs copied to clipboard

Track and report errors, exceptions and messages from your Rust application to Rollbar.

Results 8 rollbar-rs issues
Sort by recently updated
recently updated
newest added

I believe we're running into a manifestation of this panic in `hyper`: https://github.com/hyperium/hyper/issues/2112 See the following Rollbar payload: ```json { "body": { "trace": { "frames": [ { "lineno": 259, "filename":...

Currently the macro `report_panics!` works just fine, but it replaces the default `panic hook`. This causes a number of issues: 1. No feedback on the console once `rollbar` is enabled,...

This repo has not had what looks like any significant changes in 2 years, is it dead?

On this repository's Readme, there is a documentation link for https://roxasshadow.github.io/rollbar-rs. Upon clicking said link, we are redirected to https://www.giovannicapuano.net/rollbar-rs which doesn't appear to work at the moment. Is there...

Hi, Can we extend [this comment here](https://github.com/RoxasShadow/rollbar-rs/blob/master/examples/panic.rs#L18) on not joining the thread in the panic handler with an explanation as to why? without joining, I worry that any panic crashing...

Hey! I'm working on a project that uses "failure" for errors. Its `Error` type has backtraces pointing back to where the error originated. Is it possible for `report_error!` to use...

First, thank you for this library! Second, I have a bunch of contextual data I'd like to send in the report, but I don't see an any way to do...

You can add custom metadata to your reports by passing a Json object to the new method `with_metadata`. An improvement could consist in replacing the usage of the `json!` macro...