You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lustrefs-exporter/src/brw_stats.rs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -18,43 +18,43 @@ use crate::{
18
18
19
19
staticDISK_IO_TOTAL:Metric = Metric{
20
20
name:"lustre_disk_io_total",
21
-
help:"Total number of operations the filesystem has performed for the given size.",
21
+
help:"Total number of operations the filesystem has performed for the given size. 'size' label represents 'Disk I/O size', the size of each I/O operation",
22
22
r#type:MetricType::Counter,
23
23
};
24
24
25
25
staticDISK_IO_FRAGS:Metric = Metric{
26
26
name:"lustre_dio_frags",
27
-
help:"Current disk IO fragmentation for the given size.",
27
+
help:"Current disk IO fragmentation for the given size. 'size' label represents 'Disk fragmented I/Os', the number of I/Os that were not written entirely sequentially.",
28
28
r#type:MetricType::Gauge,
29
29
};
30
30
31
31
staticDISK_IO:Metric = Metric{
32
32
name:"lustre_disk_io",
33
-
help:"Current number of I/O operations that are processing during the snapshot.",
33
+
help:"Current number of I/O operations that are processing during the snapshot. 'size' label represents 'Disk I/Os in flight', the number of disk I/Os currently pending.",
34
34
r#type:MetricType::Gauge,
35
35
};
36
36
37
37
staticDISCONTIGUOUS_PAGES_TOTAL:Metric = Metric{
38
38
name:"lustre_discontiguous_pages_total",
39
-
help:"Total number of logical discontinuities per RPC.",
39
+
help:"Total number of logical discontinuities per RPC. 'size' label represents 'Discontiguous pages', the number of discontinuities in the logical file offset of each page in a single RPC.",
40
40
r#type:MetricType::Counter,
41
41
};
42
42
43
43
staticDISCONTIGUOUS_BLOCKS_TOTAL:Metric = Metric{
44
44
name:"lustre_discontiguous_blocks_total",
45
-
help:"",
45
+
help:"'size' label represents 'Discontiguous blocks', the number of discontinuities in the physical block allocation in the file system for a single RPC",
46
46
r#type:MetricType::Counter,
47
47
};
48
48
49
49
staticIO_TIME_MILLISECONDS_TOTAL:Metric = Metric{
50
50
name:"lustre_io_time_milliseconds_total",
51
-
help:"Total time in milliseconds the filesystem has spent processing various object sizes.",
51
+
help:"Total time in milliseconds the filesystem has spent processing various object sizes. 'size' label represents 'I/O time (1/1000s)', the amount of time for each I/O operation to complete.",
52
52
r#type:MetricType::Counter,
53
53
};
54
54
55
55
staticPAGES_PER_BULK_RW_TOTAL:Metric = Metric{
56
56
name:"lustre_pages_per_bulk_rw_total",
57
-
help:"Total number of pages per block RPC.",
57
+
help:"Total number of pages per block RPC. 'size' label represents 'Pages per bulk r/w', the number of pages per RPC request",
# HELPlustre_io_time_milliseconds_totalTotaltimeinmillisecondsthefilesystemhasspentprocessingvariousobjectsizes.'size'labelrepresents'I/O time (1/1000s)', theamountoftimeforeachI/Ooperationtocomplete.
# HELPlustre_io_time_milliseconds_totalTotaltimeinmillisecondsthefilesystemhasspentprocessingvariousobjectsizes.'size'labelrepresents'I/O time (1/1000s)', theamountoftimeforeachI/Ooperationtocomplete.
# HELPlustre_io_time_milliseconds_totalTotaltimeinmillisecondsthefilesystemhasspentprocessingvariousobjectsizes.'size'labelrepresents'I/O time (1/1000s)', theamountoftimeforeachI/Ooperationtocomplete.
0 commit comments