Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## master / unreleased

* [CHANGE]
* [FEATURE]
* [FEATURE] Add tapestats collector for Linux
* [ENHANCEMENT]
* [BUGFIX]

Expand Down
31 changes: 31 additions & 0 deletions collector/fixtures/e2e-output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2796,6 +2796,7 @@ node_scrape_collector_success{collector="schedstat"} 1
node_scrape_collector_success{collector="sockstat"} 1
node_scrape_collector_success{collector="softnet"} 1
node_scrape_collector_success{collector="stat"} 1
node_scrape_collector_success{collector="tapestats"} 1
node_scrape_collector_success{collector="textfile"} 1
node_scrape_collector_success{collector="thermal_zone"} 1
node_scrape_collector_success{collector="udp_queues"} 1
Expand Down Expand Up @@ -2882,6 +2883,36 @@ node_softnet_times_squeezed_total{cpu="0"} 1
node_softnet_times_squeezed_total{cpu="1"} 10
node_softnet_times_squeezed_total{cpu="2"} 85
node_softnet_times_squeezed_total{cpu="3"} 50
# HELP node_tape_io_now The number of I/Os currently outstanding to this device.
# TYPE node_tape_io_now gauge
node_tape_io_now{device="st0"} 1
# HELP node_tape_io_others_total The number of I/Os issued to the tape drive other than read or write commands. The time taken to complete these commands uses the following calculation io_time_seconds_total-read_time_seconds_total-write_time_seconds_total
# TYPE node_tape_io_others_total counter
node_tape_io_others_total{device="st0"} 1409
# HELP node_tape_io_time_seconds_total The amount of time spent waiting for all I/O to complete (including read and write). This includes tape movement commands such as seeking between file or set marks and implicit tape movement such as when rewind on close tape devices are used.
# TYPE node_tape_io_time_seconds_total counter
node_tape_io_time_seconds_total{device="st0"} 9247.01108772
# HELP node_tape_read_bytes_total The number of bytes read from the tape drive.
# TYPE node_tape_read_bytes_total counter
node_tape_read_bytes_total{device="st0"} 9.79383912e+08
# HELP node_tape_read_time_seconds_total The amount of time spent waiting for read requests to complete.
# TYPE node_tape_read_time_seconds_total counter
node_tape_read_time_seconds_total{device="st0"} 33.788355744
# HELP node_tape_reads_completed_total The number of read requests issued to the tape drive.
# TYPE node_tape_reads_completed_total counter
node_tape_reads_completed_total{device="st0"} 3741
# HELP node_tape_residual_total The number of times during a read or write we found the residual amount to be non-zero. This should mean that a program is issuing a read larger thean the block size on tape. For write not all data made it to tape.
# TYPE node_tape_residual_total counter
node_tape_residual_total{device="st0"} 19
# HELP node_tape_write_time_seconds_total The amount of time spent waiting for write requests to complete.
# TYPE node_tape_write_time_seconds_total counter
node_tape_write_time_seconds_total{device="st0"} 5233.597394395
# HELP node_tape_writes_completed_total The number of write requests issued to the tape drive.
# TYPE node_tape_writes_completed_total counter
node_tape_writes_completed_total{device="st0"} 5.3772916e+07
# HELP node_tape_written_bytes_total The number of bytes written to the tape drive.
# TYPE node_tape_written_bytes_total counter
node_tape_written_bytes_total{device="st0"} 1.496246784e+12
# HELP node_textfile_mtime_seconds Unixtime mtime of textfiles successfully read.
# TYPE node_textfile_mtime_seconds gauge
# HELP node_textfile_scrape_error 1 if there was an error opening or reading a file, 0 otherwise
Expand Down
Loading