https://github.com/prashanth-sams/docker-sitespeedio
Dockerize sitespeed.io performance tests
https://github.com/prashanth-sams/docker-sitespeedio
performance-analysis performance-metrics performance-monitoring performance-testing performance-visualization sitespeedio
Last synced: 6 months ago
JSON representation
Dockerize sitespeed.io performance tests
- Host: GitHub
- URL: https://github.com/prashanth-sams/docker-sitespeedio
- Owner: prashanth-sams
- Created: 2019-06-09T08:56:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-11T07:21:12.000Z (over 6 years ago)
- Last Synced: 2025-05-31T21:50:27.705Z (9 months ago)
- Topics: performance-analysis, performance-metrics, performance-monitoring, performance-testing, performance-visualization, sitespeedio
- Language: JavaScript
- Size: 1.95 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sitespeed.io for performance
### Multi URLs
- multi url support
- JSON feed for budgets
- Text as datasource
- JavaScript as datasource
- custom output path
> Text as datasource
```
docker-compose run sitespeed.io --graphite.host=graphite urls.txt --budget.configPath budget.json --outputFolder sitespeed-result/yourfolder/$(date +%Y-%m-%d-%H-%M-%S)
```
> JavaScript as datasource
```
docker-compose run sitespeed.io --graphite.host=graphite --multi load_url.js --budget.configPath budget.json
```
### Single URL
> JSON feed
```
docker-compose run sitespeed.io https://www.yourwebsite.com --graphite.host=graphite --budget.configPath budget.json
```
> Manual feed
```
docker-compose run sitespeed.io https://www.yourwebsite.com --graphite.host=graphite --budget.config '{ "budget": { "timings": { "SpeedIndex":1000 } } }'
```