This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Download sentry data. | |
usage: | |
1. create auth token (https://sentry.io/settings/account/api/auth-tokens/). | |
2. make a directory for export if not exists. | |
$ mkdir data | |
3. fix event.timestamp (L27). | |
4. execute | |
$ python download_sentry_data.py <org>/<project> <auth_token> | |
5. a CSV file with a name formatted as "./data/issues_YYYYmmDDHHMMSS.csv" is created. | |
""" |