├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── grafana ├── Dockerfile ├── dashboards └── openfaas-dash.json ├── datasources └── prometheus.json └── docker-entrypoint.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/faas-grafana/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/faas-grafana/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/faas-grafana/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/faas-grafana/HEAD/README.md -------------------------------------------------------------------------------- /grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/faas-grafana/HEAD/grafana/Dockerfile -------------------------------------------------------------------------------- /grafana/dashboards/openfaas-dash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/faas-grafana/HEAD/grafana/dashboards/openfaas-dash.json -------------------------------------------------------------------------------- /grafana/datasources/prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/faas-grafana/HEAD/grafana/datasources/prometheus.json -------------------------------------------------------------------------------- /grafana/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/faas-grafana/HEAD/grafana/docker-entrypoint.sh --------------------------------------------------------------------------------