From 9cdf476863dd686fa928dfb8a99825a9fd6776fe Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 10 Jan 2020 12:40:46 -0800 Subject: add missing sentry/raven tags Good to have exceptions tracked and stored even for commands run from the command line. But in particular the importer runs as a kafka worker and should be tracking excpetions. --- python/fatcat_ingest.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'python/fatcat_ingest.py') diff --git a/python/fatcat_ingest.py b/python/fatcat_ingest.py index 9f0bf22e..0df4674e 100755 --- a/python/fatcat_ingest.py +++ b/python/fatcat_ingest.py @@ -9,11 +9,16 @@ import sys import json import argparse from collections import Counter +import raven +import elasticsearch +from elasticsearch_dsl import Search from fatcat_tools import public_api, simple_kafka_producer, kafka_fail_fast from fatcat_tools.transforms import release_ingest_request -import elasticsearch -from elasticsearch_dsl import Search + + +# Yep, a global. Gets DSN from `SENTRY_DSN` environment variable +sentry_client = raven.Client() def run_ingest_container(args): -- cgit v1.2.3