1

我刚遇到rollbar,想将它包含在我的 Python 项目中。

这是我被告知从网站实施滚动条的标准方式。

import rollbar

rollbar.init('KEY')
try:
    a = s
except:
    rollbar.report_exc_info()

有没有更好的方法来实现这一点而无需遍历我所有的try except块并将它们替换为rollbar.report_exc_info()

可以有一个装饰器实现吗?我当前的项目是一个为最终用户提供 API 的 Flask 应用程序。

4

1 回答 1

2

这是 Flask 应用程序中滚动条集成的示例。

https://github.com/rollbar/rollbar-flask-example/blob/master/hello.py

@app.before_first_request
def init_rollbar():
    """init rollbar module"""
    rollbar.init(
        # access token for the demo app: https://rollbar.com/demo
        'fc316ac1f7404dc28af26d5baed1416c',
        # environment name
        'flasktest',
        # server root directory, makes tracebacks prettier
        root=os.path.dirname(os.path.realpath(__file__)),
        # flask already sets up logging
        allow_logging_basic_config=False)

    # send exceptions from `app` to rollbar, using flask's signal system.
    got_request_exception.connect(rollbar.contrib.flask.report_exception, app)
于 2019-02-12T08:46:42.670 回答