An open API service indexing awesome lists of open source software.

https://github.com/levkk/scrape-rollbar

Get rollbars from Rollbar.com and put them into a Postgres database for analysis
https://github.com/levkk/scrape-rollbar

python3 rollbar rollbar-api scraper

Last synced: 10 months ago
JSON representation

Get rollbars from Rollbar.com and put them into a Postgres database for analysis

Awesome Lists containing this project

README

          

# Rollbar scraper

This is a simple script to scrape Rollbars from your project at Rollbar.com
and put them into a Postgres DB for querying.

## Why
RQL is kind of slow :(

## Installation
```bash
$ virutalenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
```

## Usage
```bash
# Set the Rollbar project access token
$ export ROLLBAR_TOKEN=

# Scrape
$ python scrape_rollbar.py

# Query
$ psql rollbars -c 'SELECT * FROM rollbars LIMIT 1;'
```