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
But I can find workqueue_depth metric in other controller which developed by ourselves. The versions of controller-runtime are the same with karmada.
curl http://127.0.0.1:8891/metrics |grep -i queue
controller_runtime_reconcile_total{controller="deployment",result="requeue"} 0
0 15955 controller_runtime_reconcile_total{controller="deployment",result="requeue_after"} 12
0 15955 0 0 200k 0 --:--:-- --:--:-- --:--:-- 202k
# HELP workqueue_adds_total Total number of adds handled by workqueue
# TYPE workqueue_adds_total counter
workqueue_adds_total{name="deployment"} 998
# HELP workqueue_depth Current depth of workqueue
# TYPE workqueue_depth gauge
workqueue_depth{name="deployment"} 0
# HELP workqueue_longest_running_processor_seconds How many seconds has the longest running processor for workqueue been running.
# TYPE workqueue_longest_running_processor_seconds gauge
workqueue_longest_running_processor_seconds{name="deployment"} 0
# HELP workqueue_queue_duration_seconds How long in seconds an item stays in workqueue before being requested
# TYPE workqueue_queue_duration_seconds histogram
workqueue_queue_duration_seconds_bucket{name="deployment",le="1e-08"} 0
What do you think about this question?:
why karmada controller can't find metrics workqueue_depth
workqueue_depth is necessary to check whether there is congestion in the workqueue.
Environment:
Karmada version:
v1.11
Kubernetes version:
v1.23
Others:
sigs.k8s.io/controller-runtime v0.18.4
The text was updated successfully, but these errors were encountered:
Please provide an in-depth description of the question you have:
curl karmada metrics endpoint, like
curl http://127.0.0.1:10358/metrics
, can't found metricsworkqueue_depth
But I can find
workqueue_depth
metric in other controller which developed by ourselves. The versions of controller-runtime are the same with karmada.What do you think about this question?:
why karmada controller can't find metrics workqueue_depth
workqueue_depth is necessary to check whether there is congestion in the workqueue.
Environment:
v1.11
v1.23
sigs.k8s.io/controller-runtime v0.18.4
The text was updated successfully, but these errors were encountered: