Log request_id for each api call
Blueprint [1] is up for review in the last Mitaka release cycle which returns request_id back to the caller as per design proposed in the cross-project specs [2]. Now, in step 2, we would like to log x-openstack-
Following log message will be logged in debug logging level.
LOG.debug(
"used request_id '%(response_
{"method": resp.request.
"my_
"my_url": resp.url, "response_
method: HTTP request method (GET/POST/
my_service_name: Name of service processing the request (glance or
my_url: Request URL with endpoint
response_
The log messages logged by the log handlers would be dependant on how the root loggers are configured.
1. python-glanceclient used as a shell command:
In this case, the root loggers will be configured in the client itself. So if --debug flag is passed in the command, then following log message will be shown on console:-
DEBUG:glancecli
Nothing will be logged on console if --debug flag is not set.
2. python-glanceclient is used in applications (e.g. Nova)
In this case, when Nova calls apis of Glance service using python-
DEBUG glanceclient.
In the above log message, you will see both nova (callee) and glance (caller) request_ids are logged in the same log message. This is because, the root loggers are configured in Nova and the same will be used by the client as well. Since nova uses oslo.log library, it internally logs request_id using ContextFormatter configured in the "formatter_context" section of the nova configuration file.
References:
[1] https:/
[2] http://
Mailing List discussion:
http://
Blueprint information
- Status:
- Not started
- Approver:
- Nikhil Komawar
- Priority:
- Undefined
- Drafter:
- Abhishek Kekane
- Direction:
- Needs approval
- Assignee:
- Abhishek Kekane
- Definition:
- New
- Series goal:
- None
- Implementation:
- Unknown
- Milestone target:
- None
- Started by
- Completed by
Related branches
Related bugs
Sprints
Whiteboard
Gerrit topic: https:/
Addressed by: https:/
Log request-id for each api call