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
- Host: GitHub
- URL: https://github.com/levkk/scrape-rollbar
- Owner: levkk
- License: mit
- Created: 2019-06-15T22:21:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T05:15:46.000Z (over 3 years ago)
- Last Synced: 2025-03-16T14:54:06.567Z (over 1 year ago)
- Topics: python3, rollbar, rollbar-api, scraper
- Language: Python
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;'
```