├── .gitignore ├── Dockerfile ├── README.md ├── dashboards ├── graphite │ ├── ChromeUserExperienceReport.json │ ├── Leaderboard.json │ ├── PageMetrics.json │ ├── Plus1.json │ ├── WebPageTest.json │ ├── Welcome.json │ ├── WikipediaLogin.json │ ├── WikipediaRabbitHole.json │ └── WikipediaRabbitHoleMobile.json └── influxdb │ └── pageSummary.json ├── datasources └── graphite │ └── graphite.json └── entrypoint.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | *.iml 4 | .vscode -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/README.md -------------------------------------------------------------------------------- /dashboards/graphite/ChromeUserExperienceReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/ChromeUserExperienceReport.json -------------------------------------------------------------------------------- /dashboards/graphite/Leaderboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/Leaderboard.json -------------------------------------------------------------------------------- /dashboards/graphite/PageMetrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/PageMetrics.json -------------------------------------------------------------------------------- /dashboards/graphite/Plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/Plus1.json -------------------------------------------------------------------------------- /dashboards/graphite/WebPageTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/WebPageTest.json -------------------------------------------------------------------------------- /dashboards/graphite/Welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/Welcome.json -------------------------------------------------------------------------------- /dashboards/graphite/WikipediaLogin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/WikipediaLogin.json -------------------------------------------------------------------------------- /dashboards/graphite/WikipediaRabbitHole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/WikipediaRabbitHole.json -------------------------------------------------------------------------------- /dashboards/graphite/WikipediaRabbitHoleMobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/graphite/WikipediaRabbitHoleMobile.json -------------------------------------------------------------------------------- /dashboards/influxdb/pageSummary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/dashboards/influxdb/pageSummary.json -------------------------------------------------------------------------------- /datasources/graphite/graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/datasources/graphite/graphite.json -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitespeedio/grafana-bootstrap-docker/HEAD/entrypoint.sh --------------------------------------------------------------------------------