-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[serve] Improve access log messages #48819
Merged
edoakes
merged 17 commits into
ray-project:master
from
edoakes:eoakes/better-access-log
Nov 21, 2024
Merged
[serve] Improve access log messages #48819
edoakes
merged 17 commits into
ray-project:master
from
edoakes:eoakes/better-access-log
Nov 21, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…es/better-access-log
Signed-off-by: Edward Oakes <ed.nmi.oakes@gmail.com>
Signed-off-by: Edward Oakes <ed.nmi.oakes@gmail.com>
…es/better-access-log
…es/better-access-log
GeneDer
approved these changes
Nov 20, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
…es/better-access-log
…es/better-access-log
zcin
approved these changes
Nov 21, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
overall lgtm!
jecsand838
pushed a commit
to jecsand838/ray
that referenced
this pull request
Dec 4, 2024
## Why are these changes needed? Improves the Serve access log to include HTTP status information on the replica and better resemble standard log formats like `uvicorn`. I'm updated the log format to: - Include the HTTP method, route and status code for HTTP requests like: "GET / 200". - Use "CALL", the method name, and "OK"/"ERROR" for `DeploymentHandle` calls like: "CALL method_name OK". - Stop logging the `route` information on every message and isolate it to the access log message instead. This adds clutter and it can be tied to the access log message using the request ID. - Stop logging the filename and line number in every log message. This has been on my TODO list for awhile after internal discussion. ### Examples Calling a handle method: ``` INFO 2024-11-20 13:51:44,803 default_D lswbv98w d0cadb74-9fd8-4a68-9e9a-c9ed20b091f4 -- CALL method OK 1.3ms ``` Calling a basic HTTP route: ``` INFO 2024-11-20 13:53:00,197 default_A zosusx8c 26891433-a91a-4d27-b543-0936feb5f5c1 -- GET / 200 4.1ms ``` Calling a wildcard HTTP route (and non-200 status code): ``` INFO 2024-11-20 13:53:58,102 default_A iovmsu5e 85000f14-8e31-42a5-a1f4-0fa2d39c549a -- GET /{wildcard} 422 3.7ms ``` --------- Signed-off-by: Edward Oakes <ed.nmi.oakes@gmail.com> Signed-off-by: Connor Sanders <connor@elastiflow.com>
dentiny
pushed a commit
to dentiny/ray
that referenced
this pull request
Dec 7, 2024
## Why are these changes needed? Improves the Serve access log to include HTTP status information on the replica and better resemble standard log formats like `uvicorn`. I'm updated the log format to: - Include the HTTP method, route and status code for HTTP requests like: "GET / 200". - Use "CALL", the method name, and "OK"/"ERROR" for `DeploymentHandle` calls like: "CALL method_name OK". - Stop logging the `route` information on every message and isolate it to the access log message instead. This adds clutter and it can be tied to the access log message using the request ID. - Stop logging the filename and line number in every log message. This has been on my TODO list for awhile after internal discussion. ### Examples Calling a handle method: ``` INFO 2024-11-20 13:51:44,803 default_D lswbv98w d0cadb74-9fd8-4a68-9e9a-c9ed20b091f4 -- CALL method OK 1.3ms ``` Calling a basic HTTP route: ``` INFO 2024-11-20 13:53:00,197 default_A zosusx8c 26891433-a91a-4d27-b543-0936feb5f5c1 -- GET / 200 4.1ms ``` Calling a wildcard HTTP route (and non-200 status code): ``` INFO 2024-11-20 13:53:58,102 default_A iovmsu5e 85000f14-8e31-42a5-a1f4-0fa2d39c549a -- GET /{wildcard} 422 3.7ms ``` --------- Signed-off-by: Edward Oakes <ed.nmi.oakes@gmail.com> Signed-off-by: hjiang <dentinyhao@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Why are these changes needed?
Improves the Serve access log to include HTTP status information on the replica and better resemble standard log formats like
uvicorn
.I'm updated the log format to:
DeploymentHandle
calls like: "CALL method_name OK".route
information on every message and isolate it to the access log message instead. This adds clutter and it can be tied to the access log message using the request ID.Examples
Calling a handle method:
Calling a basic HTTP route:
Calling a wildcard HTTP route (and non-200 status code):
Related issue number
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.