bugsnag-java icon indicating copy to clipboard operation
bugsnag-java copied to clipboard

BugSnag error reporting for Java.

Results 13 bugsnag-java issues
Sort by recently updated
recently updated
newest added

### Description My original problem is that I want the post body to be logged with each notification to Bugsnag. Since the Java library doesn't do this, I have to...

feature request
backlog

**Observation** I'm setting `bugsnag.setFilters("Authorization");` so that I can filter out a sensitive header. When using cURL -u username:password, I noticed the 'authorization' header was still present in the BugSnag dashboard....

bug
backlog

## Goal JAX-RS is a very popular API which is yet to be out-of-the-box supported by Bugsnag. ## Design The design very highly mimics the Java Servlet API Callback implementation....

feature request
backlog

### Describe the bug When an unhandled exception occurs, the Spring framework iterates through a list of exception handlers looking for someone to consume the unhandled exception. [This](https://github.com/spring-projects/spring-framework/blob/6fbd4841ec4a20cfd8c5338c6bcf0171839c2326/spring-webmvc/src/main/java/org/springframework/web/servlet/DispatcherServlet.java#L1299) is the...

bug
backlog

I just integrated Bugsnag into a Dropwizard application. In this application I have a mechanism in place to catch unhandled exceptions, log them, delegate to my own `ErrorReporter` interface, and...

feature request
scheduled

### Expected behavior Cookies are filtered from request headers metadata, as `Cookie` is included in the [default filters](https://github.com/bugsnag/bugsnag-java/blob/1c10f3ab65383523c2bb3ad8849c52877094e820/bugsnag/src/main/java/com/bugsnag/Configuration.java#L40). ### Observed behavior `Request` tab contains a `headers` map with `cookie` present....

awaiting feedback

# Goal `FilteredMap` is currently case-sensitive, making complete matching tedious. For example, to match the keys `password`, `USER_PASSWORD`, and `adminPassword` would require three separate filters, `password`, `PASSWORD`, and `Password`. Filtering...

awaiting feedback

I'd like to use Bugsnag with custom reports that may include some objects in the tabs. It's pretty close with the current API, but the `Serializer` is too restrictive: ```...

feature request
needs discussion

### Expected behavior When throwing an exception from a Controller/RestController that is annotated with `@ResponseStatus` with an HTTP status code in the 4xx range, the exception should be reported to...