https://github.com/adjust/airbrake-client-r
An R client for the Airbrake API
https://github.com/adjust/airbrake-client-r
Last synced: 5 months ago
JSON representation
An R client for the Airbrake API
- Host: GitHub
- URL: https://github.com/adjust/airbrake-client-r
- Owner: adjust
- Created: 2017-06-27T14:39:36.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-07T10:47:27.000Z (almost 8 years ago)
- Last Synced: 2024-08-13T07:13:42.151Z (8 months ago)
- Language: R
- Size: 2.93 KB
- Stars: 1
- Watchers: 13
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - adjust/airbrake-client-r - An R client for the Airbrake API (R)
README
### airbrakeR - R interface for notifying Airbrake on errors.
Running R dashboard apps, or reporting and other scripts might produce errors
that maintainers need to be notified about. Airbrake offers an API and this
client an interface to R for this API.### Usage
A typical usecase becomes clear from this example:
```R
library(airbrakeR)airbrake.config(project.id='123', project.key='key', host='https://errbit.abcd.com')
tryCatch({
# work ...
stop('Unexpected error occurred')
}, error=airbrake.notify)
```### Installation
You can install this from GitHub using `devtools` by:
```R
library(devtools)
devtools::install_github('adjust/airbrake-client-r');
```