{"id":19121651,"url":"https://github.com/netzulo/qaiops","last_synced_at":"2026-06-20T15:31:27.079Z","repository":{"id":179152626,"uuid":"135304535","full_name":"netzulo/qaiops","owner":"netzulo","description":"Measuring Disk IO Performance using python script","archived":false,"fork":false,"pushed_at":"2018-05-29T15:23:04.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-19T12:59:58.194Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/netzulo.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-05-29T13:59:56.000Z","updated_at":"2018-05-29T15:23:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"9b8590f1-5292-49c7-a1e3-03bccfa3b137","html_url":"https://github.com/netzulo/qaiops","commit_stats":null,"previous_names":["netzulo/qaiops"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/netzulo/qaiops","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fqaiops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fqaiops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fqaiops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fqaiops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netzulo","download_url":"https://codeload.github.com/netzulo/qaiops/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fqaiops/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34576041,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T05:18:02.850Z","updated_at":"2026-06-20T15:31:26.035Z","avatar_url":"https://github.com/netzulo.png","language":"Python","funding_links":["https://opencollective.com/qaiops"],"categories":[],"sub_categories":[],"readme":"QAiops ( *Measuring Disk IO Performance* ) \r\n==========================================\r\n\r\n.. image:: https://img.shields.io/github/issues/netzulo/qaiops.svg\r\n  :alt: Issues on Github\r\n  :target: https://github.com/netzulo/qaiops/issues\r\n\r\n.. image:: https://img.shields.io/github/issues-pr/netzulo/qaiops.svg\r\n  :alt: Pull Request opened on Github\r\n  :target: https://github.com/netzulo/qaiops/issues\r\n\r\n.. image:: https://img.shields.io/github/release/netzulo/qaiops.svg\r\n  :alt: Release version on Github\r\n  :target: https://github.com/netzulo/qaiops/releases/latest\r\n\r\n.. image:: https://img.shields.io/github/release-date/netzulo/qaiops.svg\r\n  :alt: Release date on Github\r\n  :target: https://github.com/netzulo/qaiops/releases/latest\r\n\r\n\r\nqaiops is an IO benchmark tool that performs random reads on block devices.\r\nIf an exact block size is not specified using -b, the the size starts with\r\nthe physical sector size (defaulting to 4k) and doubles every iteration of\r\nthe loop. You can switch the read pattern using -p toggle.\r\n\r\n\r\nHow to install ?\r\n----------------\r\n\r\n+ 1. Preinstall **qautils** : ``pip install qautils``\r\n+ 2. Install from setup.py file : ``python setup.py install``\r\n\r\n\r\nHow to exec tests ?\r\n-------------------\r\n\r\n+ 1. Tests from setup.py file : ``python setup.py test``\r\n\r\n\r\nUsage guide\r\n~~~~~~~~~~~\r\n\r\n::\r\n\r\n    iops [-n|--num-threads threads] [-t|--time time] [-m|--machine-readable]\r\n         [-b|--block-size size] [-p|--pattern random|sequential] \u003cdevice\u003e\r\n    \r\n    num-threads         := number of concurrent io threads, default 32\r\n    time                := time in seconds, default 2\r\n    machine-readable    := used to switch off conversion into MiB and other SI units\r\n    block-size          := block size (should be a multiple of 512)\r\n    pattern             := random|sequential\r\n    device              := some block device, like /dev/sda or \\\\\\\\.\\\\PhysicalDrive0\r\n\r\n\r\n\r\nSome examples of usage\r\n^^^^^^^^^^^^^^^^^^^^^^\r\n\r\n+ ``$ iops /dev/sda``\r\n+ ``$ iops /dev/vda``\r\n+ ``$ iops --num-threads 8 --time 2 /dev/disk0``\r\n+ ``$ iops --time 10 --num-threads 1 --block-size 16768 --pattern sequential /dev/disk0``\r\n\r\n\r\nContributing\r\n~~~~~~~~~~~~\r\n\r\nWe welcome contributions to **qaiops**! These are the many ways you can help:\r\n\r\n* Submit patches and features\r\n* Make **qaiops** ( *new updates to improve main library* )\r\n* Improve the Documentation at github-pages_\r\n* Report bugs \r\n* And Donate_ !\r\n\r\nPlease read our **documentation** to get started. Also note that this project\r\nis released with a code-of-conduct_ , please make sure to review and follow it.\r\n\r\n\r\n.. _github-pages: https://netzulo.github.io/qaiops\r\n.. _Donate: https://opencollective.com/qaiops\r\n.. _code-of-conduct: https://github.com/netzulo/qalab/blob/master/CODE_OF_CONDUCT.rst\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetzulo%2Fqaiops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetzulo%2Fqaiops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetzulo%2Fqaiops/lists"}