A good OpenFaaS dashboard is available on the Grafana platform. To make Grafana work with OpenFaaS, the Grafana server must be on the same network. We can use the following command to run a Grafana server via docker service create outside the OpenFaaS stack. It links to the OpenFaaS stack via the --network=func_functions argument:
$ docker service create --name=grafana \ --network=func_functions \ -p 3000:3000 grafana/grafana
Alternatively, open the dashboard at http://localhost:3000. Log in using the username admin and password admin:
A data source has to be created and pointed to ...