Accessing Temporal dashboard and setting up Grafana with abctl

Summary

User is inquiring about accessing Temporal dashboard and setting up Grafana to view metrics data using abctl.


Question

Hello!
Using abctl , did anyone manage to access the Temporal dashboard or set up Grafana to view metrics data on Temporal Service?



This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.

Join the conversation on Slack

["abctl", "temporal-dashboard", "grafana", "metrics-data", "temporal-service"]

Using abctl you probably need to customize the values.yaml and expose ports + add temporal-ui service

Probably better run a different Helm/k8s

Thanks! I’ll take a look at it.

Out of curiosity, I checked how to make temporal-ui work

In values.yaml I added

  enabled: true```
then I run `abctl local install --values values.yaml ...`

Later I changed deployment because of wrong `TEMPORAL_ADDRESS`

`kubectl edit deployment airbyte-abctl-temporal-ui`
```        - name: TEMPORAL_ADDRESS
          value: airbyte-abctl-temporal:7233```
and last thing -- port forwarding
`kubectl port-forward airbyte-abctl-temporal-ui-... 8080:8080`