Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kckecheng/fio_exporter
Run fio and make its result consumable for Prometheus
https://github.com/kckecheng/fio_exporter
benchmark monitoring performance-monitoring prometheus prometheus-exporter
Last synced: 2 months ago
JSON representation
Run fio and make its result consumable for Prometheus
- Host: GitHub
- URL: https://github.com/kckecheng/fio_exporter
- Owner: kckecheng
- License: apache-2.0
- Created: 2020-06-04T08:38:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T09:36:23.000Z (over 4 years ago)
- Last Synced: 2024-08-02T15:48:02.593Z (5 months ago)
- Topics: benchmark, monitoring, performance-monitoring, prometheus, prometheus-exporter
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
FIO Exporter
==============About
-------Run `fio `_ as below and make the periodical reporting results consumable for Prometheus:
::
\
--group_reporting --status-interval= \
--output-format=terse --terse-version=3Please refer to `fio latest document `_ for option introduction.
Requirements
-------------- **fio** should be installed;
- **a fio job file** should be defined;Supported Platform
--------------------- Linux
- WindowsUsage
-------::
git clone https://github.com/kckecheng/fio_exporter.git
cd fio_exporter
go build -v
./fio_exporter --help
./fio_exporter -p fio -j /mnt1/job1.ini -i 30 -l 8080Notes
-------- **filename/directory** should be defined with absolute paths, otherwise, files will be created under the same directory as this exporter;
- Option **--path/-p** is optional if the fio executable binary is searchable (under **PATH**);
- Since the reporting results are generated periodically based on option **--status-interval**, Prometheus should scrape this exporter with the same interval;