-
Hello ! Now that I have validated linkerd usage using command line interface install, which is terribly efficient, I test the deployment into a traditional cluster which has an already installed prometheus/grafana stack, and which uses a private PKI (cert-manager). So I move the install to The mesh result is working fine. The Basically, all the network metrics are just absent. But when I navigate to the metrics of a specific deployment, I see the live calls metrics generated (top like). I guess there is a problem with my prometheus binding, but I cannot see how to debug this:
control-plane deployment: helm install linkerd-control-plane -n linkerd \
--set-file identityTrustAnchorsPEM=ca.crt \
--set identity.issuer.scheme=kubernetes.io/tls \
--set prometheus.enabled=false \
--set prometheusUrl=http://prometheus-server.monitoring \
--set proxyInit.runAsRoot=true \
--version 1.9.4 \
linkerd/linkerd-control-plane viz values: prometheus:
enabled: false
prometheusUrl: "http://prometheus-server.monitoring" Finally, a proxy sidecar log:
What could I check to understand what is going wrong ? All the checks from linkerd say everything is fine but… Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
By the way, querying |
Beta Was this translation helpful? Give feedback.
-
I have checked the linkerd scrape configuration. Everything seems fine. Prometheus even indicates the scrape configuration is OK: |
Beta Was this translation helpful? Give feedback.
-
kubectl:
linkerd version
|
Beta Was this translation helpful? Give feedback.
-
Therefore, I try to look where the metrics are. Using For instance, I cannot find Few lines from diagnostic that are not present in prometheus (when I search
|
Beta Was this translation helpful? Give feedback.
-
After discussion on Slack, I move this discussion to issue |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Resolved: I missed a gotemplate replacement in the prometheus scrape configuration for linkerd-proxy: |
Beta Was this translation helpful? Give feedback.
Resolved: I missed a gotemplate replacement in the prometheus scrape configuration for linkerd-proxy:
#10086 (comment)