Dashboard Has No Data

When I initially set everything up the dashboard was working as expected but now it only shows this.


and none of the status pages have any information either.

Not sure what's going on.
I'm running Traefik from the Truecharts repo for TrueNAS Scale
App Version: 2.10.7
Chart Version: 25.1.17

I know it's not a ton of information to go off of and I'd be happy to share whatever information is needed.

Thanks.

Dashboard runs at /dashboard/ and the router rule needs to be configured for /api/, too, to get data (doc):

# Dynamic Configuration
labels:
  - "traefik.http.routers.dashboard.rule=Host(`traefik.example.com`) && (PathPrefix(`/api`) || PathPrefix(`/dashboard`))"
  - "traefik.http.routers.dashboard.service=api@internal"
  - "traefik.http.routers.dashboard.middlewares=auth"
  - "traefik.http.middlewares.auth.basicauth.users=test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/,test2:$$apr1$$d9hr9HBB$$4HxwgUir3HP4EsggP/QNo0"

Wow. Sometimes I'm just dumb. Got everything working now. Thanks.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.