Skip to content
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

expose "Normalized Time Per Output Token" (NTPOT) metric #643

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

kaushikmitr
Copy link
Contributor

@kaushikmitr kaushikmitr commented Apr 2, 2025

This pull request introduces a new metric to record the normalized time per output token (NTPOT) for inference models. The changes span across multiple files to implement this new metric and include updates to the metrics recording, registration, and testing.

New Metric Implementation:

  • pkg/epp/metrics/metrics.go: Added a new histogram metric NormalizedTimePerOutputToken to record the normalized time per output token for each model and target model.
  • pkg/epp/metrics/metrics.go: Implemented the RecordNormalizedTimePerOutputToken function to calculate and record the normalized time per output token.
  • pkg/epp/metrics/metrics.go: Registered the new NormalizedTimePerOutputToken metric.

Integration with Existing Code:

  • pkg/epp/handlers/server.go and pkg/epp/handlers/streamingserver.go: Added calls to RecordNormalizedTimePerOutputToken to record the metric when processing requests.

Testing:

Documentation:

Tested by creating the following visualization

Added NTPO Inference Gateway Metric Dashboard
Screenshot 2025-04-03 at 1 23 43 PM

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Apr 2, 2025
@k8s-ci-robot k8s-ci-robot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Apr 2, 2025
@k8s-ci-robot
Copy link
Contributor

Hi @kaushikmitr. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Apr 2, 2025
Copy link

netlify bot commented Apr 2, 2025

Deploy Preview for gateway-api-inference-extension ready!

Name Link
🔨 Latest commit ba36b6e
🔍 Latest deploy log https://app.netlify.com/sites/gateway-api-inference-extension/deploys/67eef23a6791b70008188919
😎 Deploy Preview https://deploy-preview-643--gateway-api-inference-extension.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@JeffLuoo
Copy link
Contributor

JeffLuoo commented Apr 2, 2025

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Apr 2, 2025
// RecordLatencyPerOutputToken (NTPOT) records the normalized time per output token.
func RecordLatencyPerOutputToken(ctx context.Context, modelName, targetModelName string, received time.Time, complete time.Time, outputTokenCount int) bool {
if !complete.After(received) {
log.FromContext(ctx).V(logutil.DEFAULT).Error(nil, "Request latency values are invalid for NTPOT calculation",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
log.FromContext(ctx).V(logutil.DEFAULT).Error(nil, "Request latency values are invalid for NTPOT calculation",
log.FromContext(ctx).Error(nil, "Request latency values are invalid for NTPOT calculation",

}

if outputTokenCount <= 0 {
log.FromContext(ctx).V(logutil.DEFAULT).Error(nil, "Output token count must be positive for NTPOT calculation",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
log.FromContext(ctx).V(logutil.DEFAULT).Error(nil, "Output token count must be positive for NTPOT calculation",
log.FromContext(ctx).Error(nil, "Output token count must be positive for NTPOT calculation",

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add this to server.go as well?

@liu-cong
Copy link
Contributor

liu-cong commented Apr 2, 2025

/lgtm
/approve

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 2, 2025
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: kaushikmitr, liu-cong
Once this PR has been reviewed and has the lgtm label, please assign arangogutierrez for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 3, 2025
@kaushikmitr
Copy link
Contributor Author

/retest

@liu-cong
Copy link
Contributor

liu-cong commented Apr 3, 2025

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 3, 2025
@JeffLuoo
Copy link
Contributor

JeffLuoo commented Apr 3, 2025

/lgtm

@ahg-g
Copy link
Contributor

ahg-g commented Apr 3, 2025

Regarding the metrics name, can we align it with vllm naming convention: https://github.com/vllm-project/vllm/blob/main/docs/source/design/v1/metrics.md?plain=1#L37

normalized_time_per_output_token

@k8s-ci-robot
Copy link
Contributor

New changes are detected. LGTM label has been removed.

@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 3, 2025
@kaushikmitr
Copy link
Contributor Author

updated metric name from ntpot to normalized time per output token

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants