Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
# Archive created by ttar -C collector/fixtures -c -f collector/fixtures/sys.ttar sys
|
|
|
|
Directory: sys
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/bus
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/bus/cpu
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/bus/cpu/devices
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/bus/cpu/devices/cpu0
|
|
|
|
SymlinkTo: ../../../devices/system/cpu/cpu0
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/bus/cpu/devices/cpu1
|
|
|
|
SymlinkTo: ../../../devices/system/cpu/cpu1
|
2018-02-27 18:43:15 +00:00
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/bus/cpu/devices/cpu2
|
|
|
|
SymlinkTo: ../../../devices/system/cpu/cpu2
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/bus/cpu/devices/cpu3
|
|
|
|
SymlinkTo: ../../../devices/system/cpu/cpu3
|
2018-02-27 18:43:15 +00:00
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2017-09-07 21:24:18 +00:00
|
|
|
Directory: sys/bus/node
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/bus/node/devices
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/bus/node/devices/node0
|
|
|
|
SymlinkTo: ../../../devices/system/node/node0
|
2017-09-07 21:24:18 +00:00
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/bus/node/devices/node1
|
|
|
|
SymlinkTo: ../../../devices/system/node/node1
|
2017-09-07 21:24:18 +00:00
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/class
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/hwmon
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon0
|
|
|
|
SymlinkTo: ../../devices/platform/coretemp.0/hwmon/hwmon0
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon1
|
|
|
|
SymlinkTo: ../../devices/platform/coretemp.1/hwmon/hwmon1
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon2
|
|
|
|
SymlinkTo: ../../devices/platform/applesmc.768/hwmon/hwmon2
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon3
|
|
|
|
SymlinkTo: ../../devices/platform/nct6775.656/hwmon/hwmon3
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/hwmon/hwmon4
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp1_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp1_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp1_input
|
|
|
|
Lines: 1
|
|
|
|
55000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp1_label
|
|
|
|
Lines: 1
|
|
|
|
foosensor
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp1_max
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp2_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp2_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp2_input
|
|
|
|
Lines: 1
|
|
|
|
54000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp2_label
|
|
|
|
Lines: 1
|
|
|
|
foosensor
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/hwmon/hwmon4/temp2_max
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-04 13:05:59 +00:00
|
|
|
Directory: sys/class/infiniband/i40iw0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/i40iw0/ports
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/i40iw0/ports/1
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/i40iw0/ports/1/counters
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/VL15_dropped
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-04 13:05:59 +00:00
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/excessive_buffer_overrun_errors
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/link_downed
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/link_error_recovery
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/local_link_integrity_errors
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_rcv_constraint_errors
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_rcv_data
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_rcv_errors
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_rcv_remote_physical_errors
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_rcv_switch_relay_errors
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_xmit_constraint_errors
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_xmit_data
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_xmit_discards
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/port_xmit_wait
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/i40iw0/ports/1/counters/symbol_error
|
|
|
|
Lines: 1
|
|
|
|
N/A (no PMA)
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/class/infiniband/mlx4_0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/mlx4_0/ports
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/mlx4_0/ports/1
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/mlx4_0/ports/1/counters
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/link_downed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/link_error_recovery
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/multicast_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
93
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/multicast_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
16
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-30 20:54:09 +00:00
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_constraint_errors
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_data
|
|
|
|
Lines: 1
|
|
|
|
4631917
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-30 20:54:09 +00:00
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_discards
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_discards
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_errors
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
6825908347
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_constraint_errors
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_data
|
|
|
|
Lines: 1
|
|
|
|
3733440
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-30 20:54:09 +00:00
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_discards
|
|
|
|
Lines: 1
|
|
|
|
5
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
6235865
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_wait
|
|
|
|
Lines: 1
|
|
|
|
4294967295
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/unicast_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
61148
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters/unicast_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
61239
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/mlx4_0/ports/1/counters_ext
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters_ext/port_multicast_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
93
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters_ext/port_multicast_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
16
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters_ext/port_rcv_data_64
|
|
|
|
Lines: 1
|
|
|
|
4631917
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters_ext/port_rcv_packets_64
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters_ext/port_unicast_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
61148
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters_ext/port_unicast_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
61239
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters_ext/port_xmit_data_64
|
|
|
|
Lines: 1
|
|
|
|
3733440
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/1/counters_ext/port_xmit_packets_64
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/mlx4_0/ports/2
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/mlx4_0/ports/2/counters
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters/link_downed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters/link_error_recovery
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters/multicast_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters/multicast_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_data
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_data
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters/unicast_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters/unicast_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/infiniband/mlx4_0/ports/2/counters_ext
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters_ext/port_multicast_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
93
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters_ext/port_multicast_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
16
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters_ext/port_rcv_data_64
|
|
|
|
Lines: 1
|
|
|
|
4631917
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters_ext/port_rcv_packets_64
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters_ext/port_unicast_rcv_packets
|
|
|
|
Lines: 1
|
|
|
|
61148
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters_ext/port_unicast_xmit_packets
|
|
|
|
Lines: 1
|
|
|
|
61239
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters_ext/port_xmit_data_64
|
|
|
|
Lines: 1
|
|
|
|
3733440
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/infiniband/mlx4_0/ports/2/counters_ext/port_xmit_packets_64
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/net
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/net/bond0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Path: sys/class/net/bond0/addr_assign_type
|
|
|
|
Lines: 1
|
|
|
|
3
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/addr_len
|
|
|
|
Lines: 1
|
|
|
|
6
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/address
|
|
|
|
Lines: 1
|
|
|
|
01:01:01:01:01:01
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/class/net/bond0/bonding
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/bonding/slaves
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Path: sys/class/net/bond0/broadcast
|
|
|
|
Lines: 1
|
|
|
|
ff:ff:ff:ff:ff:ff
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/carrier
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/carrier_changes
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/carrier_down_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/carrier_up_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/dev_id
|
|
|
|
Lines: 1
|
|
|
|
0x20
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/dormant
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/duplex
|
|
|
|
Lines: 1
|
|
|
|
full
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/flags
|
|
|
|
Lines: 1
|
|
|
|
0x1303
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/ifalias
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/ifindex
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/iflink
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/link_mode
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/mtu
|
|
|
|
Lines: 1
|
|
|
|
1500
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/name_assign_type
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/netdev_group
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/operstate
|
|
|
|
Lines: 1
|
|
|
|
up
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/phys_port_id
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/phys_port_name
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/phys_switch_id
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/speed
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/tx_queue_len
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/bond0/type
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Path: sys/class/net/bonding_masters
|
|
|
|
Lines: 1
|
|
|
|
bond0 dmz int
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/net/dmz
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Path: sys/class/net/dmz/addr_assign_type
|
|
|
|
Lines: 1
|
|
|
|
3
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/addr_len
|
|
|
|
Lines: 1
|
|
|
|
6
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/address
|
|
|
|
Lines: 1
|
|
|
|
01:01:01:01:01:01
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/class/net/dmz/bonding
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/bonding/slaves
|
|
|
|
Lines: 1
|
|
|
|
eth0 eth4
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Path: sys/class/net/dmz/broadcast
|
|
|
|
Lines: 1
|
|
|
|
ff:ff:ff:ff:ff:ff
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/carrier
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/carrier_changes
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/carrier_down_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/carrier_up_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/dev_id
|
|
|
|
Lines: 1
|
|
|
|
0x20
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/dormant
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/duplex
|
|
|
|
Lines: 1
|
|
|
|
full
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/flags
|
|
|
|
Lines: 1
|
|
|
|
0x1303
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/ifalias
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/ifindex
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/iflink
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/link_mode
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/mtu
|
|
|
|
Lines: 1
|
|
|
|
1500
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/name_assign_type
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/netdev_group
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/operstate
|
|
|
|
Lines: 1
|
|
|
|
up
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/phys_port_id
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/phys_port_name
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/phys_switch_id
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/class/net/dmz/slave_eth0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/slave_eth0/operstate
|
|
|
|
Lines: 1
|
|
|
|
up
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/net/dmz/slave_eth4
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/slave_eth4/operstate
|
|
|
|
Lines: 1
|
|
|
|
up
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Path: sys/class/net/dmz/speed
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/tx_queue_len
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/dmz/type
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/eth0
|
|
|
|
SymlinkTo: ../../devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/class/net/int
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Path: sys/class/net/int/addr_assign_type
|
|
|
|
Lines: 1
|
|
|
|
3
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/addr_len
|
|
|
|
Lines: 1
|
|
|
|
6
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/address
|
|
|
|
Lines: 1
|
|
|
|
01:01:01:01:01:01
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/class/net/int/bonding
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/bonding/slaves
|
|
|
|
Lines: 1
|
|
|
|
eth5 eth1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Path: sys/class/net/int/broadcast
|
|
|
|
Lines: 1
|
|
|
|
ff:ff:ff:ff:ff:ff
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/carrier
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/carrier_changes
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/carrier_down_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/carrier_up_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/dev_id
|
|
|
|
Lines: 1
|
|
|
|
0x20
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/dormant
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/duplex
|
|
|
|
Lines: 1
|
|
|
|
full
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/flags
|
|
|
|
Lines: 1
|
|
|
|
0x1303
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/ifalias
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/ifindex
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/iflink
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/link_mode
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/mtu
|
|
|
|
Lines: 1
|
|
|
|
1500
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/name_assign_type
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/netdev_group
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/operstate
|
|
|
|
Lines: 1
|
|
|
|
up
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/phys_port_id
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/phys_port_name
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/phys_switch_id
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/class/net/int/slave_eth1
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/slave_eth1/operstate
|
|
|
|
Lines: 1
|
|
|
|
down
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/class/net/int/slave_eth5
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/slave_eth5/operstate
|
|
|
|
Lines: 1
|
|
|
|
up
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Path: sys/class/net/int/speed
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/tx_queue_len
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/class/net/int/type
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/devices
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-07-16 13:08:18 +00:00
|
|
|
Directory: sys/devices/pci0000:00/0000:00:03.0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/addr_assign_type
|
|
|
|
Lines: 1
|
|
|
|
3
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/addr_len
|
|
|
|
Lines: 1
|
|
|
|
6
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/address
|
|
|
|
Lines: 1
|
|
|
|
01:01:01:01:01:01
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/broadcast
|
|
|
|
Lines: 1
|
|
|
|
ff:ff:ff:ff:ff:ff
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/carrier
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/carrier_changes
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/carrier_down_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/carrier_up_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/dev_id
|
|
|
|
Lines: 1
|
|
|
|
0x20
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/dormant
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/duplex
|
|
|
|
Lines: 1
|
|
|
|
full
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/flags
|
|
|
|
Lines: 1
|
|
|
|
0x1303
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/ifalias
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/ifindex
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/iflink
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/link_mode
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/mtu
|
|
|
|
Lines: 1
|
|
|
|
1500
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/name_assign_type
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/netdev_group
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/operstate
|
|
|
|
Lines: 1
|
|
|
|
up
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/phys_port_id
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/phys_port_name
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/phys_switch_id
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/speed
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/tx_queue_len
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:03.0/0000:03:00.0/net/eth0/type
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/dirty_data
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/bypassed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_bypass_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_bypass_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_hit_ratio
|
|
|
|
Lines: 1
|
|
|
|
100
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_hits
|
|
|
|
Lines: 1
|
|
|
|
289
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_miss_collisions
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_readaheads
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/bypassed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_bypass_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_bypass_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_hit_ratio
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_miss_collisions
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_readaheads
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/bypassed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_bypass_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_bypass_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_hit_ratio
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_miss_collisions
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_readaheads
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/bypassed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_bypass_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_bypass_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_hit_ratio
|
|
|
|
Lines: 1
|
|
|
|
100
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_hits
|
|
|
|
Lines: 1
|
|
|
|
546
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_miss_collisions
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_readaheads
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata5
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/io_errors
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/metadata_written
|
|
|
|
Lines: 1
|
|
|
|
512
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/priority_stats
|
|
|
|
Lines: 5
|
|
|
|
Unused: 99%
|
|
|
|
Metadata: 0%
|
|
|
|
Average: 10473
|
|
|
|
Sectors per Q: 64
|
|
|
|
Quantiles: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946]
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/written
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/applesmc.768
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan1_input
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan1_label
|
|
|
|
Lines: 1
|
|
|
|
Left side
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan1_manual
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan1_max
|
|
|
|
Lines: 1
|
|
|
|
6156
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan1_min
|
|
|
|
Lines: 1
|
|
|
|
2160
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan1_output
|
|
|
|
Lines: 1
|
|
|
|
2160
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan1_safe
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan2_input
|
|
|
|
Lines: 1
|
|
|
|
1998
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan2_label
|
|
|
|
Lines: 1
|
|
|
|
Right side
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan2_manual
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan2_max
|
|
|
|
Lines: 1
|
|
|
|
5700
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan2_min
|
|
|
|
Lines: 1
|
|
|
|
2000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan2_output
|
|
|
|
Lines: 1
|
|
|
|
2000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/fan2_safe
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/applesmc.768/hwmon
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/applesmc.768/hwmon/hwmon2
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/hwmon/hwmon2/device
|
|
|
|
SymlinkTo: ../../../applesmc.768
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/applesmc.768/name
|
|
|
|
Lines: 1
|
|
|
|
applesmc
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/coretemp.0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/coretemp.0/hwmon
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/coretemp.0/hwmon/hwmon0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/device
|
|
|
|
SymlinkTo: ../../../coretemp.0
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/name
|
|
|
|
Lines: 1
|
|
|
|
coretemp
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_input
|
|
|
|
Lines: 1
|
|
|
|
55000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_label
|
|
|
|
Lines: 1
|
|
|
|
Physical id 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_input
|
|
|
|
Lines: 1
|
|
|
|
54000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_label
|
|
|
|
Lines: 1
|
|
|
|
Core 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_input
|
|
|
|
Lines: 1
|
|
|
|
52000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_label
|
|
|
|
Lines: 1
|
|
|
|
Core 1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_input
|
|
|
|
Lines: 1
|
|
|
|
53000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_label
|
|
|
|
Lines: 1
|
|
|
|
Core 2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_input
|
|
|
|
Lines: 1
|
|
|
|
50000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_label
|
|
|
|
Lines: 1
|
|
|
|
Core 3
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/coretemp.1
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/coretemp.1/hwmon
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/coretemp.1/hwmon/hwmon1
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/device
|
|
|
|
SymlinkTo: ../../../coretemp.1
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/name
|
|
|
|
Lines: 1
|
|
|
|
coretemp
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_input
|
|
|
|
Lines: 1
|
|
|
|
55000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_label
|
|
|
|
Lines: 1
|
|
|
|
Physical id 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_input
|
|
|
|
Lines: 1
|
|
|
|
54000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_label
|
|
|
|
Lines: 1
|
|
|
|
Core 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_input
|
|
|
|
Lines: 1
|
|
|
|
52000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_label
|
|
|
|
Lines: 1
|
|
|
|
Core 1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_input
|
|
|
|
Lines: 1
|
|
|
|
53000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_label
|
|
|
|
Lines: 1
|
|
|
|
Core 2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_crit
|
|
|
|
Lines: 1
|
|
|
|
100000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_crit_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_input
|
|
|
|
Lines: 1
|
|
|
|
50000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_label
|
|
|
|
Lines: 1
|
|
|
|
Core 3
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_max
|
|
|
|
Lines: 1
|
|
|
|
84000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/nct6775.656
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/nct6775.656/hwmon
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/platform/nct6775.656/hwmon/hwmon3
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_beep
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_input
|
|
|
|
Lines: 1
|
|
|
|
1098
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_min
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_pulses
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_target
|
|
|
|
Lines: 1
|
|
|
|
27000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_tolerance
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_alarm
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_beep
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_input
|
|
|
|
Lines: 1
|
|
|
|
792
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_max
|
|
|
|
Lines: 1
|
|
|
|
1744
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_min
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_alarm
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_beep
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_input
|
|
|
|
Lines: 1
|
|
|
|
1024
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_max
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_min
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/intrusion0_alarm
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/intrusion0_beep
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/intrusion1_alarm
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/intrusion1_beep
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/name
|
|
|
|
Lines: 1
|
|
|
|
nct6779
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point1_pwm
|
|
|
|
Lines: 1
|
|
|
|
153
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point1_temp
|
|
|
|
Lines: 1
|
|
|
|
30000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point2_pwm
|
|
|
|
Lines: 1
|
|
|
|
255
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point2_temp
|
|
|
|
Lines: 1
|
|
|
|
70000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point3_pwm
|
|
|
|
Lines: 1
|
|
|
|
255
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point3_temp
|
|
|
|
Lines: 1
|
|
|
|
70000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point4_pwm
|
|
|
|
Lines: 1
|
|
|
|
255
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point4_temp
|
|
|
|
Lines: 1
|
|
|
|
70000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point5_pwm
|
|
|
|
Lines: 1
|
|
|
|
255
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point5_temp
|
|
|
|
Lines: 1
|
|
|
|
75000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_crit_temp_tolerance
|
|
|
|
Lines: 1
|
|
|
|
2000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_enable
|
|
|
|
Lines: 1
|
|
|
|
5
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_floor
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_mode
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_start
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_step_down_time
|
|
|
|
Lines: 1
|
|
|
|
100
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_step_up_time
|
|
|
|
Lines: 1
|
|
|
|
100
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_stop_time
|
|
|
|
Lines: 1
|
|
|
|
6000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_target_temp
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_temp_sel
|
|
|
|
Lines: 1
|
|
|
|
7
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_temp_tolerance
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_duty_base
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_duty_step
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_temp_sel
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_temp_step
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_temp_step_base
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_temp_step_tol
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Directory: sys/devices/system/cpu
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu0/cpufreq
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/related_cpus
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
|
|
|
|
Lines: 1
|
|
|
|
performance powersave
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
|
|
|
|
Lines: 1
|
|
|
|
1699981
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/scaling_driver
|
|
|
|
Lines: 1
|
|
|
|
intel_pstate
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
|
|
|
|
Lines: 1
|
|
|
|
powersave
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
|
|
|
|
Lines: 1
|
|
|
|
3700000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
|
|
|
|
Lines: 1
|
|
|
|
800000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed
|
|
|
|
Lines: 1
|
|
|
|
<unsupported>
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Directory: sys/devices/system/cpu/cpu0/thermal_throttle
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count
|
|
|
|
Lines: 1
|
|
|
|
5
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count
|
|
|
|
Lines: 1
|
|
|
|
30
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu0/topology
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu0/topology/core_id
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu0/topology/physical_package_id
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu1
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu1/cpufreq
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/related_cpus
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors
|
|
|
|
Lines: 1
|
|
|
|
performance powersave
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq
|
|
|
|
Lines: 1
|
|
|
|
1699981
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/scaling_driver
|
|
|
|
Lines: 1
|
|
|
|
intel_pstate
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
|
|
|
|
Lines: 1
|
|
|
|
powersave
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/scaling_max_freq
|
|
|
|
Lines: 1
|
|
|
|
3700000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq
|
|
|
|
Lines: 1
|
|
|
|
800000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu1/cpufreq/scaling_setspeed
|
|
|
|
Lines: 1
|
|
|
|
<unsupported>
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Directory: sys/devices/system/cpu/cpu1/thermal_throttle
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count
|
|
|
|
Lines: 1
|
|
|
|
30
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu1/topology
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu1/topology/core_id
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu1/topology/physical_package_id
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu2
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu2/cpufreq
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_transition_latency
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/related_cpus
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/scaling_available_governors
|
|
|
|
Lines: 1
|
|
|
|
performance powersave
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq
|
|
|
|
Lines: 1
|
|
|
|
8000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/scaling_driver
|
|
|
|
Lines: 1
|
|
|
|
intel_pstate
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/scaling_governor
|
|
|
|
Lines: 1
|
|
|
|
powersave
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/scaling_max_freq
|
|
|
|
Lines: 1
|
|
|
|
4200000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu2/cpufreq/scaling_setspeed
|
|
|
|
Lines: 1
|
|
|
|
<unsupported>
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Directory: sys/devices/system/cpu/cpu2/thermal_throttle
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu2/thermal_throttle/core_throttle_count
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu2/thermal_throttle/package_throttle_count
|
|
|
|
Lines: 1
|
|
|
|
6
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu2/topology
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu2/topology/core_id
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu2/topology/physical_package_id
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu3
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu3/cpufreq
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_transition_latency
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/related_cpus
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/scaling_available_governors
|
|
|
|
Lines: 1
|
|
|
|
performance powersave
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq
|
|
|
|
Lines: 1
|
|
|
|
8000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/scaling_driver
|
|
|
|
Lines: 1
|
|
|
|
intel_pstate
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/scaling_governor
|
|
|
|
Lines: 1
|
|
|
|
powersave
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/scaling_max_freq
|
|
|
|
Lines: 1
|
|
|
|
4200000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq
|
|
|
|
Lines: 1
|
|
|
|
1000
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-10-18 15:28:19 +00:00
|
|
|
Path: sys/devices/system/cpu/cpu3/cpufreq/scaling_setspeed
|
|
|
|
Lines: 1
|
|
|
|
<unsupported>
|
|
|
|
Mode: 664
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Directory: sys/devices/system/cpu/cpu3/thermal_throttle
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu3/thermal_throttle/core_throttle_count
|
|
|
|
Lines: 1
|
|
|
|
9
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu3/thermal_throttle/package_throttle_count
|
|
|
|
Lines: 1
|
|
|
|
6
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/cpu/cpu3/topology
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu3/topology/core_id
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/cpu/cpu3/topology/physical_package_id
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/devices/system/edac
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/edac/mc
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/edac/mc/mc0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/edac/mc/mc0/ce_count
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/edac/mc/mc0/ce_noinfo_count
|
|
|
|
Lines: 1
|
|
|
|
2
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/edac/mc/mc0/csrow0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/edac/mc/mc0/csrow0/ce_count
|
|
|
|
Lines: 1
|
|
|
|
3
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/edac/mc/mc0/csrow0/ue_count
|
|
|
|
Lines: 1
|
|
|
|
4
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/edac/mc/mc0/ue_count
|
|
|
|
Lines: 1
|
|
|
|
5
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/edac/mc/mc0/ue_noinfo_count
|
|
|
|
Lines: 1
|
|
|
|
6
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/node
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/node/node0
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/node/node0/cpu0
|
|
|
|
SymlinkTo: ../../cpu/cpu0
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node0/cpu1
|
|
|
|
SymlinkTo: ../../cpu/cpu1
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node0/cpulist
|
|
|
|
Lines: 1
|
|
|
|
0-1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Path: sys/devices/system/node/node0/meminfo
|
2018-04-09 16:01:52 +00:00
|
|
|
Lines: 29
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Node 0 MemTotal: 134182340 kB
|
|
|
|
Node 0 MemFree: 53030372 kB
|
|
|
|
Node 0 MemUsed: 81151968 kB
|
|
|
|
Node 0 Active: 5456380 kB
|
|
|
|
Node 0 Inactive: 59150184 kB
|
|
|
|
Node 0 Active(anon): 691324 kB
|
|
|
|
Node 0 Inactive(anon): 340456 kB
|
|
|
|
Node 0 Active(file): 4765056 kB
|
|
|
|
Node 0 Inactive(file): 58809728 kB
|
|
|
|
Node 0 Unevictable: 0 kB
|
|
|
|
Node 0 Mlocked: 0 kB
|
|
|
|
Node 0 Dirty: 20 kB
|
|
|
|
Node 0 Writeback: 0 kB
|
|
|
|
Node 0 FilePages: 70170916 kB
|
|
|
|
Node 0 Mapped: 894240 kB
|
|
|
|
Node 0 AnonPages: 788196 kB
|
|
|
|
Node 0 Shmem: 47860 kB
|
|
|
|
Node 0 KernelStack: 34016 kB
|
|
|
|
Node 0 PageTables: 143304 kB
|
|
|
|
Node 0 NFS_Unstable: 0 kB
|
|
|
|
Node 0 Bounce: 0 kB
|
|
|
|
Node 0 WritebackTmp: 0 kB
|
|
|
|
Node 0 Slab: 6654304 kB
|
|
|
|
Node 0 SReclaimable: 4473124 kB
|
|
|
|
Node 0 SUnreclaim: 2181180 kB
|
|
|
|
Node 0 AnonHugePages: 147456 kB
|
|
|
|
Node 0 HugePages_Total: 0
|
|
|
|
Node 0 HugePages_Free: 0
|
|
|
|
Node 0 HugePages_Surp: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node0/numastat
|
|
|
|
Lines: 6
|
|
|
|
numa_hit 193460335812
|
|
|
|
numa_miss 12624528
|
|
|
|
numa_foreign 59858623300
|
|
|
|
interleave_hit 57146
|
|
|
|
local_node 193454780853
|
|
|
|
other_node 18179487
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/devices/system/node/node1
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Path: sys/devices/system/node/node1/cpu2
|
|
|
|
SymlinkTo: ../../cpu/cpu2
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node1/cpu3
|
|
|
|
SymlinkTo: ../../cpu/cpu3
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node1/cpulist
|
|
|
|
Lines: 1
|
|
|
|
2-3
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Path: sys/devices/system/node/node1/meminfo
|
2018-04-09 16:01:52 +00:00
|
|
|
Lines: 29
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Node 1 MemTotal: 134217728 kB
|
|
|
|
Node 1 MemFree: 39634788 kB
|
|
|
|
Node 1 MemUsed: 94582940 kB
|
|
|
|
Node 1 Active: 5604496 kB
|
|
|
|
Node 1 Inactive: 71450592 kB
|
|
|
|
Node 1 Active(anon): 590464 kB
|
|
|
|
Node 1 Inactive(anon): 285088 kB
|
|
|
|
Node 1 Active(file): 5014032 kB
|
|
|
|
Node 1 Inactive(file): 71165504 kB
|
|
|
|
Node 1 Unevictable: 0 kB
|
|
|
|
Node 1 Mlocked: 0 kB
|
|
|
|
Node 1 Dirty: 120 kB
|
|
|
|
Node 1 Writeback: 0 kB
|
|
|
|
Node 1 FilePages: 83579188 kB
|
|
|
|
Node 1 Mapped: 864112 kB
|
|
|
|
Node 1 AnonPages: 671932 kB
|
|
|
|
Node 1 Shmem: 87580 kB
|
|
|
|
Node 1 KernelStack: 31104 kB
|
|
|
|
Node 1 PageTables: 124272 kB
|
|
|
|
Node 1 NFS_Unstable: 0 kB
|
|
|
|
Node 1 Bounce: 0 kB
|
|
|
|
Node 1 WritebackTmp: 0 kB
|
|
|
|
Node 1 Slab: 7020716 kB
|
|
|
|
Node 1 SReclaimable: 4614084 kB
|
|
|
|
Node 1 SUnreclaim: 2406632 kB
|
|
|
|
Node 1 AnonHugePages: 90112 kB
|
|
|
|
Node 1 HugePages_Total: 0
|
|
|
|
Node 1 HugePages_Free: 0
|
|
|
|
Node 1 HugePages_Surp: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node1/numastat
|
|
|
|
Lines: 6
|
|
|
|
numa_hit 326720946761
|
|
|
|
numa_miss 59858626709
|
|
|
|
numa_foreign 12624528
|
|
|
|
interleave_hit 57286
|
|
|
|
local_node 326719046550
|
|
|
|
other_node 59860526920
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-04-09 16:01:52 +00:00
|
|
|
Directory: sys/devices/system/node/node2
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node2/cpulist
|
|
|
|
Lines: 1
|
|
|
|
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node2/meminfo
|
|
|
|
Lines: 29
|
|
|
|
Node 2 MemTotal: 134217728 kB
|
|
|
|
Node 2 MemFree: 39634788 kB
|
|
|
|
Node 2 MemUsed: 94582940 kB
|
|
|
|
Node 2 Active: 5604496 kB
|
|
|
|
Node 2 Inactive: 71450592 kB
|
|
|
|
Node 2 Active(anon): 590464 kB
|
|
|
|
Node 2 Inactive(anon): 285088 kB
|
|
|
|
Node 2 Active(file): 5014032 kB
|
|
|
|
Node 2 Inactive(file): 71165504 kB
|
|
|
|
Node 2 Unevictable: 0 kB
|
|
|
|
Node 2 Mlocked: 0 kB
|
|
|
|
Node 2 Dirty: 120 kB
|
|
|
|
Node 2 Writeback: 0 kB
|
|
|
|
Node 2 FilePages: 83579188 kB
|
|
|
|
Node 2 Mapped: 864112 kB
|
|
|
|
Node 2 AnonPages: 671932 kB
|
|
|
|
Node 2 Shmem: 87580 kB
|
|
|
|
Node 2 KernelStack: 31104 kB
|
|
|
|
Node 2 PageTables: 124272 kB
|
|
|
|
Node 2 NFS_Unstable: 0 kB
|
|
|
|
Node 2 Bounce: 0 kB
|
|
|
|
Node 2 WritebackTmp: 0 kB
|
|
|
|
Node 2 Slab: 7020716 kB
|
|
|
|
Node 2 SReclaimable: 4614084 kB
|
|
|
|
Node 2 SUnreclaim: 2406632 kB
|
|
|
|
Node 2 AnonHugePages: 90112 kB
|
|
|
|
Node 2 HugePages_Total: 0
|
|
|
|
Node 2 HugePages_Free: 0
|
|
|
|
Node 2 HugePages_Surp: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/devices/system/node/node2/numastat
|
|
|
|
Lines: 6
|
|
|
|
numa_hit 26720946761
|
|
|
|
numa_miss 9858626709
|
|
|
|
numa_foreign 2624528
|
|
|
|
interleave_hit 7286
|
|
|
|
local_node 26719046550
|
|
|
|
other_node 9860526920
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
Add bcache collector (#597)
* Add bcache collector for Linux
This collector gathers metrics related to the Linux block cache
(bcache) from sysfs.
* Removed commented out code
* Use project comment style
* Add _sectors to metric name to indicate unit
* Really use project comment style
* Rename bcache.go to bcache_linux.go
* Keep collector namespace clean
Rename:
- metric -> bcacheMetric
- periodStatsToMetrics -> bcachePeriodStatsToMetric
* Shorten slice initialization
* Change label names to backing_device, cache_device
* Remove five minute metrics (keep only total)
* Include units in additional metric names
* Enable bcache collector by default
* Provide metrics in seconds, not nanoseconds
* remove metrics with label "all"
* Add fixtures, update end-to-end for bcache collector
* Move fixtures/sys into tar.gz
This changeset moves the collector/fixtures/sys directory into
collector/fixtures/sys.tar.gz and tweaks the Makefile to unpack the
tarball before tests are run.
The reason for this change is that Windows does not allow colons in a
path (colons are present in some of the bcache fixture files), nor can
it (out of the box) deal with pathnames longer than 260 characters
(which we would be increasingly likely to hit if we tried to replace
colons with longer codes that are guaranteed not the turn up in regular
file names).
* Add ttar: plain text archive, replacement for tar
This changeset adds ttar, a plain text replacement for tar, and uses it
for the sysfs fixture archive. The syntax is loosely based on tar(1).
Using a plain text archive makes it possible to review changes without
downloading and extracting the archive. Also, when working on the repo,
git diff and git log become useful again, allowing a committer to verify
and track changes over time.
The code is written in bash, because bash is available out of the box on
all major flavors of Linux and on macOS. The feature set used is
restricted to bash version 3.2 because that is what Apple is still
shipping.
The programm also works on Windows if bash is installed. Obviously, it
does not solve the Windows limitations (path length limited to 260
characters, no symbolic links) that prompted the move to an archive
format in the first place.
2017-07-07 05:20:18 +00:00
|
|
|
Directory: sys/fs
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/bcache
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/average_key_size
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0
|
|
|
|
SymlinkTo: ../../../devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/btree_cache_size
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0
|
|
|
|
SymlinkTo: ../../../devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache_available_percent
|
|
|
|
Lines: 1
|
|
|
|
100
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/congested
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/active_journal_entries
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/btree_nodes
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/btree_read_average_duration_us
|
|
|
|
Lines: 1
|
|
|
|
1305
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/cache_read_races
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/root_usage_percent
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/bypassed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_bypass_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_bypass_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_hit_ratio
|
|
|
|
Lines: 1
|
|
|
|
100
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_hits
|
|
|
|
Lines: 1
|
|
|
|
289
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_miss_collisions
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_readaheads
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/bypassed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_bypass_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_bypass_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_hit_ratio
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_miss_collisions
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_readaheads
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/bypassed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_bypass_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_bypass_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_hit_ratio
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_miss_collisions
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_readaheads
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/bypassed
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_bypass_hits
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_bypass_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_hit_ratio
|
|
|
|
Lines: 1
|
|
|
|
100
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_hits
|
|
|
|
Lines: 1
|
|
|
|
546
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_miss_collisions
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_misses
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_readaheads
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/tree_depth
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/xfs
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/xfs/sda1
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/fs/xfs/sda1/stats
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/fs/xfs/sda1/stats/stats
|
|
|
|
Lines: 24
|
|
|
|
extent_alloc 1 872 0 0
|
|
|
|
abt 0 0 0 0
|
|
|
|
blk_map 61 29 1 1 1 91 0
|
|
|
|
bmbt 0 0 0 0
|
|
|
|
dir 3 2 1 52
|
|
|
|
trans 4 40 0
|
|
|
|
ig 5 1 0 4 0 0 1
|
|
|
|
log 8 21 0 5821 4
|
|
|
|
push_ail 44 0 1102 15 0 2 0 2 0 2
|
|
|
|
xstrat 1 0
|
|
|
|
rw 28 0
|
|
|
|
attr 0 0 0 0
|
|
|
|
icluster 2 2 2
|
|
|
|
vnodes 4 0 0 0 1 1 1 0
|
|
|
|
buf 22 25 14 0 0 8 0 8 8
|
|
|
|
abtb2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
abtc2 2 1 1 1 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
bmbt2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
ibt2 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
fibt2 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
rmapbt 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
qm 0 0 0 0 0 0 0 0
|
|
|
|
xpc 3571712 3568056 0
|
|
|
|
debug 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/kernel
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/kernel/mm
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Directory: sys/kernel/mm/ksm
|
|
|
|
Mode: 755
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/full_scans
|
|
|
|
Lines: 1
|
|
|
|
323
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/merge_across_nodes
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/pages_shared
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/pages_sharing
|
|
|
|
Lines: 1
|
|
|
|
255
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/pages_to_scan
|
|
|
|
Lines: 1
|
|
|
|
100
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/pages_unshared
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/pages_volatile
|
|
|
|
Lines: 1
|
|
|
|
0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/run
|
|
|
|
Lines: 1
|
|
|
|
1
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/kernel/mm/ksm/sleep_millisecs
|
|
|
|
Lines: 1
|
|
|
|
20
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
Path: sys/.unpacked
|
|
|
|
Lines: 0
|
|
|
|
Mode: 644
|
|
|
|
# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|