-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathflask_sample_app.py
46 lines (33 loc) · 1.36 KB
/
flask_sample_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import logging
import sys
import flask
import json_logging
app = flask.Flask(__name__)
json_logging.init_flask(enable_json=True)
json_logging.init_request_instrument(app, exclude_url_patterns=[r'/exclude_from_request_instrumentation'])
# init the logger as usual
logger = logging.getLogger("test logger")
logger.setLevel(logging.DEBUG)
logger.addHandler(logging.StreamHandler(sys.stdout))
@app.route('/')
def home():
logger.info("test log statement")
logger.info("test log statement with extra props", extra={'props': {"extra_property": 'extra_value'}})
logger.info("test log statement with custom correlation id",
extra={'props': {'correlation_id': 'custom_correlation_id'}})
correlation_id = json_logging.get_correlation_id()
return "hello world" \
"\ncorrelation_id : " + correlation_id
@app.route('/exception')
def exception():
try:
raise RuntimeError
except BaseException as e:
logger.error("Error occurred", exc_info=e)
logger.exception("Error occurred", exc_info=e)
return "Error occurred, check log for detail"
@app.route('/exclude_from_request_instrumentation')
def exclude_from_request_instrumentation():
return "this request wont log request instrumentation information"
if __name__ == "__main__":
app.run(host='0.0.0.0', port=int(5000), use_reloader=False)