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
What happened:
Currently inference extension request url := fmt.Sprintf("http://%s/metrics", existing.Address) for metrics, however, in the latest version, pod address is the pod ip and the port is not assigned to the url, so inference extension can not correctly scrape the pod metrics since it always send requests to port 80.
And also, the scrape time is refreshMetricsInterval = flag.Duration("refreshMetricsInterval", 50*time.Millisecond, "interval to refresh metrics via polling pods"). So once the metrics fail to be scraped, the resulting logs can become quite extensive.
What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
Environment:
Kubernetes version (use kubectl version):
Inference extension version (use git describe --tags --dirty --always):
Cloud provider or hardware configuration:
Install tools:
Others:
The text was updated successfully, but these errors were encountered:
What happened:
Currently inference extension request
url := fmt.Sprintf("http://%s/metrics", existing.Address)
for metrics, however, in the latest version, pod address is the pod ip and the port is not assigned to the url, so inference extension can not correctly scrape the pod metrics since it always send requests to port 80.And also, the scrape time is
refreshMetricsInterval = flag.Duration("refreshMetricsInterval", 50*time.Millisecond, "interval to refresh metrics via polling pods")
. So once the metrics fail to be scraped, the resulting logs can become quite extensive.What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
Environment:
kubectl version
):git describe --tags --dirty --always
):The text was updated successfully, but these errors were encountered: