Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fiftin/vpsbenchmarker
Cloud VPS benchmarking tool
https://github.com/fiftin/vpsbenchmarker
automation-test benchmark-scripts benchmarking cloud cloud-computing digitalocean hetzner hetzner-cloud typescript
Last synced: 17 days ago
JSON representation
Cloud VPS benchmarking tool
- Host: GitHub
- URL: https://github.com/fiftin/vpsbenchmarker
- Owner: fiftin
- License: gpl-3.0
- Created: 2018-05-05T17:37:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T18:05:29.000Z (almost 2 years ago)
- Last Synced: 2024-04-22T00:19:20.375Z (7 months ago)
- Topics: automation-test, benchmark-scripts, benchmarking, cloud, cloud-computing, digitalocean, hetzner, hetzner-cloud, typescript
- Language: TypeScript
- Homepage: https://cloudbench.fastlix.com
- Size: 539 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## VPS Benchmarker
![Logo](https://raw.githubusercontent.com/fiftin/vpsbenchmarker/master/logo-100.png)Tool for benchmarking VPS servers with using API of cloud providers.
### How it works
* It creates virtual server with using cloud service API.
* It connects to server over SSH and runs benchmarks.
* It terminates server with using cloud service API.
* It stores results to [fastlix.com](https://fastlix.com). Can be customized by you.### Supported services
* [Hetzner](https://hetzner.cloud)
* [Linode](https://linode.com)
* [DigitalOcean](https://digitalocean.com)
* [Amazon Lightsail](https://lightsail.aws.amazon.com)
* [Vultr](https://vultr.com)### Supported benchmarking tools
* [sysbench](https://github.com/akopytov/sysbench) — Scriptable database and system performance benchmark.
* iperf3 — Tool for testing of network bandwidth.### How to use
```npm run start --provider=hetzner --server=test```
### Configuration
Configuration reads from ```config.json```. Example of configuration you can find in [config-example.json](config-example.json).
Config contains 3 root sections:
* ```benchmarks```
* ```storage```
* ```providers```Below for details of each.
#### ```benchmarks```
Example of benchmark 1 core CPU with using tool [sysbench](https://github.com/akopytov/sysbench):
```json
{
"benchmarks": {
"sysbench-cpu-1core": {
"type": "sysbench",
"test": "cpu",
"threads": 1,
"max-requests": -1,
"max-time": 300
}
}
}
```Each benchmark has unique name (`sysbench-cpu-1core`). It uses to link from other sections of configuration.
`type` specifies witch type of benchmark should be used. Available next types:
* `sysbench` — benchmarking CPU, memory, disk with using [sysbench](https://github.com/akopytov/sysbench) tool.
You can use any options of sysbench in for this benchmark. For example option `test` can be:
- `cpu` — CPU benchmark.
Additional options:
`threads` — Number of threads.
- `memory` — I/O benchmark.
Additional options:
`size` — Space in gigabytes should be used for benchmarking.
* `iperf3` — benchmark network bandwidth with using tool iperf3.
* `cpuinfo` — getting info about CPU from `/proc/cpuinfo`.
* `meminfo` — getting info about memory from `/proc/meminfo`.#### ```storage```
Where you can store results of benchmarking. Now supported only mydataspace.net / web20.site storage.
Example:
```json
"storage": {
"type": "MdsStorage",
"clientId": "***",
"accessToken": "***",
"root": "cloudbench",
"path": "results",
"groupedResultsPath": "grouped-results"
}
```#### ```providers```
Contains configurations for access to cloud providers API.
Example:
```json
"providers": {
"digitalocean": {
"name": "DigitalOcean",
"settings": {
"apiToken": "***",
"sshKey": "234234",
"privateKey": "C:\\Users\\john\\.ssh\\id_rsa"
},
"servers": {
"digitalocean-512mb-nyc1": {
"name": "512mb-nyc1",
"type": "512mb",
"image": "ubuntu-16-04-x64",
"location": "nyc3"
},
}
}
}
```### Where I can see results?
We use this tool on [cloudbench.io](https://cloudbench.io). We collect cloud plan specifications, thoroughly test their performance and provide screening and comparison tools to make cloud search easy and fun.
Our blog with last news of cloud computing industry: [https://cloudbench.io/blog/en](https://cloudbench.io/blog/en).