Note:
Documentation:
| -? | --help | show this help statement |
| --version | show version statement | |
| -v | --verbose | be verbose |
| -q | --quit | be quiet |
| -t | --timeout N | timeout after N seconds |
| --backoff N | wait factor of N microseconds before work starts | |
| -c | --cpu | spawn N workers spinning sqrt() |
| -i | --io N | spawn N workers spinning on sync() |
| -m | --vm B | spawn N workers spinning on malloc()/free() |
| --vm-bytes B | malloc B bytes per vm worker (default is 256MB) | |
| --vm-stride B | touch a byte every B bytes (default is 4096) | |
| --vm-hang N | sleep N secs before free (default is none, 0 is inf) | |
| --vm-keep | redirty memory instead of freeing and reallocating | |
| -d | --hdd N | spawn N workers spinning on write()/unlink() |
| --hdd-bytes B | write B bytes per hdd worker (default is 1GB) | |
| --hdd-noclean | do not unlink files created by hdd workers |
Example in a Docker comand:
| AMD | docker run -ti --rm wagopfc/stress:3.0.0 stress -c 1 -m 1 -t 5 --verbose |
| ARM | docker run -ti --rm wagopfc/stress:2.0.0 stress -c 1 -m 1 -t 5 --verbose |
10 Worker running to CPU: -c 10
5 Worker running to RAM: -m 5
5 Worker running I/O’s: -i 5
10 Worker srunning to HDD: -d 10
100 Sec. are working, then end the test: -t 100
Use HTOP to monitore the CPU Load.
Content type
Image
Digest
Size
44 MB
Last updated
almost 6 years ago
docker pull wagopfc/stress:2.0.0