Skip to content

Commit b054ecb

Browse files
committed
Add sentry support
1 parent 5525b55 commit b054ecb

File tree

5 files changed

+27
-1
lines changed

5 files changed

+27
-1
lines changed

INSTALL.md

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ password while processing the files.
109109

110110
See https://wiki.postgresql.org/wiki/Pgpass for more info.
111111

112+
You may use `SENTRY_DSN` environment variable to enable error report centralization.
112113

113114
Run Tests
114115
---------

docker/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ To build the docker image run this command from the docker folder:
2323
docker-compose build
2424
```
2525

26+
For production setup, you may fill the `SENTRY_DSN` field in
27+
`docker-compose.yml` to enable error report centralization.
2628

2729
Running on a single country
2830
===========================

docker/docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ services:
4040
environment:
4141
- DB_HOST=postgis
4242
- JUPYTER_RUNTIME_DIR=/tmp
43+
#- SENTRY_DSN=
4344
user: "1000:1000"
4445
command: ./osmose_run.py --country=monaco --analyser=osmosis_highway_floating_islands
4546
networks:

osmose_run.py

+22-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040
import dateutil.parser
4141
import requests
4242

43+
try:
44+
import sentry_sdk
45+
except:
46+
pass
47+
4348
###########################################################################
4449

4550
def get_version():
@@ -205,6 +210,9 @@ def execc(conf, logger, analysers, options, osmosis_manager):
205210
lunched_analyser_resume = []
206211

207212
for analyser in analysers:
213+
if os.getenv('SENTRY_DSN'):
214+
sentry_sdk.set_tag('analyser', analyser)
215+
208216
if not options.analyser and analyser not in conf.analyser:
209217
continue
210218

@@ -319,14 +327,19 @@ def execc(conf, logger, analysers, options, osmosis_manager):
319327
if not update_finished:
320328
err_code |= 1
321329

322-
except:
330+
except Exception as e:
323331
tb = traceback.format_exc()
324332
logger.sub().err("error on analyse {0}...".format(analyser))
325333
for l in tb.splitlines():
326334
logger.sub().sub().log(l)
327335
err_code |= 2
336+
if os.getenv('SENTRY_DSN'):
337+
sentry_sdk.capture_exception(e)
328338
continue
329339

340+
if os.getenv('SENTRY_DSN'):
341+
sentry_sdk.set_tag('analyser', None)
342+
330343
if not options.no_clean:
331344
for (obj, analyser_conf) in lunched_analyser:
332345
analyser_conf.error_file = None
@@ -426,6 +439,9 @@ def main(options):
426439

427440
logger.log("osmose backend version: %s" % get_version())
428441

442+
if os.getenv('SENTRY_DSN'):
443+
sentry_sdk.init(dsn=os.getenv('SENTRY_DSN'), traces_sample_rate=1.0, release=get_version())
444+
429445
old_path = list(sys.path)
430446
sys.path.insert(0, analysers_path)
431447

@@ -459,6 +475,8 @@ def main(options):
459475

460476
for country in options.country:
461477
country_conf = config.config[country]
478+
if os.getenv('SENTRY_DSN'):
479+
sentry_sdk.set_tag('country', country)
462480

463481
# acquire lock
464482
try:
@@ -487,6 +505,9 @@ def main(options):
487505
# free lock
488506
del lock
489507

508+
if os.getenv('SENTRY_DSN'):
509+
sentry_sdk.set_tag('country', None)
510+
490511
logger.log(logger.log_av_green+u"end of analyses"+logger.log_ap)
491512
return err_code
492513

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ git+https://github.com/jocelynj/PyEasyArchive.git
1414
protobuf < 4 # 4.x binary not yet compatible with system package, deps of vt2geojson
1515
vt2geojson
1616
tiletanic
17+
sentry-sdk
1718

1819
# Tests
1920
pytest

0 commit comments

Comments
 (0)