Workflows Not Showing on temporal ui-server

Hi I am using docker-compose up with following configuration:-
version: “3.5”
services:
elasticsearch:
container_name: temporal-elasticsearch
environment:
- cluster.routing.allocation.disk.threshold_enabled=true
- cluster.routing.allocation.disk.watermark.low=512mb
- cluster.routing.allocation.disk.watermark.high=256mb
- cluster.routing.allocation.disk.watermark.flood_stage=128mb
- discovery.type=single-node
- ES_JAVA_OPTS=-Xms256m -Xmx256m
- xpack.security.enabled=false
image: elasticsearch:${ELASTICSEARCH_VERSION}
networks:
- temporal-network
expose:
- 5432
volumes:
- /var/lib/elasticsearch/data
postgresql:
container_name: temporal-postgresql
environment:
POSTGRES_PASSWORD: temporal
POSTGRES_USER: temporal
image: postgres:${POSTGRESQL_VERSION}
networks:
- temporal-network
expose:
- 5432
volumes:
- /var/lib/postgresql/data
temporal:
container_name: temporal
depends_on:
- postgresql
- elasticsearch
environment:
- DB=postgresql
- DB_PORT=5432
- POSTGRES_USER=temporal
- POSTGRES_PWD=temporal
- POSTGRES_SEEDS=postgresql
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development-sql.yaml
- ENABLE_ES=true
- ES_SEEDS=elasticsearch
- ES_VERSION=v7
image: 20ojc/auto-setup:3.0
networks:
- temporal-network
ports:
- 7233:7233
labels:
kompose.volume.type: configMap
volumes:
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
temporal-admin-tools:
container_name: temporal-admin-tools
depends_on:
- temporal
environment:
- TEMPORAL_CLI_ADDRESS=temporal:7233
image: 20ojc/admin-tools:3.0
networks:
- temporal-network
stdin_open: true
tty: true
temporal-ui:
container_name: temporal-ui
depends_on:
- temporal
environment:
- TEMPORAL_ADDRESS=temporal:7233
- TEMPORAL_CORS_ORIGINS=http://localhost:3000
image: 20ojc/ui:3.0
networks:
- temporal-network
ports:
- 8086:8086
networks:
temporal-network:
driver: bridge
name: temporal-network

but no workflow are shown on temporal ui-server

But if i try with admin tool terminal and run command(tctl --ns default wf describe -wid 39d0257a-5ee6-4677-9ed7-2d686d9f833b) with my workflowId generated i am able to see my running workflow details:-

1 Like

From admin-tools terminal after running command tctl " --ns default wf describe -wid 39d0257a-5ee6-4677-9ed7-2d686d9f833b" i am able to fetch my workflow but it is not showing on my temporal ui

This is my temporal ui-server configuration

@onkar Any findings on this issue? Facing similar issue with my deployment. I have not configured advancedVisibilityStore. Any insight will be helpful.

seeing very similar issue. @Srinivasan_Murugesan / @onkar - any chance you found the issue here?