Failed to open the UI of zipkin #11116
-
|
Hi, I'm using SKYWALKING_RELEASE_VERSION=4.4.0
SKYWALKING_RELEASE_NAME=skywalking
SKYWALKING_RELEASE_NAMESPACE=monitoring
sudo helm install "${SKYWALKING_RELEASE_NAME}" \
oci://registry-1.docker.io/apache/skywalking-helm \
--version "${SKYWALKING_RELEASE_VERSION}" \
-n "${SKYWALKING_RELEASE_NAMESPACE}" \
--set oap.image.tag=9.5.0 \
--set oap.storageType=elasticsearch \
--set ui.image.tag=9.5.0 \
--set oap.env.SW_OTEL_RECEIVER=default \
--set oap.env.SW_RECEIVER_ZIPKIN=default \
--set oap.ports.zipkin=9411 \
--set oap.env.SW_OTEL_RECEIVER_ENABLED_OC_RULES="k8s-cluster\,k8s-node\,k8s-service"
After that I using port-forward to open the UI of skywalking and it works well. However, when I enter the page Is there any configuration problem leading to this failure? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
|
I think you need to set env var |
Beta Was this translation helpful? Give feedback.
-
|
The problem is fixed by adding - name: SW_OAP_ADDRESS
value: "http://{{ template "skywalking.oap.fullname" . }}:{{ .Values.oap.ports.rest }}"
- name: SW_ZIPKIN_ADDRESS
value: "http://{{ template "skywalking.oap.fullname" . }}:{{ .Values.oap.ports.zipkinui }}"and configure the port for querying zipkin with |
Beta Was this translation helpful? Give feedback.


The problem is fixed by adding
SW_ZIPKIN_ADDRESSenvironment variable in ui-deployment.yaml.and configure the port for querying zipkin with
--set oap.ports.zipkinui=9412. Now it works perfectly.