You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3, I used python codes to count the requests per second to model.
sum by (app) (rate(rest_requests_total{app=~"tf-.*bm"}[60s]))
python codes:
c = Counter('{}_requests'.format("rest"), 'REST requests')
c.inc()
But the first two are about HALF of the third
Any idea why? Thanks
To reproduce
Expected behaviour
Environment
Kubernetes Version: [e.g. 1.15]
Cloud Provider: [e.g. GKE, AWS, Bare Metal, Kind, Minikube]
Deployed Seldon System Images: [Output of kubectl get --namespace seldon-system deploy seldon-controller-manager -o yaml | grep seldonio]
Kubernetes Cluster Version [Output of kubectl version]
Model Details
Images of your model: [Output of: kubectl get seldondeployment -n <yourmodelnamespace> <seldondepname> -o yaml | grep image: where <yourmodelnamespace>]
Logs of your model: [You can get the logs of your model by running kubectl logs -n <yourmodelnamespace> <seldonpodname> <container>]
The text was updated successfully, but these errors were encountered:
Describe the bug
I used the following three to get RPS:
1,
sum(rate(seldon_api_executor_client_requests_seconds_count{predictor_name=~"tf-rest.*"}[60s]))
2,
sum(rate(seldon_api_executor_server_requests_seconds_count{predictor_name=~"tf-rest.*"}[60s]))
3, I used python codes to count the requests per second to model.
sum by (app) (rate(rest_requests_total{app=~"tf-.*bm"}[60s]))
python codes:
But the first two are about HALF of the third
Any idea why? Thanks
To reproduce
Expected behaviour
Environment
kubectl get --namespace seldon-system deploy seldon-controller-manager -o yaml | grep seldonio
]kubectl version
]Model Details
kubectl get seldondeployment -n <yourmodelnamespace> <seldondepname> -o yaml | grep image:
where<yourmodelnamespace>
]kubectl logs -n <yourmodelnamespace> <seldonpodname> <container>
]The text was updated successfully, but these errors were encountered: