TP600 browser and Grafana dashboards not working

Is it possible to get grafana dashboards working through the TP600 browser? Seems like grafana don´t like the browser in the panel. I try accessing grafana directly using http (not https) over port 3000.

If you’re seeing this Grafana has failed to load its application files

1. This could be caused by your reverse proxy settings.

2. If you host grafana under subpath make sure your grafana.ini root_url setting includes subpath. If not using a reverse proxy make sure to set serve_from_sub_path to true.

3. IF you have a local dev build make sure you build frontend using: yarn start, yarn start:hot, or yarn build

4. Sometimes restarting grafana-serve can help

5. Check if you are using a non-supported browser. For more information, refer to the list of supported browsers.

Thomas, I’ve encountered this issue before. I believe this stems from certain grafana docker images not being compatible with an armV7 processor.

Use the following docker image and let me know if that works out:

docker run -d --name=grafana -p 3000:3000 grafana/grafana:5.4.3

1 Like

Thanks, will test and report back.

Thomas, I may have misspoke as I see the latest docker containers supporting the Arm V7 processor.

image

Do you have think you can try running a new container with the --network=host flag? Maybe it’s an issue with the port not being properly forwarded.

docker run -d --name=grafana --network=host grafana/grafana:latest

It works perfectly on other devices but just not the TP600 panels (tried on two panels). So I guess the internal browser isn´t compatible with newer versions of Grafana.

Hi Thomas, Just curious if any of the commands helped when accessing the grafana GUI on the TP600?

Seems like Grafana 7.x works OK. Will try 8.x as well but I think there was a major update from 7 to 8 so not sure if it will work.

Grafana 7.5.x is the latest version working on the internal TP600 browser.
Version 8 and 9 fails so I guess the browser support breaks.

Gonna use 7.5 for now :point_left:

1 Like