Metrics for IO errors on Mac. (#1636)

* Metrics for IO errors and retries on Mac.

Signed-off-by: Tom Wilkie <tom@grafana.com>
This commit is contained in:
Tom Wilkie 2020-03-22 01:35:38 +05:30 committed by GitHub
commit 6496c24d61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 80 additions and 4 deletions

View file

@ -19,6 +19,10 @@ struct DriveStats {
int64_t writetime;
int64_t readlat;
int64_t writelat;
int64_t readerrs;
int64_t writeerrs;
int64_t readretries;
int64_t writeretries;
};
struct CPUStats {