-
Notifications
You must be signed in to change notification settings - Fork 82
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
Add support for tgi metricesfor vllm #1513
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Milind Waykole <[email protected]>
Quality Gate passedIssues Measures |
Robot Results
|
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.
Test currently does not validate TGI metrics' values, and I would suggest separating the testing of TGI and vLLM metrics in two different TCs for better visibility into their behaviour
@@ -89,7 +103,7 @@ Verify Vllm Metrics Are Present | |||
Set Suite Variable ${token} | |||
Metrics Should Exist In UserWorkloadMonitoring ${thanos_url} ${token} ${SEARCH_METRICS} | |||
|
|||
Verify Vllm Metrics Values Match Between UWM And Endpoint | |||
Verify Vllm And tgi Metrics Values Match Between UWM And Endpoint |
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.
This does not work - Line 98/112 fetches the metrics to test for by looking at those that start with vllm:
, so TGI metrics are not being tested at all here.
You will need to either change the logic of the Get Vllm Metrics And Values
in Helpers.py or develop an equivalent keyword for TGI metrics
Verify User Can Deploy A Model With Vllm Via CLI | ||
Verify User Can Deploy A Model With Vllm And tgi Via CLI | ||
[Documentation] Deploy a model (gpt2) using the vllm runtime and confirm that it's running | ||
[Tags] Tier1 Sanity Resources-GPU RHOAIENG-6264 VLLM | ||
${rc} ${out}= Run And Return Rc And Output oc apply -f ${DL_POD_FILEPATH} |
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.
This test is not using tgi to deploy the model, it's using vLLM, please revert the name of this TC
Verify Vllm And tgi Metrics Are Present | ||
[Documentation] Confirm vLLM and tgi metrics are exposed in OpenShift metrics |
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.
IMHO you should create a separate test to validate that TGI metrics are present - as far as I understand you've already encountered the issue where only vLLM ones would get exposed, so it'd be better to separate the two and have clear reporting on which ones (if any) are failing to get exposed.
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.
ack
No description provided.