From 9c9377d9aeaafcc79cdbecb2c3fdd958b49881be Mon Sep 17 00:00:00 2001 From: Ananth Bhaskararaman Date: Wed, 25 Feb 2026 01:16:14 +0530 Subject: [PATCH] bcachefs collector Add support for collecting and reporting metrics from bcachefs filesystems. Signed-off-by: Ananth Bhaskararaman --- collector/bcachefs_linux.go | 266 +++ collector/fixtures/e2e-64k-page-output.txt | 64 + collector/fixtures/e2e-output.txt | 2298 +++++++------------- collector/fixtures/sys.ttar | 1178 +++++++++- end-to-end-test.sh | 1 + go.mod | 2 + go.sum | 4 +- 7 files changed, 2349 insertions(+), 1464 deletions(-) create mode 100644 collector/bcachefs_linux.go diff --git a/collector/bcachefs_linux.go b/collector/bcachefs_linux.go new file mode 100644 index 0000000000..528613de85 --- /dev/null +++ b/collector/bcachefs_linux.go @@ -0,0 +1,266 @@ +// Copyright 2025 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//go:build !nobcachefs + +package collector + +import ( + "fmt" + "log/slog" + "os" + "regexp" + + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/procfs/bcachefs" +) + +func init() { + registerCollector("bcachefs", defaultEnabled, NewBcachefsCollector) +} + +// bcachefsCollector collects metrics from bcachefs filesystems. +type bcachefsCollector struct { + fs bcachefs.FS + logger *slog.Logger +} + +// NewBcachefsCollector returns a new Collector exposing bcachefs statistics. +func NewBcachefsCollector(logger *slog.Logger) (Collector, error) { + fs, err := bcachefs.NewFS(*sysPath) + if err != nil { + return nil, fmt.Errorf("failed to open sysfs: %w", err) + } + + return &bcachefsCollector{ + fs: fs, + logger: logger, + }, nil +} + +// Update retrieves and exports bcachefs statistics. +func (c *bcachefsCollector) Update(ch chan<- prometheus.Metric) error { + const subsystem = "bcachefs" + + stats, err := c.fs.Stats() + if err != nil { + if os.IsNotExist(err) { + c.logger.Debug("bcachefs sysfs path does not exist", "path", sysFilePath("fs/bcachefs")) + return ErrNoData + } + return fmt.Errorf("failed to retrieve bcachefs stats: %w", err) + } + + if len(stats) == 0 { + return ErrNoData + } + + for _, s := range stats { + uuid := s.UUID + + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "info"), + "Filesystem information.", + []string{"uuid"}, + nil, + ), + prometheus.GaugeValue, + 1, + uuid, + ) + + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "btree_cache_size_bytes"), + "Btree cache memory usage in bytes.", + []string{"uuid"}, + nil, + ), + prometheus.GaugeValue, + float64(s.BtreeCacheSizeBytes), + uuid, + ) + + for algorithm, comp := range s.Compression { + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "compression_compressed_bytes"), + "Compressed size by algorithm.", + []string{"uuid", "algorithm"}, + nil, + ), + prometheus.GaugeValue, + float64(comp.CompressedBytes), + uuid, algorithm, + ) + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "compression_uncompressed_bytes"), + "Uncompressed size by algorithm.", + []string{"uuid", "algorithm"}, + nil, + ), + prometheus.GaugeValue, + float64(comp.UncompressedBytes), + uuid, algorithm, + ) + } + + for errorType, errStats := range s.Errors { + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "errors_total"), + "Error count by error type.", + []string{"uuid", "error_type"}, + nil, + ), + prometheus.CounterValue, + float64(errStats.Count), + uuid, errorType, + ) + } + + for counterName, counterStats := range s.Counters { + metricName := sanitizeMetricName(counterName) + "_total" + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, metricName), + fmt.Sprintf("Bcachefs counter %s since filesystem creation.", counterName), + []string{"uuid"}, + nil, + ), + prometheus.CounterValue, + float64(counterStats.SinceFilesystemCreation), + uuid, + ) + } + + for writeType, writeStats := range s.BtreeWrites { + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "btree_writes_total"), + "Number of btree writes by type.", + []string{"uuid", "type"}, + nil, + ), + prometheus.CounterValue, + float64(writeStats.Count), + uuid, writeType, + ) + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "btree_write_average_size_bytes"), + "Average btree write size by type.", + []string{"uuid", "type"}, + nil, + ), + prometheus.GaugeValue, + float64(writeStats.SizeBytes), + uuid, writeType, + ) + } + + for device, devStats := range s.Devices { + if devStats == nil { + continue + } + + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "device_info"), + "Device information.", + []string{"uuid", "device", "label", "state"}, + nil, + ), + prometheus.GaugeValue, + 1, + uuid, device, devStats.Label, devStats.State, + ) + + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "device_bucket_size_bytes"), + "Bucket size in bytes.", + []string{"uuid", "device"}, + nil, + ), + prometheus.GaugeValue, + float64(devStats.BucketSizeBytes), + uuid, device, + ) + + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "device_buckets"), + "Total number of buckets.", + []string{"uuid", "device"}, + nil, + ), + prometheus.GaugeValue, + float64(devStats.Buckets), + uuid, device, + ) + + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "device_durability"), + "Device durability setting.", + []string{"uuid", "device"}, + nil, + ), + prometheus.GaugeValue, + float64(devStats.Durability), + uuid, device, + ) + + for op, dataTypes := range devStats.IODone { + for dataType, value := range dataTypes { + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "device_io_done_bytes_total"), + "IO bytes by operation type and data type.", + []string{"uuid", "device", "operation", "data_type"}, + nil, + ), + prometheus.CounterValue, + float64(value), + uuid, device, op, dataType, + ) + } + } + + for errorType, value := range devStats.IOErrors { + ch <- prometheus.MustNewConstMetric( + prometheus.NewDesc( + prometheus.BuildFQName(namespace, subsystem, "device_io_errors_total"), + "IO errors by error type.", + []string{"uuid", "device", "type"}, + nil, + ), + prometheus.CounterValue, + float64(value), + uuid, device, errorType, + ) + } + } + } + + return nil +} + +// sanitizeMetricName converts a string to a valid Prometheus metric name component. +func sanitizeMetricName(name string) string { + re := regexp.MustCompile(`[^a-zA-Z0-9_]`) + return re.ReplaceAllString(name, "_") +} diff --git a/collector/fixtures/e2e-64k-page-output.txt b/collector/fixtures/e2e-64k-page-output.txt index db384df620..447fd4c64c 100644 --- a/collector/fixtures/e2e-64k-page-output.txt +++ b/collector/fixtures/e2e-64k-page-output.txt @@ -144,6 +144,69 @@ node_bcache_writeback_rate_proportional_term{backing_device="bdev0",uuid="deaddd # HELP node_bcache_written_bytes_total Sum of all data that has been written to the cache. # TYPE node_bcache_written_bytes_total counter node_bcache_written_bytes_total{cache_device="cache0",uuid="deaddd54-c735-46d5-868e-f331c5fd7c74"} 0 +# HELP node_bcachefs_btree_cache_size_bytes Btree cache memory usage in bytes. +# TYPE node_bcachefs_btree_cache_size_bytes gauge +node_bcachefs_btree_cache_size_bytes{uuid="12345678-1234-1234-1234-123456789abc"} 5.49453824e+08 +# HELP node_bcachefs_btree_node_read_total Bcachefs counter btree_node_read since filesystem creation. +# TYPE node_bcachefs_btree_node_read_total counter +node_bcachefs_btree_node_read_total{uuid="12345678-1234-1234-1234-123456789abc"} 67890 +# HELP node_bcachefs_btree_node_write_total Bcachefs counter btree_node_write since filesystem creation. +# TYPE node_bcachefs_btree_node_write_total counter +node_bcachefs_btree_node_write_total{uuid="12345678-1234-1234-1234-123456789abc"} 9876 +# HELP node_bcachefs_btree_write_average_size_bytes Average btree write size by type. +# TYPE node_bcachefs_btree_write_average_size_bytes gauge +node_bcachefs_btree_write_average_size_bytes{type="cache_reclaim",uuid="12345678-1234-1234-1234-123456789abc"} 0 +node_bcachefs_btree_write_average_size_bytes{type="init_next_bset",uuid="12345678-1234-1234-1234-123456789abc"} 24064 +node_bcachefs_btree_write_average_size_bytes{type="initial",uuid="12345678-1234-1234-1234-123456789abc"} 110592 +node_bcachefs_btree_write_average_size_bytes{type="interior",uuid="12345678-1234-1234-1234-123456789abc"} 354 +node_bcachefs_btree_write_average_size_bytes{type="journal_reclaim",uuid="12345678-1234-1234-1234-123456789abc"} 405 +# HELP node_bcachefs_btree_writes_total Number of btree writes by type. +# TYPE node_bcachefs_btree_writes_total counter +node_bcachefs_btree_writes_total{type="cache_reclaim",uuid="12345678-1234-1234-1234-123456789abc"} 0 +node_bcachefs_btree_writes_total{type="init_next_bset",uuid="12345678-1234-1234-1234-123456789abc"} 6647 +node_bcachefs_btree_writes_total{type="initial",uuid="12345678-1234-1234-1234-123456789abc"} 19088 +node_bcachefs_btree_writes_total{type="interior",uuid="12345678-1234-1234-1234-123456789abc"} 16788 +node_bcachefs_btree_writes_total{type="journal_reclaim",uuid="12345678-1234-1234-1234-123456789abc"} 541080 +# HELP node_bcachefs_compression_compressed_bytes Compressed size by algorithm. +# TYPE node_bcachefs_compression_compressed_bytes gauge +node_bcachefs_compression_compressed_bytes{algorithm="incompressible",uuid="12345678-1234-1234-1234-123456789abc"} 5.905580032e+09 +node_bcachefs_compression_compressed_bytes{algorithm="lz4",uuid="12345678-1234-1234-1234-123456789abc"} 2.07232172032e+10 +# HELP node_bcachefs_compression_uncompressed_bytes Uncompressed size by algorithm. +# TYPE node_bcachefs_compression_uncompressed_bytes gauge +node_bcachefs_compression_uncompressed_bytes{algorithm="incompressible",uuid="12345678-1234-1234-1234-123456789abc"} 5.905580032e+09 +node_bcachefs_compression_uncompressed_bytes{algorithm="lz4",uuid="12345678-1234-1234-1234-123456789abc"} 7.1940702208e+10 +# HELP node_bcachefs_device_bucket_size_bytes Bucket size in bytes. +# TYPE node_bcachefs_device_bucket_size_bytes gauge +node_bcachefs_device_bucket_size_bytes{device="0",uuid="12345678-1234-1234-1234-123456789abc"} 524288 +# HELP node_bcachefs_device_buckets Total number of buckets. +# TYPE node_bcachefs_device_buckets gauge +node_bcachefs_device_buckets{device="0",uuid="12345678-1234-1234-1234-123456789abc"} 524288 +# HELP node_bcachefs_device_durability Device durability setting. +# TYPE node_bcachefs_device_durability gauge +node_bcachefs_device_durability{device="0",uuid="12345678-1234-1234-1234-123456789abc"} 1 +# HELP node_bcachefs_device_info Device information. +# TYPE node_bcachefs_device_info gauge +node_bcachefs_device_info{device="0",label="ssd.ssd1",state="rw",uuid="12345678-1234-1234-1234-123456789abc"} 1 +# HELP node_bcachefs_device_io_done_bytes_total IO bytes by operation type and data type. +# TYPE node_bcachefs_device_io_done_bytes_total counter +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="0",operation="read",uuid="12345678-1234-1234-1234-123456789abc"} 4.411097088e+09 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="0",operation="write",uuid="12345678-1234-1234-1234-123456789abc"} 1.171456e+06 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="0",operation="read",uuid="12345678-1234-1234-1234-123456789abc"} 3.989504e+06 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="0",operation="write",uuid="12345678-1234-1234-1234-123456789abc"} 3.1417344e+07 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="0",operation="read",uuid="12345678-1234-1234-1234-123456789abc"} 5.768222552064e+12 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="0",operation="write",uuid="12345678-1234-1234-1234-123456789abc"} 3.919681536e+10 +# HELP node_bcachefs_device_io_errors_total IO errors by error type. +# TYPE node_bcachefs_device_io_errors_total counter +node_bcachefs_device_io_errors_total{device="0",type="checksum",uuid="12345678-1234-1234-1234-123456789abc"} 0 +node_bcachefs_device_io_errors_total{device="0",type="read",uuid="12345678-1234-1234-1234-123456789abc"} 197346 +node_bcachefs_device_io_errors_total{device="0",type="write",uuid="12345678-1234-1234-1234-123456789abc"} 0 +# HELP node_bcachefs_errors_total Error count by error type. +# TYPE node_bcachefs_errors_total counter +node_bcachefs_errors_total{error_type="btree_node_read_err",uuid="12345678-1234-1234-1234-123456789abc"} 5 +node_bcachefs_errors_total{error_type="checksum_err",uuid="12345678-1234-1234-1234-123456789abc"} 2 +# HELP node_bcachefs_info Filesystem information. +# TYPE node_bcachefs_info gauge +node_bcachefs_info{uuid="12345678-1234-1234-1234-123456789abc"} 1 # HELP node_bonding_active Number of active slaves per bonding interface. # TYPE node_bonding_active gauge node_bonding_active{master="bond0"} 0 @@ -3034,6 +3097,7 @@ node_schedstat_waiting_seconds_total{cpu="1"} 364107.263788241 # TYPE node_scrape_collector_success gauge node_scrape_collector_success{collector="arp"} 1 node_scrape_collector_success{collector="bcache"} 1 +node_scrape_collector_success{collector="bcachefs"} 1 node_scrape_collector_success{collector="bonding"} 1 node_scrape_collector_success{collector="btrfs"} 1 node_scrape_collector_success{collector="buddyinfo"} 1 diff --git a/collector/fixtures/e2e-output.txt b/collector/fixtures/e2e-output.txt index 9d59cab31e..1b77d9596e 100644 --- a/collector/fixtures/e2e-output.txt +++ b/collector/fixtures/e2e-output.txt @@ -58,8 +58,10 @@ # TYPE go_threads gauge # HELP node_arp_entries ARP entries by device # TYPE node_arp_entries gauge -node_arp_entries{device="eth0"} 3 -node_arp_entries{device="eth1"} 3 +node_arp_entries{device="enp0s20f0u5"} 1 +node_arp_entries{device="enp0s20f0u7u2"} 4 +node_arp_entries{device="enp86s0"} 5 +node_arp_entries{device="podman0"} 1 # HELP node_bcache_active_journal_entries Number of journal entries that are newer than the index. # TYPE node_bcache_active_journal_entries gauge node_bcache_active_journal_entries{uuid="deaddd54-c735-46d5-868e-f331c5fd7c74"} 1 @@ -117,12 +119,6 @@ node_bcache_io_errors{cache_device="cache0",uuid="deaddd54-c735-46d5-868e-f331c5 # HELP node_bcache_metadata_written_bytes_total Sum of all non data writes (btree writes and all other metadata). # TYPE node_bcache_metadata_written_bytes_total counter node_bcache_metadata_written_bytes_total{cache_device="cache0",uuid="deaddd54-c735-46d5-868e-f331c5fd7c74"} 512 -# HELP node_bcache_priority_stats_metadata_percent Bcache's metadata overhead. -# TYPE node_bcache_priority_stats_metadata_percent gauge -node_bcache_priority_stats_metadata_percent{cache_device="cache0",uuid="deaddd54-c735-46d5-868e-f331c5fd7c74"} 0 -# HELP node_bcache_priority_stats_unused_percent The percentage of the cache that doesn't contain any data. -# TYPE node_bcache_priority_stats_unused_percent gauge -node_bcache_priority_stats_unused_percent{cache_device="cache0",uuid="deaddd54-c735-46d5-868e-f331c5fd7c74"} 99 # HELP node_bcache_root_usage_percent Percentage of the root btree node in use (tree depth increases if too high). # TYPE node_bcache_root_usage_percent gauge node_bcache_root_usage_percent{uuid="deaddd54-c735-46d5-868e-f331c5fd7c74"} 0 @@ -144,6 +140,597 @@ node_bcache_writeback_rate_proportional_term{backing_device="bdev0",uuid="deaddd # HELP node_bcache_written_bytes_total Sum of all data that has been written to the cache. # TYPE node_bcache_written_bytes_total counter node_bcache_written_bytes_total{cache_device="cache0",uuid="deaddd54-c735-46d5-868e-f331c5fd7c74"} 0 +# HELP node_bcachefs_accounting_key_to_wb_slowpath_total Bcachefs counter accounting_key_to_wb_slowpath since filesystem creation. +# TYPE node_bcachefs_accounting_key_to_wb_slowpath_total counter +node_bcachefs_accounting_key_to_wb_slowpath_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.4105502e+07 +# HELP node_bcachefs_bkey_pack_pos_fail_total Bcachefs counter bkey_pack_pos_fail since filesystem creation. +# TYPE node_bcachefs_bkey_pack_pos_fail_total counter +node_bcachefs_bkey_pack_pos_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_btree_cache_cannibalize_lock_fail_total Bcachefs counter btree_cache_cannibalize_lock_fail since filesystem creation. +# TYPE node_bcachefs_btree_cache_cannibalize_lock_fail_total counter +node_bcachefs_btree_cache_cannibalize_lock_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 24213 +# HELP node_bcachefs_btree_cache_cannibalize_lock_total Bcachefs counter btree_cache_cannibalize_lock since filesystem creation. +# TYPE node_bcachefs_btree_cache_cannibalize_lock_total counter +node_bcachefs_btree_cache_cannibalize_lock_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.2061408e+07 +# HELP node_bcachefs_btree_cache_cannibalize_total Bcachefs counter btree_cache_cannibalize since filesystem creation. +# TYPE node_bcachefs_btree_cache_cannibalize_total counter +node_bcachefs_btree_cache_cannibalize_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.6587339e+07 +# HELP node_bcachefs_btree_cache_cannibalize_unlock_total Bcachefs counter btree_cache_cannibalize_unlock since filesystem creation. +# TYPE node_bcachefs_btree_cache_cannibalize_unlock_total counter +node_bcachefs_btree_cache_cannibalize_unlock_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.6260384e+07 +# HELP node_bcachefs_btree_cache_reap_total Bcachefs counter btree_cache_reap since filesystem creation. +# TYPE node_bcachefs_btree_cache_reap_total counter +node_bcachefs_btree_cache_reap_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.9068459e+07 +# HELP node_bcachefs_btree_cache_scan_total Bcachefs counter btree_cache_scan since filesystem creation. +# TYPE node_bcachefs_btree_cache_scan_total counter +node_bcachefs_btree_cache_scan_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 427545 +# HELP node_bcachefs_btree_cache_size_bytes Btree cache memory usage in bytes. +# TYPE node_bcachefs_btree_cache_size_bytes gauge +node_bcachefs_btree_cache_size_bytes{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.201170739e+09 +# HELP node_bcachefs_btree_key_cache_fill_total Bcachefs counter btree_key_cache_fill since filesystem creation. +# TYPE node_bcachefs_btree_key_cache_fill_total counter +node_bcachefs_btree_key_cache_fill_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.69308144e+08 +# HELP node_bcachefs_btree_node_alloc_total Bcachefs counter btree_node_alloc since filesystem creation. +# TYPE node_bcachefs_btree_node_alloc_total counter +node_bcachefs_btree_node_alloc_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 8.665587e+06 +# HELP node_bcachefs_btree_node_compact_total Bcachefs counter btree_node_compact since filesystem creation. +# TYPE node_bcachefs_btree_node_compact_total counter +node_bcachefs_btree_node_compact_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5.554425e+06 +# HELP node_bcachefs_btree_node_free_total Bcachefs counter btree_node_free since filesystem creation. +# TYPE node_bcachefs_btree_node_free_total counter +node_bcachefs_btree_node_free_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.4112667e+07 +# HELP node_bcachefs_btree_node_merge_attempt_total Bcachefs counter btree_node_merge_attempt since filesystem creation. +# TYPE node_bcachefs_btree_node_merge_attempt_total counter +node_bcachefs_btree_node_merge_attempt_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.5868895e+07 +# HELP node_bcachefs_btree_node_merge_total Bcachefs counter btree_node_merge since filesystem creation. +# TYPE node_bcachefs_btree_node_merge_total counter +node_bcachefs_btree_node_merge_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 559684 +# HELP node_bcachefs_btree_node_read_total Bcachefs counter btree_node_read since filesystem creation. +# TYPE node_bcachefs_btree_node_read_total counter +node_bcachefs_btree_node_read_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 7.0225874e+07 +# HELP node_bcachefs_btree_node_rewrite_total Bcachefs counter btree_node_rewrite since filesystem creation. +# TYPE node_bcachefs_btree_node_rewrite_total counter +node_bcachefs_btree_node_rewrite_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.130316e+06 +# HELP node_bcachefs_btree_node_set_root_total Bcachefs counter btree_node_set_root since filesystem creation. +# TYPE node_bcachefs_btree_node_set_root_total counter +node_bcachefs_btree_node_set_root_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 77958 +# HELP node_bcachefs_btree_node_split_total Bcachefs counter btree_node_split since filesystem creation. +# TYPE node_bcachefs_btree_node_split_total counter +node_bcachefs_btree_node_split_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 710571 +# HELP node_bcachefs_btree_node_write_total Bcachefs counter btree_node_write since filesystem creation. +# TYPE node_bcachefs_btree_node_write_total counter +node_bcachefs_btree_node_write_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.4796849e+08 +# HELP node_bcachefs_btree_path_relock_fail_total Bcachefs counter btree_path_relock_fail since filesystem creation. +# TYPE node_bcachefs_btree_path_relock_fail_total counter +node_bcachefs_btree_path_relock_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5.6213103e+07 +# HELP node_bcachefs_btree_path_upgrade_fail_total Bcachefs counter btree_path_upgrade_fail since filesystem creation. +# TYPE node_bcachefs_btree_path_upgrade_fail_total counter +node_bcachefs_btree_path_upgrade_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.103667e+06 +# HELP node_bcachefs_btree_reserve_get_fail_total Bcachefs counter btree_reserve_get_fail since filesystem creation. +# TYPE node_bcachefs_btree_reserve_get_fail_total counter +node_bcachefs_btree_reserve_get_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 11706 +# HELP node_bcachefs_btree_write_average_size_bytes Average btree write size by type. +# TYPE node_bcachefs_btree_write_average_size_bytes gauge +node_bcachefs_btree_write_average_size_bytes{type="cache_reclaim",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 720 +node_bcachefs_btree_write_average_size_bytes{type="init_next_bset",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 28876 +node_bcachefs_btree_write_average_size_bytes{type="initial",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 102400 +node_bcachefs_btree_write_average_size_bytes{type="interior",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1290 +node_bcachefs_btree_write_average_size_bytes{type="journal_reclaim",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 697 +# HELP node_bcachefs_btree_writes_total Number of btree writes by type. +# TYPE node_bcachefs_btree_writes_total counter +node_bcachefs_btree_writes_total{type="cache_reclaim",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 14401 +node_bcachefs_btree_writes_total{type="init_next_bset",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.055926e+06 +node_bcachefs_btree_writes_total{type="initial",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.298401e+06 +node_bcachefs_btree_writes_total{type="interior",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.035363e+06 +node_bcachefs_btree_writes_total{type="journal_reclaim",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.6903805e+07 +# HELP node_bcachefs_bucket_alloc_fail_total Bcachefs counter bucket_alloc_fail since filesystem creation. +# TYPE node_bcachefs_bucket_alloc_fail_total counter +node_bcachefs_bucket_alloc_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.1156091e+07 +# HELP node_bcachefs_bucket_alloc_from_stripe_total Bcachefs counter bucket_alloc_from_stripe since filesystem creation. +# TYPE node_bcachefs_bucket_alloc_from_stripe_total counter +node_bcachefs_bucket_alloc_from_stripe_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_bucket_alloc_total Bcachefs counter bucket_alloc since filesystem creation. +# TYPE node_bcachefs_bucket_alloc_total counter +node_bcachefs_bucket_alloc_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.7363674e+07 +# HELP node_bcachefs_bucket_discard_fast_total Bcachefs counter bucket_discard_fast since filesystem creation. +# TYPE node_bcachefs_bucket_discard_fast_total counter +node_bcachefs_bucket_discard_fast_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 10204 +# HELP node_bcachefs_bucket_discard_fast_worker_total Bcachefs counter bucket_discard_fast_worker since filesystem creation. +# TYPE node_bcachefs_bucket_discard_fast_worker_total counter +node_bcachefs_bucket_discard_fast_worker_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4012 +# HELP node_bcachefs_bucket_discard_total Bcachefs counter bucket_discard since filesystem creation. +# TYPE node_bcachefs_bucket_discard_total counter +node_bcachefs_bucket_discard_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.4751388e+07 +# HELP node_bcachefs_bucket_discard_worker_total Bcachefs counter bucket_discard_worker since filesystem creation. +# TYPE node_bcachefs_bucket_discard_worker_total counter +node_bcachefs_bucket_discard_worker_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 7.021501e+06 +# HELP node_bcachefs_bucket_invalidate_total Bcachefs counter bucket_invalidate since filesystem creation. +# TYPE node_bcachefs_bucket_invalidate_total counter +node_bcachefs_bucket_invalidate_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.483205e+06 +# HELP node_bcachefs_cached_ptr_drop_total Bcachefs counter cached_ptr_drop since filesystem creation. +# TYPE node_bcachefs_cached_ptr_drop_total counter +node_bcachefs_cached_ptr_drop_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.201170739e+09 +# HELP node_bcachefs_compression_compressed_bytes Compressed size by algorithm. +# TYPE node_bcachefs_compression_compressed_bytes gauge +node_bcachefs_compression_compressed_bytes{algorithm="gzip",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_compression_compressed_bytes{algorithm="incompressible",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.187472557998e+13 +node_bcachefs_compression_compressed_bytes{algorithm="lz4",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5.2505975193e+10 +node_bcachefs_compression_compressed_bytes{algorithm="lz4_old",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_compression_compressed_bytes{algorithm="zstd",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.42665652224e+11 +# HELP node_bcachefs_compression_uncompressed_bytes Uncompressed size by algorithm. +# TYPE node_bcachefs_compression_uncompressed_bytes gauge +node_bcachefs_compression_uncompressed_bytes{algorithm="gzip",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_compression_uncompressed_bytes{algorithm="incompressible",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.187472557998e+13 +node_bcachefs_compression_uncompressed_bytes{algorithm="lz4",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 7.6450417868e+10 +node_bcachefs_compression_uncompressed_bytes{algorithm="lz4_old",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_compression_uncompressed_bytes{algorithm="zstd",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.47466319872e+11 +# HELP node_bcachefs_copygc_total Bcachefs counter copygc since filesystem creation. +# TYPE node_bcachefs_copygc_total counter +node_bcachefs_copygc_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 424790 +# HELP node_bcachefs_copygc_wait_obsolete_total Bcachefs counter copygc_wait_obsolete since filesystem creation. +# TYPE node_bcachefs_copygc_wait_obsolete_total counter +node_bcachefs_copygc_wait_obsolete_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 537321 +# HELP node_bcachefs_data_read_bounce_total Bcachefs counter data_read_bounce since filesystem creation. +# TYPE node_bcachefs_data_read_bounce_total counter +node_bcachefs_data_read_bounce_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.5052058e+08 +# HELP node_bcachefs_data_read_fail_and_poison_total Bcachefs counter data_read_fail_and_poison since filesystem creation. +# TYPE node_bcachefs_data_read_fail_and_poison_total counter +node_bcachefs_data_read_fail_and_poison_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_data_read_hole_total Bcachefs counter data_read_hole since filesystem creation. +# TYPE node_bcachefs_data_read_hole_total counter +node_bcachefs_data_read_hole_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.858174650941e+12 +# HELP node_bcachefs_data_read_inline_total Bcachefs counter data_read_inline since filesystem creation. +# TYPE node_bcachefs_data_read_inline_total counter +node_bcachefs_data_read_inline_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.5998753177e+10 +# HELP node_bcachefs_data_read_narrow_crcs_fail_total Bcachefs counter data_read_narrow_crcs_fail since filesystem creation. +# TYPE node_bcachefs_data_read_narrow_crcs_fail_total counter +node_bcachefs_data_read_narrow_crcs_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1779 +# HELP node_bcachefs_data_read_narrow_crcs_total Bcachefs counter data_read_narrow_crcs since filesystem creation. +# TYPE node_bcachefs_data_read_narrow_crcs_total counter +node_bcachefs_data_read_narrow_crcs_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 18529 +# HELP node_bcachefs_data_read_nopromote_already_promoted_total Bcachefs counter data_read_nopromote_already_promoted since filesystem creation. +# TYPE node_bcachefs_data_read_nopromote_already_promoted_total counter +node_bcachefs_data_read_nopromote_already_promoted_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.11037452e+08 +# HELP node_bcachefs_data_read_nopromote_congested_total Bcachefs counter data_read_nopromote_congested since filesystem creation. +# TYPE node_bcachefs_data_read_nopromote_congested_total counter +node_bcachefs_data_read_nopromote_congested_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.913847e+06 +# HELP node_bcachefs_data_read_nopromote_may_not_total Bcachefs counter data_read_nopromote_may_not since filesystem creation. +# TYPE node_bcachefs_data_read_nopromote_may_not_total counter +node_bcachefs_data_read_nopromote_may_not_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.0206095e+07 +# HELP node_bcachefs_data_read_nopromote_total Bcachefs counter data_read_nopromote since filesystem creation. +# TYPE node_bcachefs_data_read_nopromote_total counter +node_bcachefs_data_read_nopromote_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.42468868e+08 +# HELP node_bcachefs_data_read_nopromote_unwritten_total Bcachefs counter data_read_nopromote_unwritten since filesystem creation. +# TYPE node_bcachefs_data_read_nopromote_unwritten_total counter +node_bcachefs_data_read_nopromote_unwritten_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_data_read_promote_total Bcachefs counter data_read_promote since filesystem creation. +# TYPE node_bcachefs_data_read_promote_total counter +node_bcachefs_data_read_promote_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.19833053184e+11 +# HELP node_bcachefs_data_read_retry_total Bcachefs counter data_read_retry since filesystem creation. +# TYPE node_bcachefs_data_read_retry_total counter +node_bcachefs_data_read_retry_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.2404675e+07 +# HELP node_bcachefs_data_read_reuse_race_total Bcachefs counter data_read_reuse_race since filesystem creation. +# TYPE node_bcachefs_data_read_reuse_race_total counter +node_bcachefs_data_read_reuse_race_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 201095 +# HELP node_bcachefs_data_read_split_total Bcachefs counter data_read_split since filesystem creation. +# TYPE node_bcachefs_data_read_split_total counter +node_bcachefs_data_read_split_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.18590695e+08 +# HELP node_bcachefs_data_read_total Bcachefs counter data_read since filesystem creation. +# TYPE node_bcachefs_data_read_total counter +node_bcachefs_data_read_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.8928267436032e+13 +# HELP node_bcachefs_data_update_fail_total Bcachefs counter data_update_fail since filesystem creation. +# TYPE node_bcachefs_data_update_fail_total counter +node_bcachefs_data_update_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.138166333e+09 +# HELP node_bcachefs_data_update_in_flight_total Bcachefs counter data_update_in_flight since filesystem creation. +# TYPE node_bcachefs_data_update_in_flight_total counter +node_bcachefs_data_update_in_flight_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.978784e+06 +# HELP node_bcachefs_data_update_key_fail_total Bcachefs counter data_update_key_fail since filesystem creation. +# TYPE node_bcachefs_data_update_key_fail_total counter +node_bcachefs_data_update_key_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.4373939404e+10 +# HELP node_bcachefs_data_update_key_total Bcachefs counter data_update_key since filesystem creation. +# TYPE node_bcachefs_data_update_key_total counter +node_bcachefs_data_update_key_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.00275460453171e+14 +# HELP node_bcachefs_data_update_no_io_total Bcachefs counter data_update_no_io since filesystem creation. +# TYPE node_bcachefs_data_update_no_io_total counter +node_bcachefs_data_update_no_io_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.00824357273e+11 +# HELP node_bcachefs_data_update_noop_obsolete_total Bcachefs counter data_update_noop_obsolete since filesystem creation. +# TYPE node_bcachefs_data_update_noop_obsolete_total counter +node_bcachefs_data_update_noop_obsolete_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_data_update_pred_total Bcachefs counter data_update_pred since filesystem creation. +# TYPE node_bcachefs_data_update_pred_total counter +node_bcachefs_data_update_pred_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.947802324992e+13 +# HELP node_bcachefs_data_update_read_total Bcachefs counter data_update_read since filesystem creation. +# TYPE node_bcachefs_data_update_read_total counter +node_bcachefs_data_update_read_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 8.9390295338188e+13 +# HELP node_bcachefs_data_update_start_fail_obsolete_total Bcachefs counter data_update_start_fail_obsolete since filesystem creation. +# TYPE node_bcachefs_data_update_start_fail_obsolete_total counter +node_bcachefs_data_update_start_fail_obsolete_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.14018822443e+11 +# HELP node_bcachefs_data_update_total Bcachefs counter data_update since filesystem creation. +# TYPE node_bcachefs_data_update_total counter +node_bcachefs_data_update_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.4206847997116416e+16 +# HELP node_bcachefs_data_update_useless_write_fail_total Bcachefs counter data_update_useless_write_fail since filesystem creation. +# TYPE node_bcachefs_data_update_useless_write_fail_total counter +node_bcachefs_data_update_useless_write_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5.30428461e+09 +# HELP node_bcachefs_data_update_write_total Bcachefs counter data_update_write since filesystem creation. +# TYPE node_bcachefs_data_update_write_total counter +node_bcachefs_data_update_write_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.7163493018828e+13 +# HELP node_bcachefs_data_write_total Bcachefs counter data_write since filesystem creation. +# TYPE node_bcachefs_data_write_total counter +node_bcachefs_data_write_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.0780769764966e+13 +# HELP node_bcachefs_device_bucket_size_bytes Bucket size in bytes. +# TYPE node_bcachefs_device_bucket_size_bytes gauge +node_bcachefs_device_bucket_size_bytes{device="10",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 524288 +node_bcachefs_device_bucket_size_bytes{device="4",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.097152e+06 +node_bcachefs_device_bucket_size_bytes{device="6",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.097152e+06 +node_bcachefs_device_bucket_size_bytes{device="7",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.097152e+06 +node_bcachefs_device_bucket_size_bytes{device="8",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.097152e+06 +# HELP node_bcachefs_device_buckets Total number of buckets. +# TYPE node_bcachefs_device_buckets gauge +node_bcachefs_device_buckets{device="10",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 953880 +node_bcachefs_device_buckets{device="4",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 7.629824e+06 +node_bcachefs_device_buckets{device="6",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 953864 +node_bcachefs_device_buckets{device="7",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.907723e+06 +node_bcachefs_device_buckets{device="8",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.384637e+06 +# HELP node_bcachefs_device_durability Device durability setting. +# TYPE node_bcachefs_device_durability gauge +node_bcachefs_device_durability{device="10",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_durability{device="4",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_durability{device="6",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_durability{device="7",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_durability{device="8",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +# HELP node_bcachefs_device_info Device information. +# TYPE node_bcachefs_device_info gauge +node_bcachefs_device_info{device="10",label="disk-10",state="[rw] ro evacuating spare",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_info{device="4",label="disk-4",state="[rw] ro evacuating spare",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_info{device="6",label="disk-6",state="[rw] ro evacuating spare",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_info{device="7",label="disk-7",state="[rw] ro evacuating spare",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_info{device="8",label="disk-8",state="[rw] ro evacuating spare",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +# HELP node_bcachefs_device_io_done_bytes_total IO bytes by operation type and data type. +# TYPE node_bcachefs_device_io_done_bytes_total counter +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5.24288e+06 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 16384 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.193358848e+09 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 589824 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 8.912896e+06 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.767671263232e+12 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 7.82753624064e+11 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="btree",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="cached",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.432028966912e+12 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="journal",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_discard",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="need_gc_gens",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="parity",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 86016 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 645120 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 86016 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 645120 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 86016 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 677376 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 86016 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 645120 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 86016 +node_bcachefs_device_io_done_bytes_total{data_type="sb",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 645120 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="stripe",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="unstriped",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="10",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.02313054208e+11 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="10",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.52377698304e+11 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="4",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.770452246528e+12 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="4",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.258285805568e+12 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="6",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.10019098624e+11 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="6",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5.62070339584e+11 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="7",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5.53932742656e+11 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="7",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.8382641152e+11 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="8",operation="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.115020546048e+12 +node_bcachefs_device_io_done_bytes_total{data_type="user",device="8",operation="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.072510210048e+12 +# HELP node_bcachefs_device_io_errors_total IO errors by error type. +# TYPE node_bcachefs_device_io_errors_total counter +node_bcachefs_device_io_errors_total{device="10",type="checksum",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_errors_total{device="10",type="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_errors_total{device="10",type="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_errors_total{device="4",type="checksum",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_errors_total{device="4",type="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 197416 +node_bcachefs_device_io_errors_total{device="4",type="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 205 +node_bcachefs_device_io_errors_total{device="6",type="checksum",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5 +node_bcachefs_device_io_errors_total{device="6",type="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 18828 +node_bcachefs_device_io_errors_total{device="6",type="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +node_bcachefs_device_io_errors_total{device="7",type="checksum",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 18 +node_bcachefs_device_io_errors_total{device="7",type="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_errors_total{device="7",type="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_errors_total{device="8",type="checksum",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_errors_total{device="8",type="read",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +node_bcachefs_device_io_errors_total{device="8",type="write",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_error_throw_total Bcachefs counter error_throw since filesystem creation. +# TYPE node_bcachefs_error_throw_total counter +node_bcachefs_error_throw_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.719910958e+09 +# HELP node_bcachefs_errors_total Error count by error type. +# TYPE node_bcachefs_errors_total counter +node_bcachefs_errors_total{error_type="accounting_mismatch",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6 +node_bcachefs_errors_total{error_type="alloc_key_cached_sectors_wrong",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4537 +node_bcachefs_errors_total{error_type="alloc_key_data_type_wrong",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4415 +node_bcachefs_errors_total{error_type="alloc_key_dirty_sectors_wrong",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4538 +node_bcachefs_errors_total{error_type="alloc_key_to_missing_lru_entry",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4517 +node_bcachefs_errors_total{error_type="backpointer_to_missing_ptr",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 45480 +node_bcachefs_errors_total{error_type="bset_bad_csum",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2 +node_bcachefs_errors_total{error_type="btree_node_data_missing",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2 +node_bcachefs_errors_total{error_type="btree_node_topology_bad_max_key",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2 +node_bcachefs_errors_total{error_type="extent_io_opts_not_set",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.1299659571772285e+19 +node_bcachefs_errors_total{error_type="extent_ptrs_all_invalid",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2 +node_bcachefs_errors_total{error_type="extent_ptrs_all_invalid_but_cached",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 44612 +node_bcachefs_errors_total{error_type="lru_entry_bad",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4537 +node_bcachefs_errors_total{error_type="ptr_to_missing_backpointer",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 44112 +node_bcachefs_errors_total{error_type="reconcile_work_incorrectly_set",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 113913 +node_bcachefs_errors_total{error_type="subvol_missing",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 194 +node_bcachefs_errors_total{error_type="validate_error_in_commit",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2 +node_bcachefs_errors_total{error_type="vfs_bad_inode_rm",uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 121 +# HELP node_bcachefs_evacuate_bucket_total Bcachefs counter evacuate_bucket since filesystem creation. +# TYPE node_bcachefs_evacuate_bucket_total counter +node_bcachefs_evacuate_bucket_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.735247e+06 +# HELP node_bcachefs_fsync_total Bcachefs counter fsync since filesystem creation. +# TYPE node_bcachefs_fsync_total counter +node_bcachefs_fsync_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.515147e+06 +# HELP node_bcachefs_gc_gens_end_total Bcachefs counter gc_gens_end since filesystem creation. +# TYPE node_bcachefs_gc_gens_end_total counter +node_bcachefs_gc_gens_end_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3 +# HELP node_bcachefs_gc_gens_start_total Bcachefs counter gc_gens_start since filesystem creation. +# TYPE node_bcachefs_gc_gens_start_total counter +node_bcachefs_gc_gens_start_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3 +# HELP node_bcachefs_info Filesystem information. +# TYPE node_bcachefs_info gauge +node_bcachefs_info{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1 +# HELP node_bcachefs_journal_full_total Bcachefs counter journal_full since filesystem creation. +# TYPE node_bcachefs_journal_full_total counter +node_bcachefs_journal_full_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 94587 +# HELP node_bcachefs_journal_reclaim_finish_total Bcachefs counter journal_reclaim_finish since filesystem creation. +# TYPE node_bcachefs_journal_reclaim_finish_total counter +node_bcachefs_journal_reclaim_finish_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.06994135e+08 +# HELP node_bcachefs_journal_reclaim_start_total Bcachefs counter journal_reclaim_start since filesystem creation. +# TYPE node_bcachefs_journal_reclaim_start_total counter +node_bcachefs_journal_reclaim_start_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.06994135e+08 +# HELP node_bcachefs_journal_res_get_blocked_total Bcachefs counter journal_res_get_blocked since filesystem creation. +# TYPE node_bcachefs_journal_res_get_blocked_total counter +node_bcachefs_journal_res_get_blocked_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 74696 +# HELP node_bcachefs_journal_write_total Bcachefs counter journal_write since filesystem creation. +# TYPE node_bcachefs_journal_write_total counter +node_bcachefs_journal_write_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.5458801e+07 +# HELP node_bcachefs_open_bucket_alloc_fail_total Bcachefs counter open_bucket_alloc_fail since filesystem creation. +# TYPE node_bcachefs_open_bucket_alloc_fail_total counter +node_bcachefs_open_bucket_alloc_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_reconcile_btree_total Bcachefs counter reconcile_btree since filesystem creation. +# TYPE node_bcachefs_reconcile_btree_total counter +node_bcachefs_reconcile_btree_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.158221066e+09 +# HELP node_bcachefs_reconcile_clear_scan_total Bcachefs counter reconcile_clear_scan since filesystem creation. +# TYPE node_bcachefs_reconcile_clear_scan_total counter +node_bcachefs_reconcile_clear_scan_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 11 +# HELP node_bcachefs_reconcile_data_total Bcachefs counter reconcile_data since filesystem creation. +# TYPE node_bcachefs_reconcile_data_total counter +node_bcachefs_reconcile_data_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_reconcile_phys_total Bcachefs counter reconcile_phys since filesystem creation. +# TYPE node_bcachefs_reconcile_phys_total counter +node_bcachefs_reconcile_phys_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.9928939526553e+13 +# HELP node_bcachefs_reconcile_scan_device_total Bcachefs counter reconcile_scan_device since filesystem creation. +# TYPE node_bcachefs_reconcile_scan_device_total counter +node_bcachefs_reconcile_scan_device_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 8.3562883710976e+13 +# HELP node_bcachefs_reconcile_scan_fs_total Bcachefs counter reconcile_scan_fs since filesystem creation. +# TYPE node_bcachefs_reconcile_scan_fs_total counter +node_bcachefs_reconcile_scan_fs_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_reconcile_scan_inum_total Bcachefs counter reconcile_scan_inum since filesystem creation. +# TYPE node_bcachefs_reconcile_scan_inum_total counter +node_bcachefs_reconcile_scan_inum_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_reconcile_scan_metadata_total Bcachefs counter reconcile_scan_metadata since filesystem creation. +# TYPE node_bcachefs_reconcile_scan_metadata_total counter +node_bcachefs_reconcile_scan_metadata_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_reconcile_scan_pending_total Bcachefs counter reconcile_scan_pending since filesystem creation. +# TYPE node_bcachefs_reconcile_scan_pending_total counter +node_bcachefs_reconcile_scan_pending_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_reconcile_set_pending_total Bcachefs counter reconcile_set_pending since filesystem creation. +# TYPE node_bcachefs_reconcile_set_pending_total counter +node_bcachefs_reconcile_set_pending_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 3.1138512896e+10 +# HELP node_bcachefs_sectors_alloc_total Bcachefs counter sectors_alloc since filesystem creation. +# TYPE node_bcachefs_sectors_alloc_total counter +node_bcachefs_sectors_alloc_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.2534432556646e+13 +# HELP node_bcachefs_stripe_alloc_total Bcachefs counter stripe_alloc since filesystem creation. +# TYPE node_bcachefs_stripe_alloc_total counter +node_bcachefs_stripe_alloc_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_stripe_create_fail_total Bcachefs counter stripe_create_fail since filesystem creation. +# TYPE node_bcachefs_stripe_create_fail_total counter +node_bcachefs_stripe_create_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_stripe_create_total Bcachefs counter stripe_create since filesystem creation. +# TYPE node_bcachefs_stripe_create_total counter +node_bcachefs_stripe_create_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_stripe_delete_total Bcachefs counter stripe_delete since filesystem creation. +# TYPE node_bcachefs_stripe_delete_total counter +node_bcachefs_stripe_delete_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_stripe_reuse_total Bcachefs counter stripe_reuse since filesystem creation. +# TYPE node_bcachefs_stripe_reuse_total counter +node_bcachefs_stripe_reuse_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_stripe_update_bucket_total Bcachefs counter stripe_update_bucket since filesystem creation. +# TYPE node_bcachefs_stripe_update_bucket_total counter +node_bcachefs_stripe_update_bucket_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_stripe_update_extent_fail_total Bcachefs counter stripe_update_extent_fail since filesystem creation. +# TYPE node_bcachefs_stripe_update_extent_fail_total counter +node_bcachefs_stripe_update_extent_fail_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_stripe_update_extent_total Bcachefs counter stripe_update_extent since filesystem creation. +# TYPE node_bcachefs_stripe_update_extent_total counter +node_bcachefs_stripe_update_extent_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_sync_fs_total Bcachefs counter sync_fs since filesystem creation. +# TYPE node_bcachefs_sync_fs_total counter +node_bcachefs_sync_fs_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 42023 +# HELP node_bcachefs_trans_blocked_journal_reclaim_total Bcachefs counter trans_blocked_journal_reclaim since filesystem creation. +# TYPE node_bcachefs_trans_blocked_journal_reclaim_total counter +node_bcachefs_trans_blocked_journal_reclaim_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 78 +# HELP node_bcachefs_trans_restart_btree_node_reused_total Bcachefs counter trans_restart_btree_node_reused since filesystem creation. +# TYPE node_bcachefs_trans_restart_btree_node_reused_total counter +node_bcachefs_trans_restart_btree_node_reused_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 53354 +# HELP node_bcachefs_trans_restart_btree_node_split_total Bcachefs counter trans_restart_btree_node_split since filesystem creation. +# TYPE node_bcachefs_trans_restart_btree_node_split_total counter +node_bcachefs_trans_restart_btree_node_split_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 100190 +# HELP node_bcachefs_trans_restart_fault_inject_total Bcachefs counter trans_restart_fault_inject since filesystem creation. +# TYPE node_bcachefs_trans_restart_fault_inject_total counter +node_bcachefs_trans_restart_fault_inject_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_injected_total Bcachefs counter trans_restart_injected since filesystem creation. +# TYPE node_bcachefs_trans_restart_injected_total counter +node_bcachefs_trans_restart_injected_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_iter_upgrade_total Bcachefs counter trans_restart_iter_upgrade since filesystem creation. +# TYPE node_bcachefs_trans_restart_iter_upgrade_total counter +node_bcachefs_trans_restart_iter_upgrade_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_journal_preres_get_total Bcachefs counter trans_restart_journal_preres_get since filesystem creation. +# TYPE node_bcachefs_trans_restart_journal_preres_get_total counter +node_bcachefs_trans_restart_journal_preres_get_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_journal_reclaim_total Bcachefs counter trans_restart_journal_reclaim since filesystem creation. +# TYPE node_bcachefs_trans_restart_journal_reclaim_total counter +node_bcachefs_trans_restart_journal_reclaim_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_journal_res_get_total Bcachefs counter trans_restart_journal_res_get since filesystem creation. +# TYPE node_bcachefs_trans_restart_journal_res_get_total counter +node_bcachefs_trans_restart_journal_res_get_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_key_cache_key_realloced_total Bcachefs counter trans_restart_key_cache_key_realloced since filesystem creation. +# TYPE node_bcachefs_trans_restart_key_cache_key_realloced_total counter +node_bcachefs_trans_restart_key_cache_key_realloced_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_key_cache_raced_total Bcachefs counter trans_restart_key_cache_raced since filesystem creation. +# TYPE node_bcachefs_trans_restart_key_cache_raced_total counter +node_bcachefs_trans_restart_key_cache_raced_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_key_cache_upgrade_total Bcachefs counter trans_restart_key_cache_upgrade since filesystem creation. +# TYPE node_bcachefs_trans_restart_key_cache_upgrade_total counter +node_bcachefs_trans_restart_key_cache_upgrade_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_mark_replicas_total Bcachefs counter trans_restart_mark_replicas since filesystem creation. +# TYPE node_bcachefs_trans_restart_mark_replicas_total counter +node_bcachefs_trans_restart_mark_replicas_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_mem_realloced_total Bcachefs counter trans_restart_mem_realloced since filesystem creation. +# TYPE node_bcachefs_trans_restart_mem_realloced_total counter +node_bcachefs_trans_restart_mem_realloced_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6111 +# HELP node_bcachefs_trans_restart_memory_allocation_failure_total Bcachefs counter trans_restart_memory_allocation_failure since filesystem creation. +# TYPE node_bcachefs_trans_restart_memory_allocation_failure_total counter +node_bcachefs_trans_restart_memory_allocation_failure_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.7513334e+07 +# HELP node_bcachefs_trans_restart_relock_after_fill_total Bcachefs counter trans_restart_relock_after_fill since filesystem creation. +# TYPE node_bcachefs_trans_restart_relock_after_fill_total counter +node_bcachefs_trans_restart_relock_after_fill_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_relock_key_cache_fill_obsolete_total Bcachefs counter trans_restart_relock_key_cache_fill_obsolete since filesystem creation. +# TYPE node_bcachefs_trans_restart_relock_key_cache_fill_obsolete_total counter +node_bcachefs_trans_restart_relock_key_cache_fill_obsolete_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_relock_next_node_total Bcachefs counter trans_restart_relock_next_node since filesystem creation. +# TYPE node_bcachefs_trans_restart_relock_next_node_total counter +node_bcachefs_trans_restart_relock_next_node_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 22087 +# HELP node_bcachefs_trans_restart_relock_parent_for_fill_obsolete_total Bcachefs counter trans_restart_relock_parent_for_fill_obsolete since filesystem creation. +# TYPE node_bcachefs_trans_restart_relock_parent_for_fill_obsolete_total counter +node_bcachefs_trans_restart_relock_parent_for_fill_obsolete_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2581 +# HELP node_bcachefs_trans_restart_relock_path_intent_total Bcachefs counter trans_restart_relock_path_intent since filesystem creation. +# TYPE node_bcachefs_trans_restart_relock_path_intent_total counter +node_bcachefs_trans_restart_relock_path_intent_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 298090 +# HELP node_bcachefs_trans_restart_relock_path_total Bcachefs counter trans_restart_relock_path since filesystem creation. +# TYPE node_bcachefs_trans_restart_relock_path_total counter +node_bcachefs_trans_restart_relock_path_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.752728e+07 +# HELP node_bcachefs_trans_restart_relock_total Bcachefs counter trans_restart_relock since filesystem creation. +# TYPE node_bcachefs_trans_restart_relock_total counter +node_bcachefs_trans_restart_relock_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2.806875e+06 +# HELP node_bcachefs_trans_restart_split_race_total Bcachefs counter trans_restart_split_race since filesystem creation. +# TYPE node_bcachefs_trans_restart_split_race_total counter +node_bcachefs_trans_restart_split_race_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_too_many_iters_total Bcachefs counter trans_restart_too_many_iters since filesystem creation. +# TYPE node_bcachefs_trans_restart_too_many_iters_total counter +node_bcachefs_trans_restart_too_many_iters_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_traverse_total Bcachefs counter trans_restart_traverse since filesystem creation. +# TYPE node_bcachefs_trans_restart_traverse_total counter +node_bcachefs_trans_restart_traverse_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_upgrade_total Bcachefs counter trans_restart_upgrade since filesystem creation. +# TYPE node_bcachefs_trans_restart_upgrade_total counter +node_bcachefs_trans_restart_upgrade_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.055154e+06 +# HELP node_bcachefs_trans_restart_would_deadlock_recursion_limit_total Bcachefs counter trans_restart_would_deadlock_recursion_limit since filesystem creation. +# TYPE node_bcachefs_trans_restart_would_deadlock_recursion_limit_total counter +node_bcachefs_trans_restart_would_deadlock_recursion_limit_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 0 +# HELP node_bcachefs_trans_restart_would_deadlock_total Bcachefs counter trans_restart_would_deadlock since filesystem creation. +# TYPE node_bcachefs_trans_restart_would_deadlock_total counter +node_bcachefs_trans_restart_would_deadlock_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 1.025983e+06 +# HELP node_bcachefs_trans_restart_would_deadlock_write_total Bcachefs counter trans_restart_would_deadlock_write since filesystem creation. +# TYPE node_bcachefs_trans_restart_would_deadlock_write_total counter +node_bcachefs_trans_restart_would_deadlock_write_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 2 +# HELP node_bcachefs_trans_restart_write_buffer_flush_total Bcachefs counter trans_restart_write_buffer_flush since filesystem creation. +# TYPE node_bcachefs_trans_restart_write_buffer_flush_total counter +node_bcachefs_trans_restart_write_buffer_flush_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 5.1706894e+07 +# HELP node_bcachefs_trans_traverse_all_total Bcachefs counter trans_traverse_all since filesystem creation. +# TYPE node_bcachefs_trans_traverse_all_total counter +node_bcachefs_trans_traverse_all_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 7.8477746e+07 +# HELP node_bcachefs_transaction_commit_total Bcachefs counter transaction_commit since filesystem creation. +# TYPE node_bcachefs_transaction_commit_total counter +node_bcachefs_transaction_commit_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.338059022e+09 +# HELP node_bcachefs_write_buffer_flush_slowpath_total Bcachefs counter write_buffer_flush_slowpath since filesystem creation. +# TYPE node_bcachefs_write_buffer_flush_slowpath_total counter +node_bcachefs_write_buffer_flush_slowpath_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 21031 +# HELP node_bcachefs_write_buffer_flush_sync_total Bcachefs counter write_buffer_flush_sync since filesystem creation. +# TYPE node_bcachefs_write_buffer_flush_sync_total counter +node_bcachefs_write_buffer_flush_sync_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 6.024402e+06 +# HELP node_bcachefs_write_buffer_flush_total Bcachefs counter write_buffer_flush since filesystem creation. +# TYPE node_bcachefs_write_buffer_flush_total counter +node_bcachefs_write_buffer_flush_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.8370568e+07 +# HELP node_bcachefs_write_buffer_maybe_flush_total Bcachefs counter write_buffer_maybe_flush since filesystem creation. +# TYPE node_bcachefs_write_buffer_maybe_flush_total counter +node_bcachefs_write_buffer_maybe_flush_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 4.7412849e+07 +# HELP node_bcachefs_write_super_total Bcachefs counter write_super since filesystem creation. +# TYPE node_bcachefs_write_super_total counter +node_bcachefs_write_super_total{uuid="deadbeef-1234-5678-9012-abcdefabcdef"} 30277 # HELP node_bonding_active Number of active slaves per bonding interface. # TYPE node_bonding_active gauge node_bonding_active{master="bond0"} 0 @@ -221,69 +808,6 @@ node_btrfs_used_bytes{block_group_type="metadata",mode="raid1",uuid="0abb23a9-57 node_btrfs_used_bytes{block_group_type="metadata",mode="raid6",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 114688 node_btrfs_used_bytes{block_group_type="system",mode="raid1",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 16384 node_btrfs_used_bytes{block_group_type="system",mode="raid6",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 16384 -# HELP node_buddyinfo_blocks Count of free blocks according to size. -# TYPE node_buddyinfo_blocks gauge -node_buddyinfo_blocks{node="0",size="0",zone="DMA"} 1 -node_buddyinfo_blocks{node="0",size="0",zone="DMA32"} 759 -node_buddyinfo_blocks{node="0",size="0",zone="Normal"} 4381 -node_buddyinfo_blocks{node="0",size="1",zone="DMA"} 0 -node_buddyinfo_blocks{node="0",size="1",zone="DMA32"} 572 -node_buddyinfo_blocks{node="0",size="1",zone="Normal"} 1093 -node_buddyinfo_blocks{node="0",size="10",zone="DMA"} 3 -node_buddyinfo_blocks{node="0",size="10",zone="DMA32"} 0 -node_buddyinfo_blocks{node="0",size="10",zone="Normal"} 0 -node_buddyinfo_blocks{node="0",size="2",zone="DMA"} 1 -node_buddyinfo_blocks{node="0",size="2",zone="DMA32"} 791 -node_buddyinfo_blocks{node="0",size="2",zone="Normal"} 185 -node_buddyinfo_blocks{node="0",size="3",zone="DMA"} 0 -node_buddyinfo_blocks{node="0",size="3",zone="DMA32"} 475 -node_buddyinfo_blocks{node="0",size="3",zone="Normal"} 1530 -node_buddyinfo_blocks{node="0",size="4",zone="DMA"} 2 -node_buddyinfo_blocks{node="0",size="4",zone="DMA32"} 194 -node_buddyinfo_blocks{node="0",size="4",zone="Normal"} 567 -node_buddyinfo_blocks{node="0",size="5",zone="DMA"} 1 -node_buddyinfo_blocks{node="0",size="5",zone="DMA32"} 45 -node_buddyinfo_blocks{node="0",size="5",zone="Normal"} 102 -node_buddyinfo_blocks{node="0",size="6",zone="DMA"} 1 -node_buddyinfo_blocks{node="0",size="6",zone="DMA32"} 12 -node_buddyinfo_blocks{node="0",size="6",zone="Normal"} 4 -node_buddyinfo_blocks{node="0",size="7",zone="DMA"} 0 -node_buddyinfo_blocks{node="0",size="7",zone="DMA32"} 0 -node_buddyinfo_blocks{node="0",size="7",zone="Normal"} 0 -node_buddyinfo_blocks{node="0",size="8",zone="DMA"} 1 -node_buddyinfo_blocks{node="0",size="8",zone="DMA32"} 0 -node_buddyinfo_blocks{node="0",size="8",zone="Normal"} 0 -node_buddyinfo_blocks{node="0",size="9",zone="DMA"} 1 -node_buddyinfo_blocks{node="0",size="9",zone="DMA32"} 0 -node_buddyinfo_blocks{node="0",size="9",zone="Normal"} 0 -# HELP node_cgroups_cgroups Current cgroup number of the subsystem. -# TYPE node_cgroups_cgroups gauge -node_cgroups_cgroups{subsys_name="blkio"} 170 -node_cgroups_cgroups{subsys_name="cpu"} 172 -node_cgroups_cgroups{subsys_name="cpuacct"} 172 -node_cgroups_cgroups{subsys_name="cpuset"} 47 -node_cgroups_cgroups{subsys_name="devices"} 170 -node_cgroups_cgroups{subsys_name="freezer"} 47 -node_cgroups_cgroups{subsys_name="hugetlb"} 47 -node_cgroups_cgroups{subsys_name="memory"} 234 -node_cgroups_cgroups{subsys_name="net_cls"} 47 -node_cgroups_cgroups{subsys_name="perf_event"} 47 -node_cgroups_cgroups{subsys_name="pids"} 170 -node_cgroups_cgroups{subsys_name="rdma"} 1 -# HELP node_cgroups_enabled Current cgroup number of the subsystem. -# TYPE node_cgroups_enabled gauge -node_cgroups_enabled{subsys_name="blkio"} 1 -node_cgroups_enabled{subsys_name="cpu"} 1 -node_cgroups_enabled{subsys_name="cpuacct"} 1 -node_cgroups_enabled{subsys_name="cpuset"} 1 -node_cgroups_enabled{subsys_name="devices"} 1 -node_cgroups_enabled{subsys_name="freezer"} 1 -node_cgroups_enabled{subsys_name="hugetlb"} 1 -node_cgroups_enabled{subsys_name="memory"} 1 -node_cgroups_enabled{subsys_name="net_cls"} 1 -node_cgroups_enabled{subsys_name="perf_event"} 1 -node_cgroups_enabled{subsys_name="pids"} 1 -node_cgroups_enabled{subsys_name="rdma"} 1 # HELP node_context_switches_total Total number of context switches. # TYPE node_context_switches_total counter node_context_switches_total 3.8014093e+07 @@ -293,34 +817,12 @@ node_cooling_device_cur_state{name="0",type="Processor"} 0 # HELP node_cooling_device_max_state Maximum throttle state of the cooling device # TYPE node_cooling_device_max_state gauge node_cooling_device_max_state{name="0",type="Processor"} 3 -# HELP node_cpu_bug_info The `bugs` field of CPU information from /proc/cpuinfo taken from the first core. -# TYPE node_cpu_bug_info gauge -node_cpu_bug_info{bug="cpu_meltdown"} 1 -node_cpu_bug_info{bug="mds"} 1 -node_cpu_bug_info{bug="spectre_v1"} 1 -node_cpu_bug_info{bug="spectre_v2"} 1 # HELP node_cpu_core_throttles_total Number of times this CPU core has been throttled. # TYPE node_cpu_core_throttles_total counter node_cpu_core_throttles_total{core="0",package="0"} 5 node_cpu_core_throttles_total{core="0",package="1"} 0 node_cpu_core_throttles_total{core="1",package="0"} 0 node_cpu_core_throttles_total{core="1",package="1"} 9 -# HELP node_cpu_flag_info The `flags` field of CPU information from /proc/cpuinfo taken from the first core. -# TYPE node_cpu_flag_info gauge -node_cpu_flag_info{flag="aes"} 1 -node_cpu_flag_info{flag="avx"} 1 -node_cpu_flag_info{flag="avx2"} 1 -node_cpu_flag_info{flag="constant_tsc"} 1 -# HELP node_cpu_frequency_hertz CPU frequency in hertz from /proc/cpuinfo. -# TYPE node_cpu_frequency_hertz gauge -node_cpu_frequency_hertz{core="0",cpu="0",package="0"} 7.99998e+08 -node_cpu_frequency_hertz{core="0",cpu="4",package="0"} 7.99989e+08 -node_cpu_frequency_hertz{core="1",cpu="1",package="0"} 8.00037e+08 -node_cpu_frequency_hertz{core="1",cpu="5",package="0"} 8.00083e+08 -node_cpu_frequency_hertz{core="2",cpu="2",package="0"} 8.0001e+08 -node_cpu_frequency_hertz{core="2",cpu="6",package="0"} 8.00017e+08 -node_cpu_frequency_hertz{core="3",cpu="3",package="0"} 8.00028e+08 -node_cpu_frequency_hertz{core="3",cpu="7",package="0"} 8.0003e+08 # HELP node_cpu_guest_seconds_total Seconds the CPUs spent in guests (VMs) for each mode. # TYPE node_cpu_guest_seconds_total counter node_cpu_guest_seconds_total{cpu="0",mode="nice"} 0.01 @@ -339,16 +841,6 @@ node_cpu_guest_seconds_total{cpu="6",mode="nice"} 0.07 node_cpu_guest_seconds_total{cpu="6",mode="user"} 0.08 node_cpu_guest_seconds_total{cpu="7",mode="nice"} 0.08 node_cpu_guest_seconds_total{cpu="7",mode="user"} 0.09 -# HELP node_cpu_info CPU information from /proc/cpuinfo. -# TYPE node_cpu_info gauge -node_cpu_info{cachesize="8192 KB",core="0",cpu="0",family="6",microcode="0xb4",model="142",model_name="Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz",package="0",stepping="10",vendor="GenuineIntel"} 1 -node_cpu_info{cachesize="8192 KB",core="0",cpu="4",family="6",microcode="0xb4",model="142",model_name="Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz",package="0",stepping="10",vendor="GenuineIntel"} 1 -node_cpu_info{cachesize="8192 KB",core="1",cpu="1",family="6",microcode="0xb4",model="142",model_name="Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz",package="0",stepping="10",vendor="GenuineIntel"} 1 -node_cpu_info{cachesize="8192 KB",core="1",cpu="5",family="6",microcode="0xb4",model="142",model_name="Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz",package="0",stepping="10",vendor="GenuineIntel"} 1 -node_cpu_info{cachesize="8192 KB",core="2",cpu="2",family="6",microcode="0xb4",model="142",model_name="Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz",package="0",stepping="10",vendor="GenuineIntel"} 1 -node_cpu_info{cachesize="8192 KB",core="2",cpu="6",family="6",microcode="0xb4",model="142",model_name="Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz",package="0",stepping="10",vendor="GenuineIntel"} 1 -node_cpu_info{cachesize="8192 KB",core="3",cpu="3",family="6",microcode="0xb4",model="142",model_name="Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz",package="0",stepping="10",vendor="GenuineIntel"} 1 -node_cpu_info{cachesize="8192 KB",core="3",cpu="7",family="6",microcode="0xb4",model="142",model_name="Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz",package="0",stepping="10",vendor="GenuineIntel"} 1 # HELP node_cpu_isolated Whether each core is isolated, information from /sys/devices/system/cpu/isolated. # TYPE node_cpu_isolated gauge node_cpu_isolated{cpu="1"} 1 @@ -454,13 +946,6 @@ node_cpu_seconds_total{cpu="7",mode="softirq"} 0.31 node_cpu_seconds_total{cpu="7",mode="steal"} 0 node_cpu_seconds_total{cpu="7",mode="system"} 101.64 node_cpu_seconds_total{cpu="7",mode="user"} 290.98 -# HELP node_cpu_vulnerabilities_info Details of each CPU vulnerability reported by sysfs. The value of the series is an int encoded state of the vulnerability. The same state is stored as a string in the label -# TYPE node_cpu_vulnerabilities_info gauge -node_cpu_vulnerabilities_info{codename="itlb_multihit",mitigation="",state="not affected"} 1 -node_cpu_vulnerabilities_info{codename="mds",mitigation="",state="vulnerable"} 1 -node_cpu_vulnerabilities_info{codename="retbleed",mitigation="untrained return thunk; SMT enabled with STIBP protection",state="mitigation"} 1 -node_cpu_vulnerabilities_info{codename="spectre_v1",mitigation="usercopy/swapgs barriers and __user pointer sanitization",state="mitigation"} 1 -node_cpu_vulnerabilities_info{codename="spectre_v2",mitigation="Retpolines, IBPB: conditional, STIBP: always-on, RSB filling, PBRSB-eIBRS: Not affected",state="mitigation"} 1 # HELP node_disk_ata_rotation_rate_rpm ATA disk rotation rate in RPMs (0 for SSDs). # TYPE node_disk_ata_rotation_rate_rpm gauge node_disk_ata_rotation_rate_rpm{device="sda"} 7200 @@ -725,53 +1210,6 @@ node_disk_written_bytes_total{device="vda"} 1.0938236928e+11 # HELP node_dmi_info A metric with a constant '1' value labeled by bios_date, bios_release, bios_vendor, bios_version, board_asset_tag, board_name, board_serial, board_vendor, board_version, chassis_asset_tag, chassis_serial, chassis_vendor, chassis_version, product_family, product_name, product_serial, product_sku, product_uuid, product_version, system_vendor if provided by DMI. # TYPE node_dmi_info gauge node_dmi_info{bios_date="04/12/2021",bios_release="2.2",bios_vendor="Dell Inc.",bios_version="2.2.4",board_name="07PXPY",board_serial=".7N62AI2.GRTCL6944100GP.",board_vendor="Dell Inc.",board_version="A01",chassis_asset_tag="",chassis_serial="7N62AI2",chassis_vendor="Dell Inc.",chassis_version="",product_family="PowerEdge",product_name="PowerEdge R6515",product_serial="7N62AI2",product_sku="SKU=NotProvided;ModelName=PowerEdge R6515",product_uuid="83340ca8-cb49-4474-8c29-d2088ca84dd9",product_version="�[�",system_vendor="Dell Inc."} 1 -# HELP node_drbd_activitylog_writes_total Number of updates of the activity log area of the meta data. -# TYPE node_drbd_activitylog_writes_total counter -node_drbd_activitylog_writes_total{device="drbd1"} 1100 -# HELP node_drbd_application_pending Number of block I/O requests forwarded to DRBD, but not yet answered by DRBD. -# TYPE node_drbd_application_pending gauge -node_drbd_application_pending{device="drbd1"} 12348 -# HELP node_drbd_bitmap_writes_total Number of updates of the bitmap area of the meta data. -# TYPE node_drbd_bitmap_writes_total counter -node_drbd_bitmap_writes_total{device="drbd1"} 221 -# HELP node_drbd_connected Whether DRBD is connected to the peer. -# TYPE node_drbd_connected gauge -node_drbd_connected{device="drbd1"} 1 -# HELP node_drbd_disk_read_bytes_total Net data read from local hard disk; in bytes. -# TYPE node_drbd_disk_read_bytes_total counter -node_drbd_disk_read_bytes_total{device="drbd1"} 1.2154539008e+11 -# HELP node_drbd_disk_state_is_up_to_date Whether the disk of the node is up to date. -# TYPE node_drbd_disk_state_is_up_to_date gauge -node_drbd_disk_state_is_up_to_date{device="drbd1",node="local"} 1 -node_drbd_disk_state_is_up_to_date{device="drbd1",node="remote"} 1 -# HELP node_drbd_disk_written_bytes_total Net data written on local hard disk; in bytes. -# TYPE node_drbd_disk_written_bytes_total counter -node_drbd_disk_written_bytes_total{device="drbd1"} 2.8941845504e+10 -# HELP node_drbd_epochs Number of Epochs currently on the fly. -# TYPE node_drbd_epochs gauge -node_drbd_epochs{device="drbd1"} 1 -# HELP node_drbd_local_pending Number of open requests to the local I/O sub-system. -# TYPE node_drbd_local_pending gauge -node_drbd_local_pending{device="drbd1"} 12345 -# HELP node_drbd_network_received_bytes_total Total number of bytes received via the network. -# TYPE node_drbd_network_received_bytes_total counter -node_drbd_network_received_bytes_total{device="drbd1"} 1.0961011e+07 -# HELP node_drbd_network_sent_bytes_total Total number of bytes sent via the network. -# TYPE node_drbd_network_sent_bytes_total counter -node_drbd_network_sent_bytes_total{device="drbd1"} 1.7740228608e+10 -# HELP node_drbd_node_role_is_primary Whether the role of the node is in the primary state. -# TYPE node_drbd_node_role_is_primary gauge -node_drbd_node_role_is_primary{device="drbd1",node="local"} 1 -node_drbd_node_role_is_primary{device="drbd1",node="remote"} 1 -# HELP node_drbd_out_of_sync_bytes Amount of data known to be out of sync; in bytes. -# TYPE node_drbd_out_of_sync_bytes gauge -node_drbd_out_of_sync_bytes{device="drbd1"} 1.2645376e+07 -# HELP node_drbd_remote_pending Number of requests sent to the peer, but that have not yet been answered by the latter. -# TYPE node_drbd_remote_pending gauge -node_drbd_remote_pending{device="drbd1"} 12346 -# HELP node_drbd_remote_unacknowledged Number of requests received by the peer via the network connection, but that have not yet been answered. -# TYPE node_drbd_remote_unacknowledged gauge -node_drbd_remote_unacknowledged{device="drbd1"} 12347 # HELP node_edac_correctable_errors_total Total correctable memory errors. # TYPE node_edac_correctable_errors_total counter node_edac_correctable_errors_total{controller="0"} 1 @@ -858,11 +1296,53 @@ node_filefd_allocated 1024 # HELP node_filefd_maximum File descriptor statistics: maximum. # TYPE node_filefd_maximum gauge node_filefd_maximum 1.631329e+06 +# HELP node_filesystem_avail_bytes Filesystem space available to non-root users in bytes. +# TYPE node_filesystem_avail_bytes gauge +node_filesystem_avail_bytes{device="/dev/dm-2",device_error="",fstype="ext4",mountpoint="/"} 1.73242216448e+11 +# HELP node_filesystem_device_error Whether an error occurred while getting statistics for the given device. +# TYPE node_filesystem_device_error gauge +node_filesystem_device_error{device="/dev/dm-2",device_error="",fstype="ext4",mountpoint="/"} 0 +node_filesystem_device_error{device="/dev/sda",device_error="no such file or directory",fstype="ext4",mountpoint="/var/lib/kubelet/plugins/kubernetes.io/vsphere-volume/mounts/[vsanDatastore] bafb9e5a-8856-7e6c-699c-801844e77a4a/kubernetes-dynamic-pvc-3eba5bba-48a3-11e8-89ab-005056b92113.vmdk"} 1 +node_filesystem_device_error{device="/dev/sda",device_error="no such file or directory",fstype="ext4",mountpoint="/var/lib/kubelet/plugins/kubernetes.io/vsphere-volume/mounts/[vsanDatastore] bafb9e5a-8856-7e6c-699c-801844e77a4a/kubernetes-dynamic-pvc-3eba5bba-48a3-11e8-89ab-005056b92113.vmdk"} 1 +node_filesystem_device_error{device="/dev/sda3",device_error="no such file or directory",fstype="ext2",mountpoint="/boot"} 1 +node_filesystem_device_error{device="gvfsd-fuse",device_error="no such file or directory",fstype="fuse.gvfsd-fuse",mountpoint="/run/user/1000/gvfs"} 1 +node_filesystem_device_error{device="tmpfs",device_error="no such file or directory",fstype="tmpfs",mountpoint="/run"} 1 +node_filesystem_device_error{device="tmpfs",device_error="no such file or directory",fstype="tmpfs",mountpoint="/run/lock"} 1 +node_filesystem_device_error{device="tmpfs",device_error="no such file or directory",fstype="tmpfs",mountpoint="/run/user/1000"} 1 +# HELP node_filesystem_files Filesystem total file nodes. +# TYPE node_filesystem_files gauge +node_filesystem_files{device="/dev/dm-2",device_error="",fstype="ext4",mountpoint="/"} 0 +# HELP node_filesystem_files_free Filesystem total free file nodes. +# TYPE node_filesystem_files_free gauge +node_filesystem_files_free{device="/dev/dm-2",device_error="",fstype="ext4",mountpoint="/"} 0 +# HELP node_filesystem_free_bytes Filesystem free space in bytes. +# TYPE node_filesystem_free_bytes gauge +node_filesystem_free_bytes{device="/dev/dm-2",device_error="",fstype="ext4",mountpoint="/"} 1.76045584384e+11 +# HELP node_filesystem_mount_info Filesystem mount information. +# TYPE node_filesystem_mount_info gauge +node_filesystem_mount_info{device="/dev/dm-2",major="259",minor="2",mountpoint="/"} 1 +# HELP node_filesystem_purgeable_bytes Filesystem space available including purgeable space (MacOS specific). +# TYPE node_filesystem_purgeable_bytes gauge +node_filesystem_purgeable_bytes{device="/dev/dm-2",device_error="",fstype="ext4",mountpoint="/"} 0 +# HELP node_filesystem_readonly Filesystem read-only status. +# TYPE node_filesystem_readonly gauge +node_filesystem_readonly{device="/dev/dm-2",device_error="",fstype="ext4",mountpoint="/"} 0 +node_filesystem_readonly{device="/dev/sda",device_error="no such file or directory",fstype="ext4",mountpoint="/var/lib/kubelet/plugins/kubernetes.io/vsphere-volume/mounts/[vsanDatastore] bafb9e5a-8856-7e6c-699c-801844e77a4a/kubernetes-dynamic-pvc-3eba5bba-48a3-11e8-89ab-005056b92113.vmdk"} 0 +node_filesystem_readonly{device="/dev/sda",device_error="no such file or directory",fstype="ext4",mountpoint="/var/lib/kubelet/plugins/kubernetes.io/vsphere-volume/mounts/[vsanDatastore] bafb9e5a-8856-7e6c-699c-801844e77a4a/kubernetes-dynamic-pvc-3eba5bba-48a3-11e8-89ab-005056b92113.vmdk"} 0 +node_filesystem_readonly{device="/dev/sda3",device_error="no such file or directory",fstype="ext2",mountpoint="/boot"} 0 +node_filesystem_readonly{device="gvfsd-fuse",device_error="no such file or directory",fstype="fuse.gvfsd-fuse",mountpoint="/run/user/1000/gvfs"} 0 +node_filesystem_readonly{device="tmpfs",device_error="no such file or directory",fstype="tmpfs",mountpoint="/run"} 0 +node_filesystem_readonly{device="tmpfs",device_error="no such file or directory",fstype="tmpfs",mountpoint="/run/lock"} 0 +node_filesystem_readonly{device="tmpfs",device_error="no such file or directory",fstype="tmpfs",mountpoint="/run/user/1000"} 0 +# HELP node_filesystem_size_bytes Filesystem size in bytes. +# TYPE node_filesystem_size_bytes gauge +node_filesystem_size_bytes{device="/dev/dm-2",device_error="",fstype="ext4",mountpoint="/"} 5.11555141632e+11 # HELP node_forks_total Total number of forks. # TYPE node_forks_total counter node_forks_total 26442 # HELP node_hwmon_chip_names Annotation metric for human-readable chip names # TYPE node_hwmon_chip_names gauge +node_hwmon_chip_names{chip="bogus",chip_name="bogus"} 1 node_hwmon_chip_names{chip="nct6779",chip_name="nct6779"} 1 node_hwmon_chip_names{chip="platform_coretemp_0",chip_name="coretemp"} 1 node_hwmon_chip_names{chip="platform_coretemp_1",chip_name="coretemp"} 1 @@ -1197,120 +1677,6 @@ node_infiniband_unicast_packets_received_total{device="mlx4_0",port="2"} 0 # TYPE node_infiniband_unicast_packets_transmitted_total counter node_infiniband_unicast_packets_transmitted_total{device="mlx4_0",port="1"} 61239 node_infiniband_unicast_packets_transmitted_total{device="mlx4_0",port="2"} 0 -# HELP node_interrupts_total Interrupt details. -# TYPE node_interrupts_total counter -node_interrupts_total{cpu="0",devices="",info="APIC ICR read retries",type="RTR"} 0 -node_interrupts_total{cpu="0",devices="",info="Function call interrupts",type="CAL"} 148554 -node_interrupts_total{cpu="0",devices="",info="IRQ work interrupts",type="IWI"} 1.509379e+06 -node_interrupts_total{cpu="0",devices="",info="Local timer interrupts",type="LOC"} 1.74326351e+08 -node_interrupts_total{cpu="0",devices="",info="Machine check exceptions",type="MCE"} 0 -node_interrupts_total{cpu="0",devices="",info="Machine check polls",type="MCP"} 2406 -node_interrupts_total{cpu="0",devices="",info="Non-maskable interrupts",type="NMI"} 47 -node_interrupts_total{cpu="0",devices="",info="Performance monitoring interrupts",type="PMI"} 47 -node_interrupts_total{cpu="0",devices="",info="Rescheduling interrupts",type="RES"} 1.0847134e+07 -node_interrupts_total{cpu="0",devices="",info="Spurious interrupts",type="SPU"} 0 -node_interrupts_total{cpu="0",devices="",info="TLB shootdowns",type="TLB"} 1.0460334e+07 -node_interrupts_total{cpu="0",devices="",info="Thermal event interrupts",type="TRM"} 0 -node_interrupts_total{cpu="0",devices="",info="Threshold APIC interrupts",type="THR"} 0 -node_interrupts_total{cpu="0",devices="acpi",info="IR-IO-APIC-fasteoi",type="9"} 398553 -node_interrupts_total{cpu="0",devices="ahci",info="IR-PCI-MSI-edge",type="43"} 7.434032e+06 -node_interrupts_total{cpu="0",devices="dmar0",info="DMAR_MSI-edge",type="40"} 0 -node_interrupts_total{cpu="0",devices="dmar1",info="DMAR_MSI-edge",type="41"} 0 -node_interrupts_total{cpu="0",devices="ehci_hcd:usb1, mmc0",info="IR-IO-APIC-fasteoi",type="16"} 328511 -node_interrupts_total{cpu="0",devices="ehci_hcd:usb2",info="IR-IO-APIC-fasteoi",type="23"} 1.451445e+06 -node_interrupts_total{cpu="0",devices="i8042",info="IR-IO-APIC-edge",type="1"} 17960 -node_interrupts_total{cpu="0",devices="i8042",info="IR-IO-APIC-edge",type="12"} 380847 -node_interrupts_total{cpu="0",devices="i915",info="IR-PCI-MSI-edge",type="44"} 140636 -node_interrupts_total{cpu="0",devices="iwlwifi",info="IR-PCI-MSI-edge",type="46"} 4.3078464e+07 -node_interrupts_total{cpu="0",devices="mei_me",info="IR-PCI-MSI-edge",type="45"} 4 -node_interrupts_total{cpu="0",devices="rtc0",info="IR-IO-APIC-edge",type="8"} 1 -node_interrupts_total{cpu="0",devices="snd_hda_intel",info="IR-PCI-MSI-edge",type="47"} 350 -node_interrupts_total{cpu="0",devices="timer",info="IR-IO-APIC-edge",type="0"} 18 -node_interrupts_total{cpu="0",devices="xhci_hcd",info="IR-PCI-MSI-edge",type="42"} 378324 -node_interrupts_total{cpu="1",devices="",info="APIC ICR read retries",type="RTR"} 0 -node_interrupts_total{cpu="1",devices="",info="Function call interrupts",type="CAL"} 157441 -node_interrupts_total{cpu="1",devices="",info="IRQ work interrupts",type="IWI"} 2.411776e+06 -node_interrupts_total{cpu="1",devices="",info="Local timer interrupts",type="LOC"} 1.35776678e+08 -node_interrupts_total{cpu="1",devices="",info="Machine check exceptions",type="MCE"} 0 -node_interrupts_total{cpu="1",devices="",info="Machine check polls",type="MCP"} 2399 -node_interrupts_total{cpu="1",devices="",info="Non-maskable interrupts",type="NMI"} 5031 -node_interrupts_total{cpu="1",devices="",info="Performance monitoring interrupts",type="PMI"} 5031 -node_interrupts_total{cpu="1",devices="",info="Rescheduling interrupts",type="RES"} 9.111507e+06 -node_interrupts_total{cpu="1",devices="",info="Spurious interrupts",type="SPU"} 0 -node_interrupts_total{cpu="1",devices="",info="TLB shootdowns",type="TLB"} 9.918429e+06 -node_interrupts_total{cpu="1",devices="",info="Thermal event interrupts",type="TRM"} 0 -node_interrupts_total{cpu="1",devices="",info="Threshold APIC interrupts",type="THR"} 0 -node_interrupts_total{cpu="1",devices="acpi",info="IR-IO-APIC-fasteoi",type="9"} 2320 -node_interrupts_total{cpu="1",devices="ahci",info="IR-PCI-MSI-edge",type="43"} 8.092205e+06 -node_interrupts_total{cpu="1",devices="dmar0",info="DMAR_MSI-edge",type="40"} 0 -node_interrupts_total{cpu="1",devices="dmar1",info="DMAR_MSI-edge",type="41"} 0 -node_interrupts_total{cpu="1",devices="ehci_hcd:usb1, mmc0",info="IR-IO-APIC-fasteoi",type="16"} 322879 -node_interrupts_total{cpu="1",devices="ehci_hcd:usb2",info="IR-IO-APIC-fasteoi",type="23"} 3.333499e+06 -node_interrupts_total{cpu="1",devices="i8042",info="IR-IO-APIC-edge",type="1"} 105 -node_interrupts_total{cpu="1",devices="i8042",info="IR-IO-APIC-edge",type="12"} 1021 -node_interrupts_total{cpu="1",devices="i915",info="IR-PCI-MSI-edge",type="44"} 226313 -node_interrupts_total{cpu="1",devices="iwlwifi",info="IR-PCI-MSI-edge",type="46"} 130 -node_interrupts_total{cpu="1",devices="mei_me",info="IR-PCI-MSI-edge",type="45"} 22 -node_interrupts_total{cpu="1",devices="rtc0",info="IR-IO-APIC-edge",type="8"} 0 -node_interrupts_total{cpu="1",devices="snd_hda_intel",info="IR-PCI-MSI-edge",type="47"} 224 -node_interrupts_total{cpu="1",devices="timer",info="IR-IO-APIC-edge",type="0"} 0 -node_interrupts_total{cpu="1",devices="xhci_hcd",info="IR-PCI-MSI-edge",type="42"} 1.734637e+06 -node_interrupts_total{cpu="2",devices="",info="APIC ICR read retries",type="RTR"} 0 -node_interrupts_total{cpu="2",devices="",info="Function call interrupts",type="CAL"} 142912 -node_interrupts_total{cpu="2",devices="",info="IRQ work interrupts",type="IWI"} 1.512975e+06 -node_interrupts_total{cpu="2",devices="",info="Local timer interrupts",type="LOC"} 1.68393257e+08 -node_interrupts_total{cpu="2",devices="",info="Machine check exceptions",type="MCE"} 0 -node_interrupts_total{cpu="2",devices="",info="Machine check polls",type="MCP"} 2399 -node_interrupts_total{cpu="2",devices="",info="Non-maskable interrupts",type="NMI"} 6211 -node_interrupts_total{cpu="2",devices="",info="Performance monitoring interrupts",type="PMI"} 6211 -node_interrupts_total{cpu="2",devices="",info="Rescheduling interrupts",type="RES"} 1.5999335e+07 -node_interrupts_total{cpu="2",devices="",info="Spurious interrupts",type="SPU"} 0 -node_interrupts_total{cpu="2",devices="",info="TLB shootdowns",type="TLB"} 1.0494258e+07 -node_interrupts_total{cpu="2",devices="",info="Thermal event interrupts",type="TRM"} 0 -node_interrupts_total{cpu="2",devices="",info="Threshold APIC interrupts",type="THR"} 0 -node_interrupts_total{cpu="2",devices="acpi",info="IR-IO-APIC-fasteoi",type="9"} 824 -node_interrupts_total{cpu="2",devices="ahci",info="IR-PCI-MSI-edge",type="43"} 6.478877e+06 -node_interrupts_total{cpu="2",devices="dmar0",info="DMAR_MSI-edge",type="40"} 0 -node_interrupts_total{cpu="2",devices="dmar1",info="DMAR_MSI-edge",type="41"} 0 -node_interrupts_total{cpu="2",devices="ehci_hcd:usb1, mmc0",info="IR-IO-APIC-fasteoi",type="16"} 293782 -node_interrupts_total{cpu="2",devices="ehci_hcd:usb2",info="IR-IO-APIC-fasteoi",type="23"} 1.092032e+06 -node_interrupts_total{cpu="2",devices="i8042",info="IR-IO-APIC-edge",type="1"} 28 -node_interrupts_total{cpu="2",devices="i8042",info="IR-IO-APIC-edge",type="12"} 240 -node_interrupts_total{cpu="2",devices="i915",info="IR-PCI-MSI-edge",type="44"} 347 -node_interrupts_total{cpu="2",devices="iwlwifi",info="IR-PCI-MSI-edge",type="46"} 460171 -node_interrupts_total{cpu="2",devices="mei_me",info="IR-PCI-MSI-edge",type="45"} 0 -node_interrupts_total{cpu="2",devices="rtc0",info="IR-IO-APIC-edge",type="8"} 0 -node_interrupts_total{cpu="2",devices="snd_hda_intel",info="IR-PCI-MSI-edge",type="47"} 0 -node_interrupts_total{cpu="2",devices="timer",info="IR-IO-APIC-edge",type="0"} 0 -node_interrupts_total{cpu="2",devices="xhci_hcd",info="IR-PCI-MSI-edge",type="42"} 440240 -node_interrupts_total{cpu="3",devices="",info="APIC ICR read retries",type="RTR"} 0 -node_interrupts_total{cpu="3",devices="",info="Function call interrupts",type="CAL"} 155528 -node_interrupts_total{cpu="3",devices="",info="IRQ work interrupts",type="IWI"} 2.428828e+06 -node_interrupts_total{cpu="3",devices="",info="Local timer interrupts",type="LOC"} 1.30980079e+08 -node_interrupts_total{cpu="3",devices="",info="Machine check exceptions",type="MCE"} 0 -node_interrupts_total{cpu="3",devices="",info="Machine check polls",type="MCP"} 2399 -node_interrupts_total{cpu="3",devices="",info="Non-maskable interrupts",type="NMI"} 4968 -node_interrupts_total{cpu="3",devices="",info="Performance monitoring interrupts",type="PMI"} 4968 -node_interrupts_total{cpu="3",devices="",info="Rescheduling interrupts",type="RES"} 7.45726e+06 -node_interrupts_total{cpu="3",devices="",info="Spurious interrupts",type="SPU"} 0 -node_interrupts_total{cpu="3",devices="",info="TLB shootdowns",type="TLB"} 1.0345022e+07 -node_interrupts_total{cpu="3",devices="",info="Thermal event interrupts",type="TRM"} 0 -node_interrupts_total{cpu="3",devices="",info="Threshold APIC interrupts",type="THR"} 0 -node_interrupts_total{cpu="3",devices="acpi",info="IR-IO-APIC-fasteoi",type="9"} 863 -node_interrupts_total{cpu="3",devices="ahci",info="IR-PCI-MSI-edge",type="43"} 7.492252e+06 -node_interrupts_total{cpu="3",devices="dmar0",info="DMAR_MSI-edge",type="40"} 0 -node_interrupts_total{cpu="3",devices="dmar1",info="DMAR_MSI-edge",type="41"} 0 -node_interrupts_total{cpu="3",devices="ehci_hcd:usb1, mmc0",info="IR-IO-APIC-fasteoi",type="16"} 351412 -node_interrupts_total{cpu="3",devices="ehci_hcd:usb2",info="IR-IO-APIC-fasteoi",type="23"} 2.644609e+06 -node_interrupts_total{cpu="3",devices="i8042",info="IR-IO-APIC-edge",type="1"} 28 -node_interrupts_total{cpu="3",devices="i8042",info="IR-IO-APIC-edge",type="12"} 198 -node_interrupts_total{cpu="3",devices="i915",info="IR-PCI-MSI-edge",type="44"} 633 -node_interrupts_total{cpu="3",devices="iwlwifi",info="IR-PCI-MSI-edge",type="46"} 290 -node_interrupts_total{cpu="3",devices="mei_me",info="IR-PCI-MSI-edge",type="45"} 0 -node_interrupts_total{cpu="3",devices="rtc0",info="IR-IO-APIC-edge",type="8"} 0 -node_interrupts_total{cpu="3",devices="snd_hda_intel",info="IR-PCI-MSI-edge",type="47"} 0 -node_interrupts_total{cpu="3",devices="timer",info="IR-IO-APIC-edge",type="0"} 0 -node_interrupts_total{cpu="3",devices="xhci_hcd",info="IR-PCI-MSI-edge",type="42"} 2.434308e+06 # HELP node_intr_total Total number of interrupts serviced. # TYPE node_intr_total counter node_intr_total 8.885917e+06 @@ -1365,211 +1731,6 @@ node_ipvs_outgoing_bytes_total 0 # HELP node_ipvs_outgoing_packets_total The total number of outgoing packets. # TYPE node_ipvs_outgoing_packets_total counter node_ipvs_outgoing_packets_total 0 -# HELP node_ksmd_full_scans_total ksmd 'full_scans' file. -# TYPE node_ksmd_full_scans_total counter -node_ksmd_full_scans_total 323 -# HELP node_ksmd_merge_across_nodes ksmd 'merge_across_nodes' file. -# TYPE node_ksmd_merge_across_nodes gauge -node_ksmd_merge_across_nodes 1 -# HELP node_ksmd_pages_shared ksmd 'pages_shared' file. -# TYPE node_ksmd_pages_shared gauge -node_ksmd_pages_shared 1 -# HELP node_ksmd_pages_sharing ksmd 'pages_sharing' file. -# TYPE node_ksmd_pages_sharing gauge -node_ksmd_pages_sharing 255 -# HELP node_ksmd_pages_to_scan ksmd 'pages_to_scan' file. -# TYPE node_ksmd_pages_to_scan gauge -node_ksmd_pages_to_scan 100 -# HELP node_ksmd_pages_unshared ksmd 'pages_unshared' file. -# TYPE node_ksmd_pages_unshared gauge -node_ksmd_pages_unshared 0 -# HELP node_ksmd_pages_volatile ksmd 'pages_volatile' file. -# TYPE node_ksmd_pages_volatile gauge -node_ksmd_pages_volatile 0 -# HELP node_ksmd_run ksmd 'run' file. -# TYPE node_ksmd_run gauge -node_ksmd_run 1 -# HELP node_ksmd_sleep_seconds ksmd 'sleep_millisecs' file. -# TYPE node_ksmd_sleep_seconds gauge -node_ksmd_sleep_seconds 0.02 -# HELP node_lnstat_allocs_total linux network cache stats -# TYPE node_lnstat_allocs_total counter -node_lnstat_allocs_total{cpu="0",subsystem="arp_cache"} 1 -node_lnstat_allocs_total{cpu="0",subsystem="ndisc_cache"} 240 -node_lnstat_allocs_total{cpu="1",subsystem="arp_cache"} 13 -node_lnstat_allocs_total{cpu="1",subsystem="ndisc_cache"} 252 -# HELP node_lnstat_delete_list_total linux network cache stats -# TYPE node_lnstat_delete_list_total counter -node_lnstat_delete_list_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_delete_list_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_delete_list_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_delete_list_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_delete_total linux network cache stats -# TYPE node_lnstat_delete_total counter -node_lnstat_delete_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_delete_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_delete_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_delete_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_destroys_total linux network cache stats -# TYPE node_lnstat_destroys_total counter -node_lnstat_destroys_total{cpu="0",subsystem="arp_cache"} 2 -node_lnstat_destroys_total{cpu="0",subsystem="ndisc_cache"} 241 -node_lnstat_destroys_total{cpu="1",subsystem="arp_cache"} 14 -node_lnstat_destroys_total{cpu="1",subsystem="ndisc_cache"} 253 -# HELP node_lnstat_drop_total linux network cache stats -# TYPE node_lnstat_drop_total counter -node_lnstat_drop_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_drop_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_drop_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_drop_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_early_drop_total linux network cache stats -# TYPE node_lnstat_early_drop_total counter -node_lnstat_early_drop_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_early_drop_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_early_drop_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_early_drop_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_entries_total linux network cache stats -# TYPE node_lnstat_entries_total counter -node_lnstat_entries_total{cpu="0",subsystem="arp_cache"} 20 -node_lnstat_entries_total{cpu="0",subsystem="ndisc_cache"} 36 -node_lnstat_entries_total{cpu="0",subsystem="nf_conntrack"} 33 -node_lnstat_entries_total{cpu="1",subsystem="arp_cache"} 20 -node_lnstat_entries_total{cpu="1",subsystem="ndisc_cache"} 36 -node_lnstat_entries_total{cpu="1",subsystem="nf_conntrack"} 33 -node_lnstat_entries_total{cpu="2",subsystem="nf_conntrack"} 33 -node_lnstat_entries_total{cpu="3",subsystem="nf_conntrack"} 33 -# HELP node_lnstat_expect_create_total linux network cache stats -# TYPE node_lnstat_expect_create_total counter -node_lnstat_expect_create_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_expect_create_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_expect_create_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_expect_create_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_expect_delete_total linux network cache stats -# TYPE node_lnstat_expect_delete_total counter -node_lnstat_expect_delete_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_expect_delete_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_expect_delete_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_expect_delete_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_expect_new_total linux network cache stats -# TYPE node_lnstat_expect_new_total counter -node_lnstat_expect_new_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_expect_new_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_expect_new_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_expect_new_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_forced_gc_runs_total linux network cache stats -# TYPE node_lnstat_forced_gc_runs_total counter -node_lnstat_forced_gc_runs_total{cpu="0",subsystem="arp_cache"} 10 -node_lnstat_forced_gc_runs_total{cpu="0",subsystem="ndisc_cache"} 249 -node_lnstat_forced_gc_runs_total{cpu="1",subsystem="arp_cache"} 22 -node_lnstat_forced_gc_runs_total{cpu="1",subsystem="ndisc_cache"} 261 -# HELP node_lnstat_found_total linux network cache stats -# TYPE node_lnstat_found_total counter -node_lnstat_found_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_found_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_found_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_found_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_hash_grows_total linux network cache stats -# TYPE node_lnstat_hash_grows_total counter -node_lnstat_hash_grows_total{cpu="0",subsystem="arp_cache"} 3 -node_lnstat_hash_grows_total{cpu="0",subsystem="ndisc_cache"} 242 -node_lnstat_hash_grows_total{cpu="1",subsystem="arp_cache"} 15 -node_lnstat_hash_grows_total{cpu="1",subsystem="ndisc_cache"} 254 -# HELP node_lnstat_hits_total linux network cache stats -# TYPE node_lnstat_hits_total counter -node_lnstat_hits_total{cpu="0",subsystem="arp_cache"} 5 -node_lnstat_hits_total{cpu="0",subsystem="ndisc_cache"} 244 -node_lnstat_hits_total{cpu="1",subsystem="arp_cache"} 17 -node_lnstat_hits_total{cpu="1",subsystem="ndisc_cache"} 256 -# HELP node_lnstat_icmp_error_total linux network cache stats -# TYPE node_lnstat_icmp_error_total counter -node_lnstat_icmp_error_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_icmp_error_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_icmp_error_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_icmp_error_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_ignore_total linux network cache stats -# TYPE node_lnstat_ignore_total counter -node_lnstat_ignore_total{cpu="0",subsystem="nf_conntrack"} 22666 -node_lnstat_ignore_total{cpu="1",subsystem="nf_conntrack"} 22180 -node_lnstat_ignore_total{cpu="2",subsystem="nf_conntrack"} 22740 -node_lnstat_ignore_total{cpu="3",subsystem="nf_conntrack"} 22152 -# HELP node_lnstat_insert_failed_total linux network cache stats -# TYPE node_lnstat_insert_failed_total counter -node_lnstat_insert_failed_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_insert_failed_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_insert_failed_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_insert_failed_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_insert_total linux network cache stats -# TYPE node_lnstat_insert_total counter -node_lnstat_insert_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_insert_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_insert_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_insert_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_invalid_total linux network cache stats -# TYPE node_lnstat_invalid_total counter -node_lnstat_invalid_total{cpu="0",subsystem="nf_conntrack"} 3 -node_lnstat_invalid_total{cpu="1",subsystem="nf_conntrack"} 2 -node_lnstat_invalid_total{cpu="2",subsystem="nf_conntrack"} 1 -node_lnstat_invalid_total{cpu="3",subsystem="nf_conntrack"} 47 -# HELP node_lnstat_lookups_total linux network cache stats -# TYPE node_lnstat_lookups_total counter -node_lnstat_lookups_total{cpu="0",subsystem="arp_cache"} 4 -node_lnstat_lookups_total{cpu="0",subsystem="ndisc_cache"} 243 -node_lnstat_lookups_total{cpu="1",subsystem="arp_cache"} 16 -node_lnstat_lookups_total{cpu="1",subsystem="ndisc_cache"} 255 -# HELP node_lnstat_new_total linux network cache stats -# TYPE node_lnstat_new_total counter -node_lnstat_new_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_new_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_new_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_new_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_periodic_gc_runs_total linux network cache stats -# TYPE node_lnstat_periodic_gc_runs_total counter -node_lnstat_periodic_gc_runs_total{cpu="0",subsystem="arp_cache"} 9 -node_lnstat_periodic_gc_runs_total{cpu="0",subsystem="ndisc_cache"} 248 -node_lnstat_periodic_gc_runs_total{cpu="1",subsystem="arp_cache"} 21 -node_lnstat_periodic_gc_runs_total{cpu="1",subsystem="ndisc_cache"} 260 -# HELP node_lnstat_rcv_probes_mcast_total linux network cache stats -# TYPE node_lnstat_rcv_probes_mcast_total counter -node_lnstat_rcv_probes_mcast_total{cpu="0",subsystem="arp_cache"} 7 -node_lnstat_rcv_probes_mcast_total{cpu="0",subsystem="ndisc_cache"} 246 -node_lnstat_rcv_probes_mcast_total{cpu="1",subsystem="arp_cache"} 19 -node_lnstat_rcv_probes_mcast_total{cpu="1",subsystem="ndisc_cache"} 258 -# HELP node_lnstat_rcv_probes_ucast_total linux network cache stats -# TYPE node_lnstat_rcv_probes_ucast_total counter -node_lnstat_rcv_probes_ucast_total{cpu="0",subsystem="arp_cache"} 8 -node_lnstat_rcv_probes_ucast_total{cpu="0",subsystem="ndisc_cache"} 247 -node_lnstat_rcv_probes_ucast_total{cpu="1",subsystem="arp_cache"} 20 -node_lnstat_rcv_probes_ucast_total{cpu="1",subsystem="ndisc_cache"} 259 -# HELP node_lnstat_res_failed_total linux network cache stats -# TYPE node_lnstat_res_failed_total counter -node_lnstat_res_failed_total{cpu="0",subsystem="arp_cache"} 6 -node_lnstat_res_failed_total{cpu="0",subsystem="ndisc_cache"} 245 -node_lnstat_res_failed_total{cpu="1",subsystem="arp_cache"} 18 -node_lnstat_res_failed_total{cpu="1",subsystem="ndisc_cache"} 257 -# HELP node_lnstat_search_restart_total linux network cache stats -# TYPE node_lnstat_search_restart_total counter -node_lnstat_search_restart_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_search_restart_total{cpu="1",subsystem="nf_conntrack"} 2 -node_lnstat_search_restart_total{cpu="2",subsystem="nf_conntrack"} 1 -node_lnstat_search_restart_total{cpu="3",subsystem="nf_conntrack"} 4 -# HELP node_lnstat_searched_total linux network cache stats -# TYPE node_lnstat_searched_total counter -node_lnstat_searched_total{cpu="0",subsystem="nf_conntrack"} 0 -node_lnstat_searched_total{cpu="1",subsystem="nf_conntrack"} 0 -node_lnstat_searched_total{cpu="2",subsystem="nf_conntrack"} 0 -node_lnstat_searched_total{cpu="3",subsystem="nf_conntrack"} 0 -# HELP node_lnstat_table_fulls_total linux network cache stats -# TYPE node_lnstat_table_fulls_total counter -node_lnstat_table_fulls_total{cpu="0",subsystem="arp_cache"} 12 -node_lnstat_table_fulls_total{cpu="0",subsystem="ndisc_cache"} 251 -node_lnstat_table_fulls_total{cpu="1",subsystem="arp_cache"} 24 -node_lnstat_table_fulls_total{cpu="1",subsystem="ndisc_cache"} 263 -# HELP node_lnstat_unresolved_discards_total linux network cache stats -# TYPE node_lnstat_unresolved_discards_total counter -node_lnstat_unresolved_discards_total{cpu="0",subsystem="arp_cache"} 11 -node_lnstat_unresolved_discards_total{cpu="0",subsystem="ndisc_cache"} 250 -node_lnstat_unresolved_discards_total{cpu="1",subsystem="arp_cache"} 23 -node_lnstat_unresolved_discards_total{cpu="1",subsystem="ndisc_cache"} 262 # HELP node_load1 1m load average. # TYPE node_load1 gauge node_load1 0.21 @@ -1918,433 +2079,6 @@ node_memory_WritebackTmp_bytes 0 # HELP node_memory_Writeback_bytes Memory information field Writeback_bytes. # TYPE node_memory_Writeback_bytes gauge node_memory_Writeback_bytes 0 -# HELP node_memory_numa_Active Memory information field Active. -# TYPE node_memory_numa_Active gauge -node_memory_numa_Active{node="0"} 5.58733312e+09 -node_memory_numa_Active{node="1"} 5.739003904e+09 -node_memory_numa_Active{node="2"} 5.739003904e+09 -# HELP node_memory_numa_Active_anon Memory information field Active_anon. -# TYPE node_memory_numa_Active_anon gauge -node_memory_numa_Active_anon{node="0"} 7.07915776e+08 -node_memory_numa_Active_anon{node="1"} 6.04635136e+08 -node_memory_numa_Active_anon{node="2"} 6.04635136e+08 -# HELP node_memory_numa_Active_file Memory information field Active_file. -# TYPE node_memory_numa_Active_file gauge -node_memory_numa_Active_file{node="0"} 4.879417344e+09 -node_memory_numa_Active_file{node="1"} 5.134368768e+09 -node_memory_numa_Active_file{node="2"} 5.134368768e+09 -# HELP node_memory_numa_AnonHugePages Memory information field AnonHugePages. -# TYPE node_memory_numa_AnonHugePages gauge -node_memory_numa_AnonHugePages{node="0"} 1.50994944e+08 -node_memory_numa_AnonHugePages{node="1"} 9.2274688e+07 -node_memory_numa_AnonHugePages{node="2"} 9.2274688e+07 -# HELP node_memory_numa_AnonPages Memory information field AnonPages. -# TYPE node_memory_numa_AnonPages gauge -node_memory_numa_AnonPages{node="0"} 8.07112704e+08 -node_memory_numa_AnonPages{node="1"} 6.88058368e+08 -node_memory_numa_AnonPages{node="2"} 6.88058368e+08 -# HELP node_memory_numa_Bounce Memory information field Bounce. -# TYPE node_memory_numa_Bounce gauge -node_memory_numa_Bounce{node="0"} 0 -node_memory_numa_Bounce{node="1"} 0 -node_memory_numa_Bounce{node="2"} 0 -# HELP node_memory_numa_Dirty Memory information field Dirty. -# TYPE node_memory_numa_Dirty gauge -node_memory_numa_Dirty{node="0"} 20480 -node_memory_numa_Dirty{node="1"} 122880 -node_memory_numa_Dirty{node="2"} 122880 -# HELP node_memory_numa_FilePages Memory information field FilePages. -# TYPE node_memory_numa_FilePages gauge -node_memory_numa_FilePages{node="0"} 7.1855017984e+10 -node_memory_numa_FilePages{node="1"} 8.5585088512e+10 -node_memory_numa_FilePages{node="2"} 8.5585088512e+10 -# HELP node_memory_numa_HugePages_Free Memory information field HugePages_Free. -# TYPE node_memory_numa_HugePages_Free gauge -node_memory_numa_HugePages_Free{node="0"} 0 -node_memory_numa_HugePages_Free{node="1"} 0 -node_memory_numa_HugePages_Free{node="2"} 0 -# HELP node_memory_numa_HugePages_Surp Memory information field HugePages_Surp. -# TYPE node_memory_numa_HugePages_Surp gauge -node_memory_numa_HugePages_Surp{node="0"} 0 -node_memory_numa_HugePages_Surp{node="1"} 0 -node_memory_numa_HugePages_Surp{node="2"} 0 -# HELP node_memory_numa_HugePages_Total Memory information field HugePages_Total. -# TYPE node_memory_numa_HugePages_Total gauge -node_memory_numa_HugePages_Total{node="0"} 0 -node_memory_numa_HugePages_Total{node="1"} 0 -node_memory_numa_HugePages_Total{node="2"} 0 -# HELP node_memory_numa_Inactive Memory information field Inactive. -# TYPE node_memory_numa_Inactive gauge -node_memory_numa_Inactive{node="0"} 6.0569788416e+10 -node_memory_numa_Inactive{node="1"} 7.3165406208e+10 -node_memory_numa_Inactive{node="2"} 7.3165406208e+10 -# HELP node_memory_numa_Inactive_anon Memory information field Inactive_anon. -# TYPE node_memory_numa_Inactive_anon gauge -node_memory_numa_Inactive_anon{node="0"} 3.48626944e+08 -node_memory_numa_Inactive_anon{node="1"} 2.91930112e+08 -node_memory_numa_Inactive_anon{node="2"} 2.91930112e+08 -# HELP node_memory_numa_Inactive_file Memory information field Inactive_file. -# TYPE node_memory_numa_Inactive_file gauge -node_memory_numa_Inactive_file{node="0"} 6.0221161472e+10 -node_memory_numa_Inactive_file{node="1"} 7.2873476096e+10 -node_memory_numa_Inactive_file{node="2"} 7.2873476096e+10 -# HELP node_memory_numa_KernelStack Memory information field KernelStack. -# TYPE node_memory_numa_KernelStack gauge -node_memory_numa_KernelStack{node="0"} 3.4832384e+07 -node_memory_numa_KernelStack{node="1"} 3.1850496e+07 -node_memory_numa_KernelStack{node="2"} 3.1850496e+07 -# HELP node_memory_numa_Mapped Memory information field Mapped. -# TYPE node_memory_numa_Mapped gauge -node_memory_numa_Mapped{node="0"} 9.1570176e+08 -node_memory_numa_Mapped{node="1"} 8.84850688e+08 -node_memory_numa_Mapped{node="2"} 8.84850688e+08 -# HELP node_memory_numa_MemFree Memory information field MemFree. -# TYPE node_memory_numa_MemFree gauge -node_memory_numa_MemFree{node="0"} 5.4303100928e+10 -node_memory_numa_MemFree{node="1"} 4.0586022912e+10 -node_memory_numa_MemFree{node="2"} 4.0586022912e+10 -# HELP node_memory_numa_MemTotal Memory information field MemTotal. -# TYPE node_memory_numa_MemTotal gauge -node_memory_numa_MemTotal{node="0"} 1.3740271616e+11 -node_memory_numa_MemTotal{node="1"} 1.37438953472e+11 -node_memory_numa_MemTotal{node="2"} 1.37438953472e+11 -# HELP node_memory_numa_MemUsed Memory information field MemUsed. -# TYPE node_memory_numa_MemUsed gauge -node_memory_numa_MemUsed{node="0"} 8.3099615232e+10 -node_memory_numa_MemUsed{node="1"} 9.685293056e+10 -node_memory_numa_MemUsed{node="2"} 9.685293056e+10 -# HELP node_memory_numa_Mlocked Memory information field Mlocked. -# TYPE node_memory_numa_Mlocked gauge -node_memory_numa_Mlocked{node="0"} 0 -node_memory_numa_Mlocked{node="1"} 0 -node_memory_numa_Mlocked{node="2"} 0 -# HELP node_memory_numa_NFS_Unstable Memory information field NFS_Unstable. -# TYPE node_memory_numa_NFS_Unstable gauge -node_memory_numa_NFS_Unstable{node="0"} 0 -node_memory_numa_NFS_Unstable{node="1"} 0 -node_memory_numa_NFS_Unstable{node="2"} 0 -# HELP node_memory_numa_PageTables Memory information field PageTables. -# TYPE node_memory_numa_PageTables gauge -node_memory_numa_PageTables{node="0"} 1.46743296e+08 -node_memory_numa_PageTables{node="1"} 1.27254528e+08 -node_memory_numa_PageTables{node="2"} 1.27254528e+08 -# HELP node_memory_numa_SReclaimable Memory information field SReclaimable. -# TYPE node_memory_numa_SReclaimable gauge -node_memory_numa_SReclaimable{node="0"} 4.580478976e+09 -node_memory_numa_SReclaimable{node="1"} 4.724822016e+09 -node_memory_numa_SReclaimable{node="2"} 4.724822016e+09 -# HELP node_memory_numa_SUnreclaim Memory information field SUnreclaim. -# TYPE node_memory_numa_SUnreclaim gauge -node_memory_numa_SUnreclaim{node="0"} 2.23352832e+09 -node_memory_numa_SUnreclaim{node="1"} 2.464391168e+09 -node_memory_numa_SUnreclaim{node="2"} 2.464391168e+09 -# HELP node_memory_numa_Shmem Memory information field Shmem. -# TYPE node_memory_numa_Shmem gauge -node_memory_numa_Shmem{node="0"} 4.900864e+07 -node_memory_numa_Shmem{node="1"} 8.968192e+07 -node_memory_numa_Shmem{node="2"} 8.968192e+07 -# HELP node_memory_numa_Slab Memory information field Slab. -# TYPE node_memory_numa_Slab gauge -node_memory_numa_Slab{node="0"} 6.814007296e+09 -node_memory_numa_Slab{node="1"} 7.189213184e+09 -node_memory_numa_Slab{node="2"} 7.189213184e+09 -# HELP node_memory_numa_Unevictable Memory information field Unevictable. -# TYPE node_memory_numa_Unevictable gauge -node_memory_numa_Unevictable{node="0"} 0 -node_memory_numa_Unevictable{node="1"} 0 -node_memory_numa_Unevictable{node="2"} 0 -# HELP node_memory_numa_Writeback Memory information field Writeback. -# TYPE node_memory_numa_Writeback gauge -node_memory_numa_Writeback{node="0"} 0 -node_memory_numa_Writeback{node="1"} 0 -node_memory_numa_Writeback{node="2"} 0 -# HELP node_memory_numa_WritebackTmp Memory information field WritebackTmp. -# TYPE node_memory_numa_WritebackTmp gauge -node_memory_numa_WritebackTmp{node="0"} 0 -node_memory_numa_WritebackTmp{node="1"} 0 -node_memory_numa_WritebackTmp{node="2"} 0 -# HELP node_memory_numa_interleave_hit_total Memory information field interleave_hit_total. -# TYPE node_memory_numa_interleave_hit_total counter -node_memory_numa_interleave_hit_total{node="0"} 57146 -node_memory_numa_interleave_hit_total{node="1"} 57286 -node_memory_numa_interleave_hit_total{node="2"} 7286 -# HELP node_memory_numa_local_node_total Memory information field local_node_total. -# TYPE node_memory_numa_local_node_total counter -node_memory_numa_local_node_total{node="0"} 1.93454780853e+11 -node_memory_numa_local_node_total{node="1"} 3.2671904655e+11 -node_memory_numa_local_node_total{node="2"} 2.671904655e+10 -# HELP node_memory_numa_numa_foreign_total Memory information field numa_foreign_total. -# TYPE node_memory_numa_numa_foreign_total counter -node_memory_numa_numa_foreign_total{node="0"} 5.98586233e+10 -node_memory_numa_numa_foreign_total{node="1"} 1.2624528e+07 -node_memory_numa_numa_foreign_total{node="2"} 2.624528e+06 -# HELP node_memory_numa_numa_hit_total Memory information field numa_hit_total. -# TYPE node_memory_numa_numa_hit_total counter -node_memory_numa_numa_hit_total{node="0"} 1.93460335812e+11 -node_memory_numa_numa_hit_total{node="1"} 3.26720946761e+11 -node_memory_numa_numa_hit_total{node="2"} 2.6720946761e+10 -# HELP node_memory_numa_numa_miss_total Memory information field numa_miss_total. -# TYPE node_memory_numa_numa_miss_total counter -node_memory_numa_numa_miss_total{node="0"} 1.2624528e+07 -node_memory_numa_numa_miss_total{node="1"} 5.9858626709e+10 -node_memory_numa_numa_miss_total{node="2"} 9.858626709e+09 -# HELP node_memory_numa_other_node_total Memory information field other_node_total. -# TYPE node_memory_numa_other_node_total counter -node_memory_numa_other_node_total{node="0"} 1.8179487e+07 -node_memory_numa_other_node_total{node="1"} 5.986052692e+10 -node_memory_numa_other_node_total{node="2"} 9.86052692e+09 -# HELP node_mountstats_nfs_age_seconds_total The age of the NFS mount in seconds. -# TYPE node_mountstats_nfs_age_seconds_total counter -node_mountstats_nfs_age_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 13968 -node_mountstats_nfs_age_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 13968 -# HELP node_mountstats_nfs_direct_read_bytes_total Number of bytes read using the read() syscall in O_DIRECT mode. -# TYPE node_mountstats_nfs_direct_read_bytes_total counter -node_mountstats_nfs_direct_read_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_direct_read_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_direct_write_bytes_total Number of bytes written using the write() syscall in O_DIRECT mode. -# TYPE node_mountstats_nfs_direct_write_bytes_total counter -node_mountstats_nfs_direct_write_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_direct_write_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_attribute_invalidate_total Number of times cached inode attributes are invalidated. -# TYPE node_mountstats_nfs_event_attribute_invalidate_total counter -node_mountstats_nfs_event_attribute_invalidate_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_attribute_invalidate_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_data_invalidate_total Number of times an inode cache is cleared. -# TYPE node_mountstats_nfs_event_data_invalidate_total counter -node_mountstats_nfs_event_data_invalidate_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_data_invalidate_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_dnode_revalidate_total Number of times cached dentry nodes are re-validated from the server. -# TYPE node_mountstats_nfs_event_dnode_revalidate_total counter -node_mountstats_nfs_event_dnode_revalidate_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 226 -node_mountstats_nfs_event_dnode_revalidate_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 226 -# HELP node_mountstats_nfs_event_inode_revalidate_total Number of times cached inode attributes are re-validated from the server. -# TYPE node_mountstats_nfs_event_inode_revalidate_total counter -node_mountstats_nfs_event_inode_revalidate_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 52 -node_mountstats_nfs_event_inode_revalidate_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 52 -# HELP node_mountstats_nfs_event_jukebox_delay_total Number of times the NFS server indicated EJUKEBOX; retrieving data from offline storage. -# TYPE node_mountstats_nfs_event_jukebox_delay_total counter -node_mountstats_nfs_event_jukebox_delay_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_jukebox_delay_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_pnfs_read_total Number of NFS v4.1+ pNFS reads. -# TYPE node_mountstats_nfs_event_pnfs_read_total counter -node_mountstats_nfs_event_pnfs_read_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_pnfs_read_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_pnfs_write_total Number of NFS v4.1+ pNFS writes. -# TYPE node_mountstats_nfs_event_pnfs_write_total counter -node_mountstats_nfs_event_pnfs_write_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_pnfs_write_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_short_read_total Number of times the NFS server gave less data than expected while reading. -# TYPE node_mountstats_nfs_event_short_read_total counter -node_mountstats_nfs_event_short_read_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_short_read_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_short_write_total Number of times the NFS server wrote less data than expected while writing. -# TYPE node_mountstats_nfs_event_short_write_total counter -node_mountstats_nfs_event_short_write_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_short_write_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_silly_rename_total Number of times a file was removed while still open by another process. -# TYPE node_mountstats_nfs_event_silly_rename_total counter -node_mountstats_nfs_event_silly_rename_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_silly_rename_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_truncation_total Number of times files have been truncated. -# TYPE node_mountstats_nfs_event_truncation_total counter -node_mountstats_nfs_event_truncation_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_truncation_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_vfs_access_total Number of times permissions have been checked. -# TYPE node_mountstats_nfs_event_vfs_access_total counter -node_mountstats_nfs_event_vfs_access_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 398 -node_mountstats_nfs_event_vfs_access_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 398 -# HELP node_mountstats_nfs_event_vfs_file_release_total Number of times files have been closed and released. -# TYPE node_mountstats_nfs_event_vfs_file_release_total counter -node_mountstats_nfs_event_vfs_file_release_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 77 -node_mountstats_nfs_event_vfs_file_release_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 77 -# HELP node_mountstats_nfs_event_vfs_flush_total Number of pending writes that have been forcefully flushed to the server. -# TYPE node_mountstats_nfs_event_vfs_flush_total counter -node_mountstats_nfs_event_vfs_flush_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 77 -node_mountstats_nfs_event_vfs_flush_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 77 -# HELP node_mountstats_nfs_event_vfs_fsync_total Number of times fsync() has been called on directories and files. -# TYPE node_mountstats_nfs_event_vfs_fsync_total counter -node_mountstats_nfs_event_vfs_fsync_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_vfs_fsync_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_vfs_getdents_total Number of times directory entries have been read with getdents(). -# TYPE node_mountstats_nfs_event_vfs_getdents_total counter -node_mountstats_nfs_event_vfs_getdents_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_vfs_getdents_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_vfs_lock_total Number of times locking has been attempted on a file. -# TYPE node_mountstats_nfs_event_vfs_lock_total counter -node_mountstats_nfs_event_vfs_lock_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_vfs_lock_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_vfs_lookup_total Number of times a directory lookup has occurred. -# TYPE node_mountstats_nfs_event_vfs_lookup_total counter -node_mountstats_nfs_event_vfs_lookup_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 13 -node_mountstats_nfs_event_vfs_lookup_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 13 -# HELP node_mountstats_nfs_event_vfs_open_total Number of times cached inode attributes are invalidated. -# TYPE node_mountstats_nfs_event_vfs_open_total counter -node_mountstats_nfs_event_vfs_open_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 1 -node_mountstats_nfs_event_vfs_open_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 1 -# HELP node_mountstats_nfs_event_vfs_read_page_total Number of pages read directly via mmap()'d files. -# TYPE node_mountstats_nfs_event_vfs_read_page_total counter -node_mountstats_nfs_event_vfs_read_page_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_vfs_read_page_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_vfs_read_pages_total Number of times a group of pages have been read. -# TYPE node_mountstats_nfs_event_vfs_read_pages_total counter -node_mountstats_nfs_event_vfs_read_pages_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 331 -node_mountstats_nfs_event_vfs_read_pages_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 331 -# HELP node_mountstats_nfs_event_vfs_setattr_total Number of times directory entries have been read with getdents(). -# TYPE node_mountstats_nfs_event_vfs_setattr_total counter -node_mountstats_nfs_event_vfs_setattr_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_vfs_setattr_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_vfs_update_page_total Number of updates (and potential writes) to pages. -# TYPE node_mountstats_nfs_event_vfs_update_page_total counter -node_mountstats_nfs_event_vfs_update_page_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_vfs_update_page_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_vfs_write_page_total Number of pages written directly via mmap()'d files. -# TYPE node_mountstats_nfs_event_vfs_write_page_total counter -node_mountstats_nfs_event_vfs_write_page_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_vfs_write_page_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_event_vfs_write_pages_total Number of times a group of pages have been written. -# TYPE node_mountstats_nfs_event_vfs_write_pages_total counter -node_mountstats_nfs_event_vfs_write_pages_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 47 -node_mountstats_nfs_event_vfs_write_pages_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 47 -# HELP node_mountstats_nfs_event_write_extension_total Number of times a file has been grown due to writes beyond its existing end. -# TYPE node_mountstats_nfs_event_write_extension_total counter -node_mountstats_nfs_event_write_extension_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_event_write_extension_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_operations_major_timeouts_total Number of times a request has had a major timeout for a given operation. -# TYPE node_mountstats_nfs_operations_major_timeouts_total counter -node_mountstats_nfs_operations_major_timeouts_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="ACCESS",protocol="udp"} 0 -node_mountstats_nfs_operations_major_timeouts_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="tcp"} 0 -node_mountstats_nfs_operations_major_timeouts_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="udp"} 0 -node_mountstats_nfs_operations_major_timeouts_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="tcp"} 0 -node_mountstats_nfs_operations_major_timeouts_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="udp"} 0 -node_mountstats_nfs_operations_major_timeouts_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="tcp"} 0 -node_mountstats_nfs_operations_major_timeouts_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="udp"} 0 -# HELP node_mountstats_nfs_operations_queue_time_seconds_total Duration all requests spent queued for transmission for a given operation before they were sent, in seconds. -# TYPE node_mountstats_nfs_operations_queue_time_seconds_total counter -node_mountstats_nfs_operations_queue_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="ACCESS",protocol="udp"} 9.007044786793922e+12 -node_mountstats_nfs_operations_queue_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="tcp"} 0 -node_mountstats_nfs_operations_queue_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="udp"} 0 -node_mountstats_nfs_operations_queue_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="tcp"} 0.006 -node_mountstats_nfs_operations_queue_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="udp"} 0.006 -node_mountstats_nfs_operations_queue_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="tcp"} 0 -node_mountstats_nfs_operations_queue_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="udp"} 0 -# HELP node_mountstats_nfs_operations_received_bytes_total Number of bytes received for a given operation, including RPC headers and payload. -# TYPE node_mountstats_nfs_operations_received_bytes_total counter -node_mountstats_nfs_operations_received_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="ACCESS",protocol="udp"} 3.62996810236e+11 -node_mountstats_nfs_operations_received_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="tcp"} 0 -node_mountstats_nfs_operations_received_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="udp"} 0 -node_mountstats_nfs_operations_received_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="tcp"} 1.210292152e+09 -node_mountstats_nfs_operations_received_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="udp"} 1.210292152e+09 -node_mountstats_nfs_operations_received_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="tcp"} 0 -node_mountstats_nfs_operations_received_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="udp"} 0 -# HELP node_mountstats_nfs_operations_request_time_seconds_total Duration all requests took from when a request was enqueued to when it was completely handled for a given operation, in seconds. -# TYPE node_mountstats_nfs_operations_request_time_seconds_total counter -node_mountstats_nfs_operations_request_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="ACCESS",protocol="udp"} 1.953587717e+06 -node_mountstats_nfs_operations_request_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="tcp"} 0 -node_mountstats_nfs_operations_request_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="udp"} 0 -node_mountstats_nfs_operations_request_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="tcp"} 79.407 -node_mountstats_nfs_operations_request_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="udp"} 79.407 -node_mountstats_nfs_operations_request_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="tcp"} 0 -node_mountstats_nfs_operations_request_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="udp"} 0 -# HELP node_mountstats_nfs_operations_requests_total Number of requests performed for a given operation. -# TYPE node_mountstats_nfs_operations_requests_total counter -node_mountstats_nfs_operations_requests_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="ACCESS",protocol="udp"} 2.927395007e+09 -node_mountstats_nfs_operations_requests_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="tcp"} 0 -node_mountstats_nfs_operations_requests_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="udp"} 0 -node_mountstats_nfs_operations_requests_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="tcp"} 1298 -node_mountstats_nfs_operations_requests_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="udp"} 1298 -node_mountstats_nfs_operations_requests_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="tcp"} 0 -node_mountstats_nfs_operations_requests_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="udp"} 0 -# HELP node_mountstats_nfs_operations_response_time_seconds_total Duration all requests took to get a reply back after a request for a given operation was transmitted, in seconds. -# TYPE node_mountstats_nfs_operations_response_time_seconds_total counter -node_mountstats_nfs_operations_response_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="ACCESS",protocol="udp"} 1.667369447e+06 -node_mountstats_nfs_operations_response_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="tcp"} 0 -node_mountstats_nfs_operations_response_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="udp"} 0 -node_mountstats_nfs_operations_response_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="tcp"} 79.386 -node_mountstats_nfs_operations_response_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="udp"} 79.386 -node_mountstats_nfs_operations_response_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="tcp"} 0 -node_mountstats_nfs_operations_response_time_seconds_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="udp"} 0 -# HELP node_mountstats_nfs_operations_sent_bytes_total Number of bytes sent for a given operation, including RPC headers and payload. -# TYPE node_mountstats_nfs_operations_sent_bytes_total counter -node_mountstats_nfs_operations_sent_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="ACCESS",protocol="udp"} 5.26931094212e+11 -node_mountstats_nfs_operations_sent_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="tcp"} 0 -node_mountstats_nfs_operations_sent_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="udp"} 0 -node_mountstats_nfs_operations_sent_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="tcp"} 207680 -node_mountstats_nfs_operations_sent_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="udp"} 207680 -node_mountstats_nfs_operations_sent_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="tcp"} 0 -node_mountstats_nfs_operations_sent_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="udp"} 0 -# HELP node_mountstats_nfs_operations_transmissions_total Number of times an actual RPC request has been transmitted for a given operation. -# TYPE node_mountstats_nfs_operations_transmissions_total counter -node_mountstats_nfs_operations_transmissions_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="ACCESS",protocol="udp"} 2.927394995e+09 -node_mountstats_nfs_operations_transmissions_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="tcp"} 0 -node_mountstats_nfs_operations_transmissions_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="NULL",protocol="udp"} 0 -node_mountstats_nfs_operations_transmissions_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="tcp"} 1298 -node_mountstats_nfs_operations_transmissions_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="READ",protocol="udp"} 1298 -node_mountstats_nfs_operations_transmissions_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="tcp"} 0 -node_mountstats_nfs_operations_transmissions_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",operation="WRITE",protocol="udp"} 0 -# HELP node_mountstats_nfs_read_bytes_total Number of bytes read using the read() syscall. -# TYPE node_mountstats_nfs_read_bytes_total counter -node_mountstats_nfs_read_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 1.20764023e+09 -node_mountstats_nfs_read_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 1.20764023e+09 -# HELP node_mountstats_nfs_read_pages_total Number of pages read directly via mmap()'d files. -# TYPE node_mountstats_nfs_read_pages_total counter -node_mountstats_nfs_read_pages_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 295483 -node_mountstats_nfs_read_pages_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 295483 -# HELP node_mountstats_nfs_total_read_bytes_total Number of bytes read from the NFS server, in total. -# TYPE node_mountstats_nfs_total_read_bytes_total counter -node_mountstats_nfs_total_read_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 1.210214218e+09 -node_mountstats_nfs_total_read_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 1.210214218e+09 -# HELP node_mountstats_nfs_total_write_bytes_total Number of bytes written to the NFS server, in total. -# TYPE node_mountstats_nfs_total_write_bytes_total counter -node_mountstats_nfs_total_write_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_total_write_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_transport_backlog_queue_total Total number of items added to the RPC backlog queue. -# TYPE node_mountstats_nfs_transport_backlog_queue_total counter -node_mountstats_nfs_transport_backlog_queue_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 0 -node_mountstats_nfs_transport_backlog_queue_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 0 -# HELP node_mountstats_nfs_transport_bad_transaction_ids_total Number of times the NFS server sent a response with a transaction ID unknown to this client. -# TYPE node_mountstats_nfs_transport_bad_transaction_ids_total counter -node_mountstats_nfs_transport_bad_transaction_ids_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 0 -node_mountstats_nfs_transport_bad_transaction_ids_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 0 -# HELP node_mountstats_nfs_transport_bind_total Number of times the client has had to establish a connection from scratch to the NFS server. -# TYPE node_mountstats_nfs_transport_bind_total counter -node_mountstats_nfs_transport_bind_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 0 -node_mountstats_nfs_transport_bind_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 0 -# HELP node_mountstats_nfs_transport_connect_total Number of times the client has made a TCP connection to the NFS server. -# TYPE node_mountstats_nfs_transport_connect_total counter -node_mountstats_nfs_transport_connect_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 1 -node_mountstats_nfs_transport_connect_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 0 -# HELP node_mountstats_nfs_transport_idle_time_seconds Duration since the NFS mount last saw any RPC traffic, in seconds. -# TYPE node_mountstats_nfs_transport_idle_time_seconds gauge -node_mountstats_nfs_transport_idle_time_seconds{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 11 -node_mountstats_nfs_transport_idle_time_seconds{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 0 -# HELP node_mountstats_nfs_transport_maximum_rpc_slots Maximum number of simultaneously active RPC requests ever used. -# TYPE node_mountstats_nfs_transport_maximum_rpc_slots gauge -node_mountstats_nfs_transport_maximum_rpc_slots{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 24 -node_mountstats_nfs_transport_maximum_rpc_slots{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 24 -# HELP node_mountstats_nfs_transport_pending_queue_total Total number of items added to the RPC transmission pending queue. -# TYPE node_mountstats_nfs_transport_pending_queue_total counter -node_mountstats_nfs_transport_pending_queue_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 5726 -node_mountstats_nfs_transport_pending_queue_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 5726 -# HELP node_mountstats_nfs_transport_receives_total Number of RPC responses for this mount received from the NFS server. -# TYPE node_mountstats_nfs_transport_receives_total counter -node_mountstats_nfs_transport_receives_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 6428 -node_mountstats_nfs_transport_receives_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 6428 -# HELP node_mountstats_nfs_transport_sending_queue_total Total number of items added to the RPC transmission sending queue. -# TYPE node_mountstats_nfs_transport_sending_queue_total counter -node_mountstats_nfs_transport_sending_queue_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 26 -node_mountstats_nfs_transport_sending_queue_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 26 -# HELP node_mountstats_nfs_transport_sends_total Number of RPC requests for this mount sent to the NFS server. -# TYPE node_mountstats_nfs_transport_sends_total counter -node_mountstats_nfs_transport_sends_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp",transport="0"} 6428 -node_mountstats_nfs_transport_sends_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp",transport="0"} 6428 -# HELP node_mountstats_nfs_write_bytes_total Number of bytes written using the write() syscall. -# TYPE node_mountstats_nfs_write_bytes_total counter -node_mountstats_nfs_write_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_write_bytes_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 -# HELP node_mountstats_nfs_write_pages_total Number of pages written directly via mmap()'d files. -# TYPE node_mountstats_nfs_write_pages_total counter -node_mountstats_nfs_write_pages_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="tcp"} 0 -node_mountstats_nfs_write_pages_total{export="192.168.1.1:/srv/test",mountaddr="192.168.1.1",protocol="udp"} 0 # HELP node_netstat_Icmp6_InErrors Statistic Icmp6InErrors. # TYPE node_netstat_Icmp6_InErrors untyped node_netstat_Icmp6_InErrors 0 @@ -2471,125 +2205,268 @@ node_netstat_Udp_SndbufErrors 8 # HELP node_network_address_assign_type Network device property: address_assign_type # TYPE node_network_address_assign_type gauge node_network_address_assign_type{device="bond0"} 3 +node_network_address_assign_type{device="dmz"} 3 node_network_address_assign_type{device="eth0"} 3 +node_network_address_assign_type{device="int"} 3 # HELP node_network_carrier Network device property: carrier # TYPE node_network_carrier gauge node_network_carrier{device="bond0"} 1 +node_network_carrier{device="dmz"} 1 node_network_carrier{device="eth0"} 1 +node_network_carrier{device="int"} 1 # HELP node_network_carrier_changes_total Network device property: carrier_changes_total # TYPE node_network_carrier_changes_total counter node_network_carrier_changes_total{device="bond0"} 2 +node_network_carrier_changes_total{device="dmz"} 2 node_network_carrier_changes_total{device="eth0"} 2 +node_network_carrier_changes_total{device="int"} 2 # HELP node_network_carrier_down_changes_total Network device property: carrier_down_changes_total # TYPE node_network_carrier_down_changes_total counter node_network_carrier_down_changes_total{device="bond0"} 1 +node_network_carrier_down_changes_total{device="dmz"} 1 node_network_carrier_down_changes_total{device="eth0"} 1 +node_network_carrier_down_changes_total{device="int"} 1 # HELP node_network_carrier_up_changes_total Network device property: carrier_up_changes_total # TYPE node_network_carrier_up_changes_total counter node_network_carrier_up_changes_total{device="bond0"} 1 +node_network_carrier_up_changes_total{device="dmz"} 1 node_network_carrier_up_changes_total{device="eth0"} 1 +node_network_carrier_up_changes_total{device="int"} 1 # HELP node_network_device_id Network device property: device_id # TYPE node_network_device_id gauge node_network_device_id{device="bond0"} 32 +node_network_device_id{device="dmz"} 32 node_network_device_id{device="eth0"} 32 +node_network_device_id{device="int"} 32 # HELP node_network_dormant Network device property: dormant # TYPE node_network_dormant gauge node_network_dormant{device="bond0"} 1 +node_network_dormant{device="dmz"} 1 node_network_dormant{device="eth0"} 1 +node_network_dormant{device="int"} 1 # HELP node_network_flags Network device property: flags # TYPE node_network_flags gauge node_network_flags{device="bond0"} 4867 +node_network_flags{device="dmz"} 4867 node_network_flags{device="eth0"} 4867 +node_network_flags{device="int"} 4867 # HELP node_network_iface_id Network device property: iface_id # TYPE node_network_iface_id gauge node_network_iface_id{device="bond0"} 2 +node_network_iface_id{device="dmz"} 2 node_network_iface_id{device="eth0"} 2 +node_network_iface_id{device="int"} 2 # HELP node_network_iface_link Network device property: iface_link # TYPE node_network_iface_link gauge node_network_iface_link{device="bond0"} 2 +node_network_iface_link{device="dmz"} 2 node_network_iface_link{device="eth0"} 2 +node_network_iface_link{device="int"} 2 # HELP node_network_iface_link_mode Network device property: iface_link_mode # TYPE node_network_iface_link_mode gauge node_network_iface_link_mode{device="bond0"} 1 +node_network_iface_link_mode{device="dmz"} 1 node_network_iface_link_mode{device="eth0"} 1 +node_network_iface_link_mode{device="int"} 1 # HELP node_network_info Non-numeric data from /sys/class/net/, value is always 1. # TYPE node_network_info gauge node_network_info{address="01:01:01:01:01:01",adminstate="up",broadcast="ff:ff:ff:ff:ff:ff",device="bond0",duplex="full",ifalias="",operstate="up"} 1 +node_network_info{address="01:01:01:01:01:01",adminstate="up",broadcast="ff:ff:ff:ff:ff:ff",device="dmz",duplex="full",ifalias="",operstate="up"} 1 node_network_info{address="01:01:01:01:01:01",adminstate="up",broadcast="ff:ff:ff:ff:ff:ff",device="eth0",duplex="full",ifalias="",operstate="up"} 1 +node_network_info{address="01:01:01:01:01:01",adminstate="up",broadcast="ff:ff:ff:ff:ff:ff",device="int",duplex="full",ifalias="",operstate="up"} 1 # HELP node_network_mtu_bytes Network device property: mtu_bytes # TYPE node_network_mtu_bytes gauge node_network_mtu_bytes{device="bond0"} 1500 +node_network_mtu_bytes{device="dmz"} 1500 node_network_mtu_bytes{device="eth0"} 1500 +node_network_mtu_bytes{device="int"} 1500 # HELP node_network_name_assign_type Network device property: name_assign_type # TYPE node_network_name_assign_type gauge node_network_name_assign_type{device="bond0"} 2 +node_network_name_assign_type{device="dmz"} 2 node_network_name_assign_type{device="eth0"} 2 +node_network_name_assign_type{device="int"} 2 # HELP node_network_net_dev_group Network device property: net_dev_group # TYPE node_network_net_dev_group gauge node_network_net_dev_group{device="bond0"} 0 +node_network_net_dev_group{device="dmz"} 0 node_network_net_dev_group{device="eth0"} 0 +node_network_net_dev_group{device="int"} 0 # HELP node_network_protocol_type Network device property: protocol_type # TYPE node_network_protocol_type gauge node_network_protocol_type{device="bond0"} 1 +node_network_protocol_type{device="dmz"} 1 node_network_protocol_type{device="eth0"} 1 +node_network_protocol_type{device="int"} 1 # HELP node_network_receive_bytes_total Network device statistic receive_bytes. # TYPE node_network_receive_bytes_total counter # HELP node_network_receive_compressed_total Network device statistic receive_compressed. # TYPE node_network_receive_compressed_total counter +node_network_receive_compressed_total{device="enp0s20f0u5"} 0 +node_network_receive_compressed_total{device="enp0s20f0u7u2"} 0 +node_network_receive_compressed_total{device="enp86s0"} 0 node_network_receive_compressed_total{device="lo"} 0 +node_network_receive_compressed_total{device="podman0"} 0 +node_network_receive_compressed_total{device="tailscale0"} 0 +node_network_receive_compressed_total{device="veth0"} 0 +node_network_receive_compressed_total{device="virbr0"} 0 +node_network_receive_compressed_total{device="wlo1"} 0 # HELP node_network_receive_drop_total Network device statistic receive_drop. # TYPE node_network_receive_drop_total counter +node_network_receive_drop_total{device="enp0s20f0u5"} 0 +node_network_receive_drop_total{device="enp0s20f0u7u2"} 0 +node_network_receive_drop_total{device="enp86s0"} 14 node_network_receive_drop_total{device="lo"} 0 +node_network_receive_drop_total{device="podman0"} 0 +node_network_receive_drop_total{device="tailscale0"} 0 +node_network_receive_drop_total{device="veth0"} 0 +node_network_receive_drop_total{device="virbr0"} 0 +node_network_receive_drop_total{device="wlo1"} 0 # HELP node_network_receive_errs_total Network device statistic receive_errs. # TYPE node_network_receive_errs_total counter +node_network_receive_errs_total{device="enp0s20f0u5"} 0 +node_network_receive_errs_total{device="enp0s20f0u7u2"} 0 +node_network_receive_errs_total{device="enp86s0"} 0 node_network_receive_errs_total{device="lo"} 0 +node_network_receive_errs_total{device="podman0"} 0 +node_network_receive_errs_total{device="tailscale0"} 0 +node_network_receive_errs_total{device="veth0"} 0 +node_network_receive_errs_total{device="virbr0"} 0 +node_network_receive_errs_total{device="wlo1"} 0 # HELP node_network_receive_fifo_total Network device statistic receive_fifo. # TYPE node_network_receive_fifo_total counter +node_network_receive_fifo_total{device="enp0s20f0u5"} 0 +node_network_receive_fifo_total{device="enp0s20f0u7u2"} 0 +node_network_receive_fifo_total{device="enp86s0"} 0 node_network_receive_fifo_total{device="lo"} 0 +node_network_receive_fifo_total{device="podman0"} 0 +node_network_receive_fifo_total{device="tailscale0"} 0 +node_network_receive_fifo_total{device="veth0"} 0 +node_network_receive_fifo_total{device="virbr0"} 0 +node_network_receive_fifo_total{device="wlo1"} 0 # HELP node_network_receive_frame_total Network device statistic receive_frame. # TYPE node_network_receive_frame_total counter +node_network_receive_frame_total{device="enp0s20f0u5"} 0 +node_network_receive_frame_total{device="enp0s20f0u7u2"} 0 +node_network_receive_frame_total{device="enp86s0"} 0 node_network_receive_frame_total{device="lo"} 0 +node_network_receive_frame_total{device="podman0"} 0 +node_network_receive_frame_total{device="tailscale0"} 0 +node_network_receive_frame_total{device="veth0"} 0 +node_network_receive_frame_total{device="virbr0"} 0 +node_network_receive_frame_total{device="wlo1"} 0 # HELP node_network_receive_multicast_total Network device statistic receive_multicast. # TYPE node_network_receive_multicast_total counter +node_network_receive_multicast_total{device="enp0s20f0u5"} 0 +node_network_receive_multicast_total{device="enp0s20f0u7u2"} 0 +node_network_receive_multicast_total{device="enp86s0"} 2.523541e+06 node_network_receive_multicast_total{device="lo"} 0 +node_network_receive_multicast_total{device="podman0"} 79 +node_network_receive_multicast_total{device="tailscale0"} 0 +node_network_receive_multicast_total{device="veth0"} 0 +node_network_receive_multicast_total{device="virbr0"} 0 +node_network_receive_multicast_total{device="wlo1"} 0 # HELP node_network_receive_nohandler_total Network device statistic receive_nohandler. # TYPE node_network_receive_nohandler_total counter +node_network_receive_nohandler_total{device="enp0s20f0u5"} 0 +node_network_receive_nohandler_total{device="enp0s20f0u7u2"} 0 +node_network_receive_nohandler_total{device="enp86s0"} 0 node_network_receive_nohandler_total{device="lo"} 0 +node_network_receive_nohandler_total{device="podman0"} 0 +node_network_receive_nohandler_total{device="tailscale0"} 0 +node_network_receive_nohandler_total{device="veth0"} 0 +node_network_receive_nohandler_total{device="virbr0"} 0 +node_network_receive_nohandler_total{device="wlo1"} 0 # HELP node_network_receive_packets_total Network device statistic receive_packets. # TYPE node_network_receive_packets_total counter # HELP node_network_speed_bytes Network device property: speed_bytes # TYPE node_network_speed_bytes gauge +node_network_speed_bytes{device="bond0"} -125000 +node_network_speed_bytes{device="dmz"} 1.25e+08 node_network_speed_bytes{device="eth0"} 1.25e+08 +node_network_speed_bytes{device="int"} 1.25e+08 # HELP node_network_transmit_bytes_total Network device statistic transmit_bytes. # TYPE node_network_transmit_bytes_total counter # HELP node_network_transmit_carrier_total Network device statistic transmit_carrier. # TYPE node_network_transmit_carrier_total counter +node_network_transmit_carrier_total{device="enp0s20f0u5"} 0 +node_network_transmit_carrier_total{device="enp0s20f0u7u2"} 0 +node_network_transmit_carrier_total{device="enp86s0"} 0 node_network_transmit_carrier_total{device="lo"} 0 +node_network_transmit_carrier_total{device="podman0"} 0 +node_network_transmit_carrier_total{device="tailscale0"} 0 +node_network_transmit_carrier_total{device="veth0"} 0 +node_network_transmit_carrier_total{device="virbr0"} 0 +node_network_transmit_carrier_total{device="wlo1"} 0 # HELP node_network_transmit_colls_total Network device statistic transmit_colls. # TYPE node_network_transmit_colls_total counter +node_network_transmit_colls_total{device="enp0s20f0u5"} 0 +node_network_transmit_colls_total{device="enp0s20f0u7u2"} 0 +node_network_transmit_colls_total{device="enp86s0"} 0 node_network_transmit_colls_total{device="lo"} 0 +node_network_transmit_colls_total{device="podman0"} 0 +node_network_transmit_colls_total{device="tailscale0"} 0 +node_network_transmit_colls_total{device="veth0"} 0 +node_network_transmit_colls_total{device="virbr0"} 0 +node_network_transmit_colls_total{device="wlo1"} 0 # HELP node_network_transmit_compressed_total Network device statistic transmit_compressed. # TYPE node_network_transmit_compressed_total counter +node_network_transmit_compressed_total{device="enp0s20f0u5"} 0 +node_network_transmit_compressed_total{device="enp0s20f0u7u2"} 0 +node_network_transmit_compressed_total{device="enp86s0"} 0 node_network_transmit_compressed_total{device="lo"} 0 +node_network_transmit_compressed_total{device="podman0"} 0 +node_network_transmit_compressed_total{device="tailscale0"} 0 +node_network_transmit_compressed_total{device="veth0"} 0 +node_network_transmit_compressed_total{device="virbr0"} 0 +node_network_transmit_compressed_total{device="wlo1"} 0 # HELP node_network_transmit_drop_total Network device statistic transmit_drop. # TYPE node_network_transmit_drop_total counter +node_network_transmit_drop_total{device="enp0s20f0u5"} 0 +node_network_transmit_drop_total{device="enp0s20f0u7u2"} 0 +node_network_transmit_drop_total{device="enp86s0"} 0 node_network_transmit_drop_total{device="lo"} 0 +node_network_transmit_drop_total{device="podman0"} 2 +node_network_transmit_drop_total{device="tailscale0"} 0 +node_network_transmit_drop_total{device="veth0"} 0 +node_network_transmit_drop_total{device="virbr0"} 8 +node_network_transmit_drop_total{device="wlo1"} 0 # HELP node_network_transmit_errs_total Network device statistic transmit_errs. # TYPE node_network_transmit_errs_total counter +node_network_transmit_errs_total{device="enp0s20f0u5"} 0 +node_network_transmit_errs_total{device="enp0s20f0u7u2"} 0 +node_network_transmit_errs_total{device="enp86s0"} 0 node_network_transmit_errs_total{device="lo"} 0 +node_network_transmit_errs_total{device="podman0"} 0 +node_network_transmit_errs_total{device="tailscale0"} 0 +node_network_transmit_errs_total{device="veth0"} 0 +node_network_transmit_errs_total{device="virbr0"} 0 +node_network_transmit_errs_total{device="wlo1"} 0 # HELP node_network_transmit_fifo_total Network device statistic transmit_fifo. # TYPE node_network_transmit_fifo_total counter +node_network_transmit_fifo_total{device="enp0s20f0u5"} 0 +node_network_transmit_fifo_total{device="enp0s20f0u7u2"} 0 +node_network_transmit_fifo_total{device="enp86s0"} 0 node_network_transmit_fifo_total{device="lo"} 0 +node_network_transmit_fifo_total{device="podman0"} 0 +node_network_transmit_fifo_total{device="tailscale0"} 0 +node_network_transmit_fifo_total{device="veth0"} 0 +node_network_transmit_fifo_total{device="virbr0"} 0 +node_network_transmit_fifo_total{device="wlo1"} 0 # HELP node_network_transmit_packets_total Network device statistic transmit_packets. # TYPE node_network_transmit_packets_total counter # HELP node_network_transmit_queue_length Network device property: transmit_queue_length # TYPE node_network_transmit_queue_length gauge node_network_transmit_queue_length{device="bond0"} 1000 +node_network_transmit_queue_length{device="dmz"} 1000 node_network_transmit_queue_length{device="eth0"} 1000 +node_network_transmit_queue_length{device="int"} 1000 # HELP node_network_up Value is 1 if operstate is 'up', 0 otherwise. # TYPE node_network_up gauge node_network_up{device="bond0"} 1 +node_network_up{device="dmz"} 1 node_network_up{device="eth0"} 1 +node_network_up{device="int"} 1 # HELP node_nf_conntrack_entries Number of currently allocated flow entries for connection tracking. # TYPE node_nf_conntrack_entries gauge node_nf_conntrack_entries 123 @@ -2864,82 +2741,6 @@ node_os_info{build_id="",id="ubuntu",id_like="debian",image_id="",image_version= # HELP node_os_version Metric containing the major.minor part of the OS version. # TYPE node_os_version gauge node_os_version{id="ubuntu",id_like="debian",name="Ubuntu"} 20.04 -# HELP node_pcidevice_current_link_transfers_per_second Value of current link's transfers per second (T/s) -# TYPE node_pcidevice_current_link_transfers_per_second gauge -node_pcidevice_current_link_transfers_per_second{bus="00",device="02",function="1",segment="0000"} 8e+09 -node_pcidevice_current_link_transfers_per_second{bus="01",device="00",function="0",segment="0000"} 8e+09 -node_pcidevice_current_link_transfers_per_second{bus="45",device="00",function="0",segment="0000"} 5e+09 -# HELP node_pcidevice_current_link_width Value of current link's width (number of lanes) -# TYPE node_pcidevice_current_link_width gauge -node_pcidevice_current_link_width{bus="00",device="02",function="1",segment="0000"} 4 -node_pcidevice_current_link_width{bus="01",device="00",function="0",segment="0000"} 4 -node_pcidevice_current_link_width{bus="45",device="00",function="0",segment="0000"} 4 -# HELP node_pcidevice_d3cold_allowed Whether the PCIe device supports D3cold power state (0/1). -# TYPE node_pcidevice_d3cold_allowed gauge -node_pcidevice_d3cold_allowed{bus="00",device="02",function="1",segment="0000"} 1 -node_pcidevice_d3cold_allowed{bus="01",device="00",function="0",segment="0000"} 1 -node_pcidevice_d3cold_allowed{bus="45",device="00",function="0",segment="0000"} 1 -# HELP node_pcidevice_info Non-numeric data from /sys/bus/pci/devices/, value is always 1. -# TYPE node_pcidevice_info gauge -node_pcidevice_info{bus="00",class_id="0x060400",device="02",device_id="0x1634",function="1",parent_bus="*",parent_device="*",parent_function="*",parent_segment="*",revision="0x00",segment="0000",subsystem_device_id="0x5095",subsystem_vendor_id="0x17aa",vendor_id="0x1022"} 1 -node_pcidevice_info{bus="01",class_id="0x010802",device="00",device_id="0x540a",function="0",parent_bus="00",parent_device="02",parent_function="1",parent_segment="0000",revision="0x01",segment="0000",subsystem_device_id="0x5021",subsystem_vendor_id="0xc0a9",vendor_id="0xc0a9"} 1 -node_pcidevice_info{bus="45",class_id="0x020000",device="00",device_id="0x1521",function="0",parent_bus="40",parent_device="01",parent_function="3",parent_segment="0000",revision="0x01",segment="0000",subsystem_device_id="0x00a3",subsystem_vendor_id="0x8086",vendor_id="0x8086"} 1 -# HELP node_pcidevice_max_link_transfers_per_second Value of maximum link's transfers per second (T/s) -# TYPE node_pcidevice_max_link_transfers_per_second gauge -node_pcidevice_max_link_transfers_per_second{bus="00",device="02",function="1",segment="0000"} 8e+09 -node_pcidevice_max_link_transfers_per_second{bus="01",device="00",function="0",segment="0000"} 1.6e+10 -node_pcidevice_max_link_transfers_per_second{bus="45",device="00",function="0",segment="0000"} 5e+09 -# HELP node_pcidevice_max_link_width Value of maximum link's width (number of lanes) -# TYPE node_pcidevice_max_link_width gauge -node_pcidevice_max_link_width{bus="00",device="02",function="1",segment="0000"} 8 -node_pcidevice_max_link_width{bus="01",device="00",function="0",segment="0000"} 4 -node_pcidevice_max_link_width{bus="45",device="00",function="0",segment="0000"} 4 -# HELP node_pcidevice_numa_node NUMA node number for the PCI device. -1 indicates unknown or not available. -# TYPE node_pcidevice_numa_node gauge -node_pcidevice_numa_node{bus="45",device="00",function="0",segment="0000"} 0 -# HELP node_pcidevice_power_state PCIe device power state, one of: D0, D1, D2, D3hot, D3cold, unknown or error. -# TYPE node_pcidevice_power_state gauge -node_pcidevice_power_state{bus="00",device="02",function="1",segment="0000",state="D0"} 1 -node_pcidevice_power_state{bus="00",device="02",function="1",segment="0000",state="D1"} 0 -node_pcidevice_power_state{bus="00",device="02",function="1",segment="0000",state="D2"} 0 -node_pcidevice_power_state{bus="00",device="02",function="1",segment="0000",state="D3cold"} 0 -node_pcidevice_power_state{bus="00",device="02",function="1",segment="0000",state="D3hot"} 0 -node_pcidevice_power_state{bus="00",device="02",function="1",segment="0000",state="error"} 0 -node_pcidevice_power_state{bus="00",device="02",function="1",segment="0000",state="unknown"} 0 -node_pcidevice_power_state{bus="01",device="00",function="0",segment="0000",state="D0"} 1 -node_pcidevice_power_state{bus="01",device="00",function="0",segment="0000",state="D1"} 0 -node_pcidevice_power_state{bus="01",device="00",function="0",segment="0000",state="D2"} 0 -node_pcidevice_power_state{bus="01",device="00",function="0",segment="0000",state="D3cold"} 0 -node_pcidevice_power_state{bus="01",device="00",function="0",segment="0000",state="D3hot"} 0 -node_pcidevice_power_state{bus="01",device="00",function="0",segment="0000",state="error"} 0 -node_pcidevice_power_state{bus="01",device="00",function="0",segment="0000",state="unknown"} 0 -node_pcidevice_power_state{bus="45",device="00",function="0",segment="0000",state="D0"} 1 -node_pcidevice_power_state{bus="45",device="00",function="0",segment="0000",state="D1"} 0 -node_pcidevice_power_state{bus="45",device="00",function="0",segment="0000",state="D2"} 0 -node_pcidevice_power_state{bus="45",device="00",function="0",segment="0000",state="D3cold"} 0 -node_pcidevice_power_state{bus="45",device="00",function="0",segment="0000",state="D3hot"} 0 -node_pcidevice_power_state{bus="45",device="00",function="0",segment="0000",state="error"} 0 -node_pcidevice_power_state{bus="45",device="00",function="0",segment="0000",state="unknown"} 0 -# HELP node_pcidevice_sriov_drivers_autoprobe Whether SR-IOV drivers autoprobe is enabled for the device (0/1). -# TYPE node_pcidevice_sriov_drivers_autoprobe gauge -node_pcidevice_sriov_drivers_autoprobe{bus="00",device="02",function="1",segment="0000"} 0 -node_pcidevice_sriov_drivers_autoprobe{bus="01",device="00",function="0",segment="0000"} 1 -node_pcidevice_sriov_drivers_autoprobe{bus="45",device="00",function="0",segment="0000"} 1 -# HELP node_pcidevice_sriov_numvfs Number of Virtual Functions (VFs) currently enabled for SR-IOV. -# TYPE node_pcidevice_sriov_numvfs gauge -node_pcidevice_sriov_numvfs{bus="00",device="02",function="1",segment="0000"} 0 -node_pcidevice_sriov_numvfs{bus="01",device="00",function="0",segment="0000"} 4 -node_pcidevice_sriov_numvfs{bus="45",device="00",function="0",segment="0000"} 0 -# HELP node_pcidevice_sriov_totalvfs Total number of Virtual Functions (VFs) supported by the device. -# TYPE node_pcidevice_sriov_totalvfs gauge -node_pcidevice_sriov_totalvfs{bus="00",device="02",function="1",segment="0000"} 0 -node_pcidevice_sriov_totalvfs{bus="01",device="00",function="0",segment="0000"} 8 -node_pcidevice_sriov_totalvfs{bus="45",device="00",function="0",segment="0000"} 7 -# HELP node_pcidevice_sriov_vf_total_msix Total number of MSI-X vectors for Virtual Functions. -# TYPE node_pcidevice_sriov_vf_total_msix gauge -node_pcidevice_sriov_vf_total_msix{bus="00",device="02",function="1",segment="0000"} 0 -node_pcidevice_sriov_vf_total_msix{bus="01",device="00",function="0",segment="0000"} 16 -node_pcidevice_sriov_vf_total_msix{bus="45",device="00",function="0",segment="0000"} 0 # HELP node_power_supply_capacity capacity value of /sys/class/power_supply/. # TYPE node_power_supply_capacity gauge node_power_supply_capacity{power_supply="BAT0"} 81 @@ -2992,56 +2793,12 @@ node_pressure_memory_stalled_seconds_total 0 # HELP node_pressure_memory_waiting_seconds_total Total time in seconds that processes have waited for memory # TYPE node_pressure_memory_waiting_seconds_total counter node_pressure_memory_waiting_seconds_total 0 -# HELP node_processes_max_processes Number of max PIDs limit -# TYPE node_processes_max_processes gauge -node_processes_max_processes 123 -# HELP node_processes_max_threads Limit of threads in the system -# TYPE node_processes_max_threads gauge -node_processes_max_threads 7801 -# HELP node_processes_pids Number of PIDs -# TYPE node_processes_pids gauge -node_processes_pids 3 -# HELP node_processes_state Number of processes in each state. -# TYPE node_processes_state gauge -node_processes_state{state="I"} 1 -node_processes_state{state="S"} 2 -# HELP node_processes_threads Allocated threads in system -# TYPE node_processes_threads gauge -node_processes_threads 3 # HELP node_procs_blocked Number of processes blocked waiting for I/O to complete. # TYPE node_procs_blocked gauge node_procs_blocked 0 # HELP node_procs_running Number of processes in runnable state. # TYPE node_procs_running gauge node_procs_running 2 -# HELP node_qdisc_backlog Number of bytes currently in queue to be sent. -# TYPE node_qdisc_backlog gauge -node_qdisc_backlog{device="eth0",kind="pfifo_fast"} 0 -node_qdisc_backlog{device="wlan0",kind="fq"} 0 -# HELP node_qdisc_bytes_total Number of bytes sent. -# TYPE node_qdisc_bytes_total counter -node_qdisc_bytes_total{device="eth0",kind="pfifo_fast"} 83 -node_qdisc_bytes_total{device="wlan0",kind="fq"} 42 -# HELP node_qdisc_current_queue_length Number of packets currently in queue to be sent. -# TYPE node_qdisc_current_queue_length gauge -node_qdisc_current_queue_length{device="eth0",kind="pfifo_fast"} 0 -node_qdisc_current_queue_length{device="wlan0",kind="fq"} 0 -# HELP node_qdisc_drops_total Number of packets dropped. -# TYPE node_qdisc_drops_total counter -node_qdisc_drops_total{device="eth0",kind="pfifo_fast"} 0 -node_qdisc_drops_total{device="wlan0",kind="fq"} 1 -# HELP node_qdisc_overlimits_total Number of overlimit packets. -# TYPE node_qdisc_overlimits_total counter -node_qdisc_overlimits_total{device="eth0",kind="pfifo_fast"} 0 -node_qdisc_overlimits_total{device="wlan0",kind="fq"} 0 -# HELP node_qdisc_packets_total Number of packets sent. -# TYPE node_qdisc_packets_total counter -node_qdisc_packets_total{device="eth0",kind="pfifo_fast"} 83 -node_qdisc_packets_total{device="wlan0",kind="fq"} 42 -# HELP node_qdisc_requeues_total Number of packets dequeued, not transmitted, and requeued. -# TYPE node_qdisc_requeues_total counter -node_qdisc_requeues_total{device="eth0",kind="pfifo_fast"} 2 -node_qdisc_requeues_total{device="wlan0",kind="fq"} 1 # HELP node_rapl_core_joules_total Current RAPL core value in joules # TYPE node_rapl_core_joules_total counter node_rapl_core_joules_total{index="0",path="collector/fixtures/sys/class/powercap/intel-rapl:0:0"} 118821.284256 @@ -3066,32 +2823,25 @@ node_schedstat_waiting_seconds_total{cpu="1"} 364107.263788241 # TYPE node_scrape_collector_success gauge node_scrape_collector_success{collector="arp"} 1 node_scrape_collector_success{collector="bcache"} 1 +node_scrape_collector_success{collector="bcachefs"} 1 node_scrape_collector_success{collector="bonding"} 1 node_scrape_collector_success{collector="btrfs"} 1 -node_scrape_collector_success{collector="buddyinfo"} 1 -node_scrape_collector_success{collector="cgroups"} 1 node_scrape_collector_success{collector="conntrack"} 1 node_scrape_collector_success{collector="cpu"} 1 -node_scrape_collector_success{collector="cpu_vulnerabilities"} 1 node_scrape_collector_success{collector="cpufreq"} 1 node_scrape_collector_success{collector="diskstats"} 1 node_scrape_collector_success{collector="dmi"} 1 -node_scrape_collector_success{collector="drbd"} 1 node_scrape_collector_success{collector="edac"} 1 node_scrape_collector_success{collector="entropy"} 1 node_scrape_collector_success{collector="fibrechannel"} 1 node_scrape_collector_success{collector="filefd"} 1 +node_scrape_collector_success{collector="filesystem"} 1 node_scrape_collector_success{collector="hwmon"} 1 node_scrape_collector_success{collector="infiniband"} 1 -node_scrape_collector_success{collector="interrupts"} 1 node_scrape_collector_success{collector="ipvs"} 1 -node_scrape_collector_success{collector="ksmd"} 1 -node_scrape_collector_success{collector="lnstat"} 1 node_scrape_collector_success{collector="loadavg"} 1 node_scrape_collector_success{collector="mdadm"} 1 node_scrape_collector_success{collector="meminfo"} 1 -node_scrape_collector_success{collector="meminfo_numa"} 1 -node_scrape_collector_success{collector="mountstats"} 1 node_scrape_collector_success{collector="netclass"} 1 node_scrape_collector_success{collector="netdev"} 1 node_scrape_collector_success{collector="netstat"} 1 @@ -3099,61 +2849,28 @@ node_scrape_collector_success{collector="nfs"} 1 node_scrape_collector_success{collector="nfsd"} 1 node_scrape_collector_success{collector="nvme"} 1 node_scrape_collector_success{collector="os"} 1 -node_scrape_collector_success{collector="pcidevice"} 1 node_scrape_collector_success{collector="powersupplyclass"} 1 node_scrape_collector_success{collector="pressure"} 1 -node_scrape_collector_success{collector="processes"} 1 -node_scrape_collector_success{collector="qdisc"} 1 node_scrape_collector_success{collector="rapl"} 1 node_scrape_collector_success{collector="schedstat"} 1 -node_scrape_collector_success{collector="slabinfo"} 1 +node_scrape_collector_success{collector="selinux"} 1 node_scrape_collector_success{collector="sockstat"} 1 -node_scrape_collector_success{collector="softirqs"} 1 node_scrape_collector_success{collector="softnet"} 1 node_scrape_collector_success{collector="stat"} 1 -node_scrape_collector_success{collector="sysctl"} 1 node_scrape_collector_success{collector="tapestats"} 1 node_scrape_collector_success{collector="textfile"} 1 node_scrape_collector_success{collector="thermal_zone"} 1 node_scrape_collector_success{collector="time"} 1 +node_scrape_collector_success{collector="timex"} 1 node_scrape_collector_success{collector="udp_queues"} 1 +node_scrape_collector_success{collector="uname"} 1 node_scrape_collector_success{collector="vmstat"} 1 node_scrape_collector_success{collector="watchdog"} 1 -node_scrape_collector_success{collector="wifi"} 1 -node_scrape_collector_success{collector="xfrm"} 1 node_scrape_collector_success{collector="xfs"} 1 node_scrape_collector_success{collector="zfs"} 1 -node_scrape_collector_success{collector="zoneinfo"} 1 -# HELP node_slabinfo_active_objects The number of objects that are currently active (i.e., in use). -# TYPE node_slabinfo_active_objects gauge -node_slabinfo_active_objects{slab="dmaengine-unmap-128"} 1206 -node_slabinfo_active_objects{slab="kmalloc-8192"} 132 -node_slabinfo_active_objects{slab="kmem_cache"} 320 -node_slabinfo_active_objects{slab="tw_sock_TCP"} 704 -# HELP node_slabinfo_object_size_bytes The size of objects in this slab, in bytes. -# TYPE node_slabinfo_object_size_bytes gauge -node_slabinfo_object_size_bytes{slab="dmaengine-unmap-128"} 1088 -node_slabinfo_object_size_bytes{slab="kmalloc-8192"} 8192 -node_slabinfo_object_size_bytes{slab="kmem_cache"} 256 -node_slabinfo_object_size_bytes{slab="tw_sock_TCP"} 256 -# HELP node_slabinfo_objects The total number of allocated objects (i.e., objects that are both in use and not in use). -# TYPE node_slabinfo_objects gauge -node_slabinfo_objects{slab="dmaengine-unmap-128"} 1320 -node_slabinfo_objects{slab="kmalloc-8192"} 148 -node_slabinfo_objects{slab="kmem_cache"} 320 -node_slabinfo_objects{slab="tw_sock_TCP"} 864 -# HELP node_slabinfo_objects_per_slab The number of objects stored in each slab. -# TYPE node_slabinfo_objects_per_slab gauge -node_slabinfo_objects_per_slab{slab="dmaengine-unmap-128"} 30 -node_slabinfo_objects_per_slab{slab="kmalloc-8192"} 4 -node_slabinfo_objects_per_slab{slab="kmem_cache"} 32 -node_slabinfo_objects_per_slab{slab="tw_sock_TCP"} 32 -# HELP node_slabinfo_pages_per_slab The number of pages allocated for each slab. -# TYPE node_slabinfo_pages_per_slab gauge -node_slabinfo_pages_per_slab{slab="dmaengine-unmap-128"} 8 -node_slabinfo_pages_per_slab{slab="kmalloc-8192"} 8 -node_slabinfo_pages_per_slab{slab="kmem_cache"} 2 -node_slabinfo_pages_per_slab{slab="tw_sock_TCP"} 2 +# HELP node_selinux_enabled SELinux is enabled, 1 is true, 0 is false +# TYPE node_selinux_enabled gauge +node_selinux_enabled 0 # HELP node_sockstat_FRAG6_inuse Number of FRAG6 sockets in state inuse. # TYPE node_sockstat_FRAG6_inuse gauge node_sockstat_FRAG6_inuse 0 @@ -3214,40 +2931,6 @@ node_sockstat_UDP_mem_bytes 0 # HELP node_sockstat_sockets_used Number of IPv4 sockets in use. # TYPE node_sockstat_sockets_used gauge node_sockstat_sockets_used 229 -# HELP node_softirqs_functions_total Softirq counts per CPU. -# TYPE node_softirqs_functions_total counter -node_softirqs_functions_total{cpu="0",type="BLOCK"} 23776 -node_softirqs_functions_total{cpu="0",type="HI"} 7 -node_softirqs_functions_total{cpu="0",type="HRTIMER"} 40 -node_softirqs_functions_total{cpu="0",type="IRQ_POLL"} 0 -node_softirqs_functions_total{cpu="0",type="NET_RX"} 43066 -node_softirqs_functions_total{cpu="0",type="NET_TX"} 2301 -node_softirqs_functions_total{cpu="0",type="RCU"} 155929 -node_softirqs_functions_total{cpu="0",type="SCHED"} 378895 -node_softirqs_functions_total{cpu="0",type="TASKLET"} 372 -node_softirqs_functions_total{cpu="0",type="TIMER"} 424191 -node_softirqs_functions_total{cpu="1",type="BLOCK"} 24115 -node_softirqs_functions_total{cpu="1",type="HI"} 1 -node_softirqs_functions_total{cpu="1",type="HRTIMER"} 346 -node_softirqs_functions_total{cpu="1",type="IRQ_POLL"} 0 -node_softirqs_functions_total{cpu="1",type="NET_RX"} 104508 -node_softirqs_functions_total{cpu="1",type="NET_TX"} 2430 -node_softirqs_functions_total{cpu="1",type="RCU"} 146631 -node_softirqs_functions_total{cpu="1",type="SCHED"} 152852 -node_softirqs_functions_total{cpu="1",type="TASKLET"} 1899 -node_softirqs_functions_total{cpu="1",type="TIMER"} 108342 -# HELP node_softirqs_total Number of softirq calls. -# TYPE node_softirqs_total counter -node_softirqs_total{vector="block"} 186066 -node_softirqs_total{vector="block_iopoll"} 0 -node_softirqs_total{vector="hi"} 250191 -node_softirqs_total{vector="hrtimer"} 12499 -node_softirqs_total{vector="net_rx"} 211099 -node_softirqs_total{vector="net_tx"} 1647 -node_softirqs_total{vector="rcu"} 508444 -node_softirqs_total{vector="sched"} 622196 -node_softirqs_total{vector="tasklet"} 1.783454e+06 -node_softirqs_total{vector="timer"} 1.481983e+06 # HELP node_softnet_backlog_len Softnet backlog status # TYPE node_softnet_backlog_len gauge node_softnet_backlog_len{cpu="0"} 0 @@ -3290,33 +2973,6 @@ node_softnet_times_squeezed_total{cpu="0"} 1 node_softnet_times_squeezed_total{cpu="1"} 10 node_softnet_times_squeezed_total{cpu="2"} 85 node_softnet_times_squeezed_total{cpu="3"} 50 -# HELP node_sysctl_fs_file_nr sysctl fs.file-nr -# TYPE node_sysctl_fs_file_nr untyped -node_sysctl_fs_file_nr{index="0"} 1024 -node_sysctl_fs_file_nr{index="1"} 0 -node_sysctl_fs_file_nr{index="2"} 1.631329e+06 -# HELP node_sysctl_fs_file_nr_current sysctl fs.file-nr, field 1 -# TYPE node_sysctl_fs_file_nr_current untyped -node_sysctl_fs_file_nr_current 0 -# HELP node_sysctl_fs_file_nr_max sysctl fs.file-nr, field 2 -# TYPE node_sysctl_fs_file_nr_max untyped -node_sysctl_fs_file_nr_max 1.631329e+06 -# HELP node_sysctl_fs_file_nr_total sysctl fs.file-nr, field 0 -# TYPE node_sysctl_fs_file_nr_total untyped -node_sysctl_fs_file_nr_total 1024 -# HELP node_sysctl_info sysctl info -# TYPE node_sysctl_info gauge -node_sysctl_info{index="0",name="kernel.seccomp.actions_avail",value="kill_process"} 1 -node_sysctl_info{index="1",name="kernel.seccomp.actions_avail",value="kill_thread"} 1 -node_sysctl_info{index="2",name="kernel.seccomp.actions_avail",value="trap"} 1 -node_sysctl_info{index="3",name="kernel.seccomp.actions_avail",value="errno"} 1 -node_sysctl_info{index="4",name="kernel.seccomp.actions_avail",value="user_notif"} 1 -node_sysctl_info{index="5",name="kernel.seccomp.actions_avail",value="trace"} 1 -node_sysctl_info{index="6",name="kernel.seccomp.actions_avail",value="log"} 1 -node_sysctl_info{index="7",name="kernel.seccomp.actions_avail",value="allow"} 1 -# HELP node_sysctl_kernel_threads_max sysctl kernel.threads-max -# TYPE node_sysctl_kernel_threads_max untyped -node_sysctl_kernel_threads_max 7801 # HELP node_tape_io_now The number of I/Os currently outstanding to this device. # TYPE node_tape_io_now gauge node_tape_io_now{device="st0"} 1 @@ -3347,8 +3003,6 @@ node_tape_writes_completed_total{device="st0"} 5.3772916e+07 # HELP node_tape_written_bytes_total The number of bytes written to the tape drive. # TYPE node_tape_written_bytes_total counter node_tape_written_bytes_total{device="st0"} 1.496246784e+12 -# HELP node_textfile_mtime_seconds Unixtime mtime of textfiles successfully read. -# TYPE node_textfile_mtime_seconds gauge # HELP node_textfile_scrape_error 1 if there was an error opening or reading a file, 0 otherwise # TYPE node_textfile_scrape_error gauge node_textfile_scrape_error 0 @@ -3367,10 +3021,64 @@ node_time_clocksource_current_info{clocksource="tsc",device="0"} 1 # TYPE node_time_seconds gauge # HELP node_time_zone_offset_seconds System time zone offset in seconds. # TYPE node_time_zone_offset_seconds gauge +# HELP node_timex_estimated_error_seconds Estimated error in seconds. +# TYPE node_timex_estimated_error_seconds gauge +node_timex_estimated_error_seconds 0 +# HELP node_timex_frequency_adjustment_ratio Local clock frequency adjustment. +# TYPE node_timex_frequency_adjustment_ratio gauge +node_timex_frequency_adjustment_ratio 1.0000103737182617 +# HELP node_timex_loop_time_constant Phase-locked loop time constant. +# TYPE node_timex_loop_time_constant gauge +node_timex_loop_time_constant 7 +# HELP node_timex_maxerror_seconds Maximum error in seconds. +# TYPE node_timex_maxerror_seconds gauge +node_timex_maxerror_seconds 0.2705 +# HELP node_timex_offset_seconds Time offset in between local system and reference clock. +# TYPE node_timex_offset_seconds gauge +node_timex_offset_seconds -0.000801693 +# HELP node_timex_pps_calibration_total Pulse per second count of calibration intervals. +# TYPE node_timex_pps_calibration_total counter +node_timex_pps_calibration_total 0 +# HELP node_timex_pps_error_total Pulse per second count of calibration errors. +# TYPE node_timex_pps_error_total counter +node_timex_pps_error_total 0 +# HELP node_timex_pps_frequency_hertz Pulse per second frequency. +# TYPE node_timex_pps_frequency_hertz gauge +node_timex_pps_frequency_hertz 0 +# HELP node_timex_pps_jitter_seconds Pulse per second jitter. +# TYPE node_timex_pps_jitter_seconds gauge +node_timex_pps_jitter_seconds 0 +# HELP node_timex_pps_jitter_total Pulse per second count of jitter limit exceeded events. +# TYPE node_timex_pps_jitter_total counter +node_timex_pps_jitter_total 0 +# HELP node_timex_pps_shift_seconds Pulse per second interval duration. +# TYPE node_timex_pps_shift_seconds gauge +node_timex_pps_shift_seconds 0 +# HELP node_timex_pps_stability_exceeded_total Pulse per second count of stability limit exceeded events. +# TYPE node_timex_pps_stability_exceeded_total counter +node_timex_pps_stability_exceeded_total 0 +# HELP node_timex_pps_stability_hertz Pulse per second stability, average of recent frequency changes. +# TYPE node_timex_pps_stability_hertz gauge +node_timex_pps_stability_hertz 0 +# HELP node_timex_status Value of the status array bits. +# TYPE node_timex_status gauge +node_timex_status 24577 +# HELP node_timex_sync_status Is clock synchronized to a reliable server (1 = yes, 0 = no). +# TYPE node_timex_sync_status gauge +node_timex_sync_status 1 +# HELP node_timex_tai_offset_seconds International Atomic Time (TAI) offset. +# TYPE node_timex_tai_offset_seconds gauge +node_timex_tai_offset_seconds 0 +# HELP node_timex_tick_seconds Seconds between clock ticks. +# TYPE node_timex_tick_seconds gauge +node_timex_tick_seconds 0.01 # HELP node_udp_queues Number of allocated memory in the kernel for UDP datagrams in bytes. # TYPE node_udp_queues gauge node_udp_queues{ip="v4",queue="rx"} 0 node_udp_queues{ip="v4",queue="tx"} 21 +# HELP node_uname_info Labeled system information as provided by the uname system call. +# TYPE node_uname_info gauge +node_uname_info{domainname="(none)",machine="x86_64",nodename="enterprise",release="6.19.3",sysname="Linux",version="#1-NixOS SMP PREEMPT_DYNAMIC Thu Feb 19 15:33:27 UTC 2026"} 1 # HELP node_vmstat_oom_kill /proc/vmstat information field oom_kill. # TYPE node_vmstat_oom_kill untyped node_vmstat_oom_kill 0 @@ -3417,145 +3125,6 @@ node_watchdog_timeleft_seconds{name="watchdog0"} 300 # HELP node_watchdog_timeout_seconds Value of /sys/class/watchdog//timeout # TYPE node_watchdog_timeout_seconds gauge node_watchdog_timeout_seconds{name="watchdog0"} 60 -# HELP node_wifi_interface_frequency_hertz The current frequency a WiFi interface is operating at, in hertz. -# TYPE node_wifi_interface_frequency_hertz gauge -node_wifi_interface_frequency_hertz{device="wlan0"} 2.412e+09 -node_wifi_interface_frequency_hertz{device="wlan1"} 2.412e+09 -# HELP node_wifi_station_beacon_loss_total The total number of times a station has detected a beacon loss. -# TYPE node_wifi_station_beacon_loss_total counter -node_wifi_station_beacon_loss_total{device="wlan0",mac_address="01:02:03:04:05:06"} 2 -node_wifi_station_beacon_loss_total{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 1 -# HELP node_wifi_station_connected_seconds_total The total number of seconds a station has been connected to an access point. -# TYPE node_wifi_station_connected_seconds_total counter -node_wifi_station_connected_seconds_total{device="wlan0",mac_address="01:02:03:04:05:06"} 60 -node_wifi_station_connected_seconds_total{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 30 -# HELP node_wifi_station_inactive_seconds The number of seconds since any wireless activity has occurred on a station. -# TYPE node_wifi_station_inactive_seconds gauge -node_wifi_station_inactive_seconds{device="wlan0",mac_address="01:02:03:04:05:06"} 0.8 -node_wifi_station_inactive_seconds{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 0.4 -# HELP node_wifi_station_info Labeled WiFi interface station information as provided by the operating system. -# TYPE node_wifi_station_info gauge -node_wifi_station_info{bssid="00:11:22:33:44:55",device="wlan0",mode="client",ssid="Example"} 1 -# HELP node_wifi_station_receive_bits_per_second The current WiFi receive bitrate of a station, in bits per second. -# TYPE node_wifi_station_receive_bits_per_second gauge -node_wifi_station_receive_bits_per_second{device="wlan0",mac_address="01:02:03:04:05:06"} 2.56e+08 -node_wifi_station_receive_bits_per_second{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 1.28e+08 -# HELP node_wifi_station_receive_bytes_total The total number of bytes received by a WiFi station. -# TYPE node_wifi_station_receive_bytes_total counter -node_wifi_station_receive_bytes_total{device="wlan0",mac_address="01:02:03:04:05:06"} 0 -node_wifi_station_receive_bytes_total{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 0 -# HELP node_wifi_station_received_packets_total The total number of packets received by a station. -# TYPE node_wifi_station_received_packets_total counter -node_wifi_station_received_packets_total{device="wlan0",mac_address="01:02:03:04:05:06"} 0 -node_wifi_station_received_packets_total{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 0 -# HELP node_wifi_station_signal_dbm The current WiFi signal strength, in decibel-milliwatts (dBm). -# TYPE node_wifi_station_signal_dbm gauge -node_wifi_station_signal_dbm{device="wlan0",mac_address="01:02:03:04:05:06"} -26 -node_wifi_station_signal_dbm{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} -52 -# HELP node_wifi_station_transmit_bits_per_second The current WiFi transmit bitrate of a station, in bits per second. -# TYPE node_wifi_station_transmit_bits_per_second gauge -node_wifi_station_transmit_bits_per_second{device="wlan0",mac_address="01:02:03:04:05:06"} 3.28e+08 -node_wifi_station_transmit_bits_per_second{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 1.64e+08 -# HELP node_wifi_station_transmit_bytes_total The total number of bytes transmitted by a WiFi station. -# TYPE node_wifi_station_transmit_bytes_total counter -node_wifi_station_transmit_bytes_total{device="wlan0",mac_address="01:02:03:04:05:06"} 0 -node_wifi_station_transmit_bytes_total{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 0 -# HELP node_wifi_station_transmit_failed_total The total number of times a station has failed to send a packet. -# TYPE node_wifi_station_transmit_failed_total counter -node_wifi_station_transmit_failed_total{device="wlan0",mac_address="01:02:03:04:05:06"} 4 -node_wifi_station_transmit_failed_total{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 2 -# HELP node_wifi_station_transmit_retries_total The total number of times a station has had to retry while sending a packet. -# TYPE node_wifi_station_transmit_retries_total counter -node_wifi_station_transmit_retries_total{device="wlan0",mac_address="01:02:03:04:05:06"} 20 -node_wifi_station_transmit_retries_total{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 10 -# HELP node_wifi_station_transmitted_packets_total The total number of packets transmitted by a station. -# TYPE node_wifi_station_transmitted_packets_total counter -node_wifi_station_transmitted_packets_total{device="wlan0",mac_address="01:02:03:04:05:06"} 0 -node_wifi_station_transmitted_packets_total{device="wlan0",mac_address="aa:bb:cc:dd:ee:ff"} 0 -# HELP node_xfrm_acquire_error_packets_total State hasn’t been fully acquired before use -# TYPE node_xfrm_acquire_error_packets_total counter -node_xfrm_acquire_error_packets_total 24532 -# HELP node_xfrm_fwd_hdr_error_packets_total Forward routing of a packet is not allowed -# TYPE node_xfrm_fwd_hdr_error_packets_total counter -node_xfrm_fwd_hdr_error_packets_total 6654 -# HELP node_xfrm_in_buffer_error_packets_total No buffer is left -# TYPE node_xfrm_in_buffer_error_packets_total counter -node_xfrm_in_buffer_error_packets_total 2 -# HELP node_xfrm_in_error_packets_total All errors not matched by other -# TYPE node_xfrm_in_error_packets_total counter -node_xfrm_in_error_packets_total 1 -# HELP node_xfrm_in_hdr_error_packets_total Header error -# TYPE node_xfrm_in_hdr_error_packets_total counter -node_xfrm_in_hdr_error_packets_total 4 -# HELP node_xfrm_in_no_pols_packets_total No policy is found for states e.g. Inbound SAs are correct but no SP is found -# TYPE node_xfrm_in_no_pols_packets_total counter -node_xfrm_in_no_pols_packets_total 65432 -# HELP node_xfrm_in_no_states_packets_total No state is found i.e. Either inbound SPI, address, or IPsec protocol at SA is wrong -# TYPE node_xfrm_in_no_states_packets_total counter -node_xfrm_in_no_states_packets_total 3 -# HELP node_xfrm_in_pol_block_packets_total Policy discards -# TYPE node_xfrm_in_pol_block_packets_total counter -node_xfrm_in_pol_block_packets_total 100 -# HELP node_xfrm_in_pol_error_packets_total Policy error -# TYPE node_xfrm_in_pol_error_packets_total counter -node_xfrm_in_pol_error_packets_total 10000 -# HELP node_xfrm_in_state_expired_packets_total State is expired -# TYPE node_xfrm_in_state_expired_packets_total counter -node_xfrm_in_state_expired_packets_total 7 -# HELP node_xfrm_in_state_invalid_packets_total State is invalid -# TYPE node_xfrm_in_state_invalid_packets_total counter -node_xfrm_in_state_invalid_packets_total 55555 -# HELP node_xfrm_in_state_mismatch_packets_total State has mismatch option e.g. UDP encapsulation type is mismatch -# TYPE node_xfrm_in_state_mismatch_packets_total counter -node_xfrm_in_state_mismatch_packets_total 23451 -# HELP node_xfrm_in_state_mode_error_packets_total Transformation mode specific error -# TYPE node_xfrm_in_state_mode_error_packets_total counter -node_xfrm_in_state_mode_error_packets_total 100 -# HELP node_xfrm_in_state_proto_error_packets_total Transformation protocol specific error e.g. SA key is wrong -# TYPE node_xfrm_in_state_proto_error_packets_total counter -node_xfrm_in_state_proto_error_packets_total 40 -# HELP node_xfrm_in_state_seq_error_packets_total Sequence error i.e. Sequence number is out of window -# TYPE node_xfrm_in_state_seq_error_packets_total counter -node_xfrm_in_state_seq_error_packets_total 6000 -# HELP node_xfrm_in_tmpl_mismatch_packets_total No matching template for states e.g. Inbound SAs are correct but SP rule is wrong -# TYPE node_xfrm_in_tmpl_mismatch_packets_total counter -node_xfrm_in_tmpl_mismatch_packets_total 51 -# HELP node_xfrm_out_bundle_check_error_packets_total Bundle check error -# TYPE node_xfrm_out_bundle_check_error_packets_total counter -node_xfrm_out_bundle_check_error_packets_total 555 -# HELP node_xfrm_out_bundle_gen_error_packets_total Bundle generation error -# TYPE node_xfrm_out_bundle_gen_error_packets_total counter -node_xfrm_out_bundle_gen_error_packets_total 43321 -# HELP node_xfrm_out_error_packets_total All errors which is not matched others -# TYPE node_xfrm_out_error_packets_total counter -node_xfrm_out_error_packets_total 1e+06 -# HELP node_xfrm_out_no_states_packets_total No state is found -# TYPE node_xfrm_out_no_states_packets_total counter -node_xfrm_out_no_states_packets_total 869 -# HELP node_xfrm_out_pol_block_packets_total Policy discards -# TYPE node_xfrm_out_pol_block_packets_total counter -node_xfrm_out_pol_block_packets_total 43456 -# HELP node_xfrm_out_pol_dead_packets_total Policy is dead -# TYPE node_xfrm_out_pol_dead_packets_total counter -node_xfrm_out_pol_dead_packets_total 7656 -# HELP node_xfrm_out_pol_error_packets_total Policy error -# TYPE node_xfrm_out_pol_error_packets_total counter -node_xfrm_out_pol_error_packets_total 1454 -# HELP node_xfrm_out_state_expired_packets_total State is expired -# TYPE node_xfrm_out_state_expired_packets_total counter -node_xfrm_out_state_expired_packets_total 565 -# HELP node_xfrm_out_state_invalid_packets_total State is invalid, perhaps expired -# TYPE node_xfrm_out_state_invalid_packets_total counter -node_xfrm_out_state_invalid_packets_total 28765 -# HELP node_xfrm_out_state_mode_error_packets_total Transformation mode specific error -# TYPE node_xfrm_out_state_mode_error_packets_total counter -node_xfrm_out_state_mode_error_packets_total 8 -# HELP node_xfrm_out_state_proto_error_packets_total Transformation protocol specific error -# TYPE node_xfrm_out_state_proto_error_packets_total counter -node_xfrm_out_state_proto_error_packets_total 4542 -# HELP node_xfrm_out_state_seq_error_packets_total Sequence error i.e. Sequence number overflow -# TYPE node_xfrm_out_state_seq_error_packets_total counter -node_xfrm_out_state_seq_error_packets_total 543 # HELP node_xfs_allocation_btree_compares_total Number of allocation B-tree compares for a filesystem. # TYPE node_xfs_allocation_btree_compares_total counter node_xfs_allocation_btree_compares_total{device="sda1"} 0 @@ -4588,177 +4157,6 @@ node_zfs_zpool_wtime{zpool="poolz1"} 9.673715628e+09 node_zfs_zpool_wupdate{zpool="pool1"} 7.9210489694949e+13 node_zfs_zpool_wupdate{zpool="pool3"} 7.9210489694949e+13 node_zfs_zpool_wupdate{zpool="poolz1"} 1.10734831833266e+14 -# HELP node_zoneinfo_high_pages Zone watermark pages_high -# TYPE node_zoneinfo_high_pages gauge -node_zoneinfo_high_pages{node="0",zone="DMA"} 14 -node_zoneinfo_high_pages{node="0",zone="DMA32"} 2122 -node_zoneinfo_high_pages{node="0",zone="Device"} 0 -node_zoneinfo_high_pages{node="0",zone="Movable"} 0 -node_zoneinfo_high_pages{node="0",zone="Normal"} 31113 -# HELP node_zoneinfo_low_pages Zone watermark pages_low -# TYPE node_zoneinfo_low_pages gauge -node_zoneinfo_low_pages{node="0",zone="DMA"} 11 -node_zoneinfo_low_pages{node="0",zone="DMA32"} 1600 -node_zoneinfo_low_pages{node="0",zone="Device"} 0 -node_zoneinfo_low_pages{node="0",zone="Movable"} 0 -node_zoneinfo_low_pages{node="0",zone="Normal"} 23461 -# HELP node_zoneinfo_managed_pages Present pages managed by the buddy system -# TYPE node_zoneinfo_managed_pages gauge -node_zoneinfo_managed_pages{node="0",zone="DMA"} 3973 -node_zoneinfo_managed_pages{node="0",zone="DMA32"} 530339 -node_zoneinfo_managed_pages{node="0",zone="Device"} 0 -node_zoneinfo_managed_pages{node="0",zone="Movable"} 0 -node_zoneinfo_managed_pages{node="0",zone="Normal"} 7.654794e+06 -# HELP node_zoneinfo_min_pages Zone watermark pages_min -# TYPE node_zoneinfo_min_pages gauge -node_zoneinfo_min_pages{node="0",zone="DMA"} 8 -node_zoneinfo_min_pages{node="0",zone="DMA32"} 1078 -node_zoneinfo_min_pages{node="0",zone="Device"} 0 -node_zoneinfo_min_pages{node="0",zone="Movable"} 0 -node_zoneinfo_min_pages{node="0",zone="Normal"} 15809 -# HELP node_zoneinfo_nr_active_anon_pages Number of anonymous pages recently more used -# TYPE node_zoneinfo_nr_active_anon_pages gauge -node_zoneinfo_nr_active_anon_pages{node="0",zone="DMA"} 1.175853e+06 -# HELP node_zoneinfo_nr_active_file_pages Number of active pages with file-backing -# TYPE node_zoneinfo_nr_active_file_pages gauge -node_zoneinfo_nr_active_file_pages{node="0",zone="DMA"} 688810 -# HELP node_zoneinfo_nr_anon_pages Number of anonymous pages currently used by the system -# TYPE node_zoneinfo_nr_anon_pages gauge -node_zoneinfo_nr_anon_pages{node="0",zone="DMA"} 1.156608e+06 -# HELP node_zoneinfo_nr_anon_transparent_hugepages Number of anonymous transparent huge pages currently used by the system -# TYPE node_zoneinfo_nr_anon_transparent_hugepages gauge -node_zoneinfo_nr_anon_transparent_hugepages{node="0",zone="DMA"} 0 -# HELP node_zoneinfo_nr_dirtied_total Page dirtyings since bootup -# TYPE node_zoneinfo_nr_dirtied_total counter -node_zoneinfo_nr_dirtied_total{node="0",zone="DMA"} 1.189097e+06 -# HELP node_zoneinfo_nr_dirty_pages Number of dirty pages -# TYPE node_zoneinfo_nr_dirty_pages gauge -node_zoneinfo_nr_dirty_pages{node="0",zone="DMA"} 103 -# HELP node_zoneinfo_nr_file_pages Number of file pages -# TYPE node_zoneinfo_nr_file_pages gauge -node_zoneinfo_nr_file_pages{node="0",zone="DMA"} 1.740118e+06 -# HELP node_zoneinfo_nr_free_pages Total number of free pages in the zone -# TYPE node_zoneinfo_nr_free_pages gauge -node_zoneinfo_nr_free_pages{node="0",zone="DMA"} 2949 -node_zoneinfo_nr_free_pages{node="0",zone="DMA32"} 528427 -node_zoneinfo_nr_free_pages{node="0",zone="Normal"} 4.539739e+06 -# HELP node_zoneinfo_nr_inactive_anon_pages Number of anonymous pages recently less used -# TYPE node_zoneinfo_nr_inactive_anon_pages gauge -node_zoneinfo_nr_inactive_anon_pages{node="0",zone="DMA"} 95612 -# HELP node_zoneinfo_nr_inactive_file_pages Number of inactive pages with file-backing -# TYPE node_zoneinfo_nr_inactive_file_pages gauge -node_zoneinfo_nr_inactive_file_pages{node="0",zone="DMA"} 723339 -# HELP node_zoneinfo_nr_isolated_anon_pages Temporary isolated pages from anon lru -# TYPE node_zoneinfo_nr_isolated_anon_pages gauge -node_zoneinfo_nr_isolated_anon_pages{node="0",zone="DMA"} 0 -# HELP node_zoneinfo_nr_isolated_file_pages Temporary isolated pages from file lru -# TYPE node_zoneinfo_nr_isolated_file_pages gauge -node_zoneinfo_nr_isolated_file_pages{node="0",zone="DMA"} 0 -# HELP node_zoneinfo_nr_kernel_stacks Number of kernel stacks -# TYPE node_zoneinfo_nr_kernel_stacks gauge -node_zoneinfo_nr_kernel_stacks{node="0",zone="DMA"} 0 -node_zoneinfo_nr_kernel_stacks{node="0",zone="DMA32"} 0 -node_zoneinfo_nr_kernel_stacks{node="0",zone="Normal"} 18864 -# HELP node_zoneinfo_nr_mapped_pages Number of mapped pages -# TYPE node_zoneinfo_nr_mapped_pages gauge -node_zoneinfo_nr_mapped_pages{node="0",zone="DMA"} 423143 -# HELP node_zoneinfo_nr_shmem_pages Number of shmem pages (included tmpfs/GEM pages) -# TYPE node_zoneinfo_nr_shmem_pages gauge -node_zoneinfo_nr_shmem_pages{node="0",zone="DMA"} 330517 -# HELP node_zoneinfo_nr_slab_reclaimable_pages Number of reclaimable slab pages -# TYPE node_zoneinfo_nr_slab_reclaimable_pages gauge -node_zoneinfo_nr_slab_reclaimable_pages{node="0",zone="DMA"} 121763 -# HELP node_zoneinfo_nr_slab_unreclaimable_pages Number of unreclaimable slab pages -# TYPE node_zoneinfo_nr_slab_unreclaimable_pages gauge -node_zoneinfo_nr_slab_unreclaimable_pages{node="0",zone="DMA"} 56182 -# HELP node_zoneinfo_nr_unevictable_pages Number of unevictable pages -# TYPE node_zoneinfo_nr_unevictable_pages gauge -node_zoneinfo_nr_unevictable_pages{node="0",zone="DMA"} 213111 -# HELP node_zoneinfo_nr_writeback_pages Number of writeback pages -# TYPE node_zoneinfo_nr_writeback_pages gauge -node_zoneinfo_nr_writeback_pages{node="0",zone="DMA"} 0 -# HELP node_zoneinfo_nr_written_total Page writings since bootup -# TYPE node_zoneinfo_nr_written_total counter -node_zoneinfo_nr_written_total{node="0",zone="DMA"} 1.181554e+06 -# HELP node_zoneinfo_numa_foreign_total Was intended here, hit elsewhere -# TYPE node_zoneinfo_numa_foreign_total counter -node_zoneinfo_numa_foreign_total{node="0",zone="DMA"} 0 -node_zoneinfo_numa_foreign_total{node="0",zone="DMA32"} 0 -node_zoneinfo_numa_foreign_total{node="0",zone="Normal"} 0 -# HELP node_zoneinfo_numa_hit_total Allocated in intended node -# TYPE node_zoneinfo_numa_hit_total counter -node_zoneinfo_numa_hit_total{node="0",zone="DMA"} 1 -node_zoneinfo_numa_hit_total{node="0",zone="DMA32"} 13 -node_zoneinfo_numa_hit_total{node="0",zone="Normal"} 6.2836441e+07 -# HELP node_zoneinfo_numa_interleave_total Interleaver preferred this zone -# TYPE node_zoneinfo_numa_interleave_total counter -node_zoneinfo_numa_interleave_total{node="0",zone="DMA"} 1 -node_zoneinfo_numa_interleave_total{node="0",zone="DMA32"} 1 -node_zoneinfo_numa_interleave_total{node="0",zone="Normal"} 23174 -# HELP node_zoneinfo_numa_local_total Allocation from local node -# TYPE node_zoneinfo_numa_local_total counter -node_zoneinfo_numa_local_total{node="0",zone="DMA"} 1 -node_zoneinfo_numa_local_total{node="0",zone="DMA32"} 13 -node_zoneinfo_numa_local_total{node="0",zone="Normal"} 6.2836441e+07 -# HELP node_zoneinfo_numa_miss_total Allocated in non intended node -# TYPE node_zoneinfo_numa_miss_total counter -node_zoneinfo_numa_miss_total{node="0",zone="DMA"} 0 -node_zoneinfo_numa_miss_total{node="0",zone="DMA32"} 0 -node_zoneinfo_numa_miss_total{node="0",zone="Normal"} 0 -# HELP node_zoneinfo_numa_other_total Allocation from other node -# TYPE node_zoneinfo_numa_other_total counter -node_zoneinfo_numa_other_total{node="0",zone="DMA"} 0 -node_zoneinfo_numa_other_total{node="0",zone="DMA32"} 0 -node_zoneinfo_numa_other_total{node="0",zone="Normal"} 0 -# HELP node_zoneinfo_present_pages Physical pages existing within the zone -# TYPE node_zoneinfo_present_pages gauge -node_zoneinfo_present_pages{node="0",zone="DMA"} 3997 -node_zoneinfo_present_pages{node="0",zone="DMA32"} 546847 -node_zoneinfo_present_pages{node="0",zone="Device"} 0 -node_zoneinfo_present_pages{node="0",zone="Movable"} 0 -node_zoneinfo_present_pages{node="0",zone="Normal"} 7.806976e+06 -# HELP node_zoneinfo_protection_0 Protection array 0. field -# TYPE node_zoneinfo_protection_0 gauge -node_zoneinfo_protection_0{node="0",zone="DMA"} 0 -node_zoneinfo_protection_0{node="0",zone="DMA32"} 0 -node_zoneinfo_protection_0{node="0",zone="Device"} 0 -node_zoneinfo_protection_0{node="0",zone="Movable"} 0 -node_zoneinfo_protection_0{node="0",zone="Normal"} 0 -# HELP node_zoneinfo_protection_1 Protection array 1. field -# TYPE node_zoneinfo_protection_1 gauge -node_zoneinfo_protection_1{node="0",zone="DMA"} 2039 -node_zoneinfo_protection_1{node="0",zone="DMA32"} 0 -node_zoneinfo_protection_1{node="0",zone="Device"} 0 -node_zoneinfo_protection_1{node="0",zone="Movable"} 0 -node_zoneinfo_protection_1{node="0",zone="Normal"} 0 -# HELP node_zoneinfo_protection_2 Protection array 2. field -# TYPE node_zoneinfo_protection_2 gauge -node_zoneinfo_protection_2{node="0",zone="DMA"} 31932 -node_zoneinfo_protection_2{node="0",zone="DMA32"} 29893 -node_zoneinfo_protection_2{node="0",zone="Device"} 0 -node_zoneinfo_protection_2{node="0",zone="Movable"} 0 -node_zoneinfo_protection_2{node="0",zone="Normal"} 0 -# HELP node_zoneinfo_protection_3 Protection array 3. field -# TYPE node_zoneinfo_protection_3 gauge -node_zoneinfo_protection_3{node="0",zone="DMA"} 31932 -node_zoneinfo_protection_3{node="0",zone="DMA32"} 29893 -node_zoneinfo_protection_3{node="0",zone="Device"} 0 -node_zoneinfo_protection_3{node="0",zone="Movable"} 0 -node_zoneinfo_protection_3{node="0",zone="Normal"} 0 -# HELP node_zoneinfo_protection_4 Protection array 4. field -# TYPE node_zoneinfo_protection_4 gauge -node_zoneinfo_protection_4{node="0",zone="DMA"} 31932 -node_zoneinfo_protection_4{node="0",zone="DMA32"} 29893 -node_zoneinfo_protection_4{node="0",zone="Device"} 0 -node_zoneinfo_protection_4{node="0",zone="Movable"} 0 -node_zoneinfo_protection_4{node="0",zone="Normal"} 0 -# HELP node_zoneinfo_spanned_pages Total pages spanned by the zone, including holes -# TYPE node_zoneinfo_spanned_pages gauge -node_zoneinfo_spanned_pages{node="0",zone="DMA"} 4095 -node_zoneinfo_spanned_pages{node="0",zone="DMA32"} 1.04448e+06 -node_zoneinfo_spanned_pages{node="0",zone="Device"} 0 -node_zoneinfo_spanned_pages{node="0",zone="Movable"} 0 -node_zoneinfo_spanned_pages{node="0",zone="Normal"} 7.806976e+06 # HELP process_cpu_seconds_total Total user and system CPU time spent in seconds. # TYPE process_cpu_seconds_total counter # HELP process_max_fds Maximum number of open file descriptors. @@ -4789,15 +4187,3 @@ promhttp_metric_handler_requests_in_flight 1 promhttp_metric_handler_requests_total{code="200"} 0 promhttp_metric_handler_requests_total{code="500"} 0 promhttp_metric_handler_requests_total{code="503"} 0 -# HELP testmetric1_1 Metric read from collector/fixtures/textfile/two_metric_files/metrics1.prom -# TYPE testmetric1_1 untyped -testmetric1_1{foo="bar"} 10 -# HELP testmetric1_2 Metric read from collector/fixtures/textfile/two_metric_files/metrics1.prom -# TYPE testmetric1_2 untyped -testmetric1_2{foo="baz"} 20 -# HELP testmetric2_1 Metric read from collector/fixtures/textfile/two_metric_files/metrics2.prom -# TYPE testmetric2_1 untyped -testmetric2_1{foo="bar"} 30 -# HELP testmetric2_2 Metric read from collector/fixtures/textfile/two_metric_files/metrics2.prom -# TYPE testmetric2_2 untyped -testmetric2_2{foo="baz"} 40 diff --git a/collector/fixtures/sys.ttar b/collector/fixtures/sys.ttar index 345cbcd2e3..9282655aff 100644 --- a/collector/fixtures/sys.ttar +++ b/collector/fixtures/sys.ttar @@ -1,4 +1,4 @@ -# Archive created by ttar -C collector/fixtures -c -f collector/fixtures/sys.ttar sys +# Archive created by ttar -C /home/ananth/src/node_exporter/collector/fixtures -c -f /home/ananth/src/node_exporter/collector/fixtures/sys.ttar sys Directory: sys Mode: 755 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -3383,8 +3383,8 @@ Mode: 444 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Path: sys/devices/pci0000:00/0000:00:02.1/0000:01:00.0/config Lines: 2 - -TNULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTE!PNULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTEEOF +�� +TNULLBYTENULLBYTENULLBYTENULLBYTENULLBYTE��NULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTE��!PNULLBYTENULLBYTENULLBYTENULLBYTE�NULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTE�NULLBYTENULLBYTEEOF Mode: 644 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Path: sys/devices/pci0000:00/0000:00:02.1/0000:01:00.0/consistent_dma_mask_bits @@ -5187,7 +5187,7 @@ Mode: 444 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Path: sys/devices/pci0000:00/0000:00:02.1/config Lines: 1 -"4NULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTEPNULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTEEOF +"4NULLBYTENULLBYTENULLBYTENULLBYTE�NULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTE�NULLBYTENULLBYTE������NULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTEPNULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTE�NULLBYTENULLBYTEEOF Mode: 644 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Path: sys/devices/pci0000:00/0000:00:02.1/consistent_dma_mask_bits @@ -7978,8 +7978,8 @@ Mode: 444 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Path: sys/devices/pci0000:40/0000:40:01.3/0000:45:00.0/vpd Lines: 2 -:NULLBYTEIntel (r) Ethernet Network Adapter I350-T4 for OCP NIC 3.0dNULLBYTEV1:Intel (r) Ethernet Network Adapter I350-T4 for OCP NIC 3.0PN -K53978-004SN 6805CAF0CB12V24521RVxEOF +�:NULLBYTEIntel (r) Ethernet Network Adapter I350-T4 for OCP NIC 3.0�dNULLBYTEV1:Intel (r) Ethernet Network Adapter I350-T4 for OCP NIC 3.0PN +K53978-004SN 6805CAF0CB12V24521RV�xEOF Mode: 600 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Directory: sys/devices/pci0000:40/0000:40:01.3/0000:45:00.0/wakeup @@ -9618,6 +9618,1172 @@ Lines: 1 0 Mode: 644 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: sys/fs/bcachefs +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/btree_cache_size +Lines: 1 +2.05G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/btree_write_stats +Lines: 6 + nr size +initial: 3298401 100k +init_next_bset: 4055926 28.2k +cache_reclaim: 14401 720 +journal_reclaim: 66903805 697 +interior: 3035363 1.26k +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/compression_stats +Lines: 6 +typetype compressed uncompressed average extent size +lz4_old 0 0 0 +gzip 0 0 0 +lz4 48.9G 71.2G 62.5k +zstd 226G 603G 115k +incompressible 10.8T 10.8T 90.4k +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/accounting_key_to_wb_slowpath +Lines: 2 +since mount: 39816825 +since filesystem creation: 44105502 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bkey_pack_pos_fail +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_cache_cannibalize +Lines: 2 +since mount: 0 +since filesystem creation: 26587339 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_cache_cannibalize_lock +Lines: 2 +since mount: 3070115 +since filesystem creation: 62061408 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_cache_cannibalize_lock_fail +Lines: 2 +since mount: 2540 +since filesystem creation: 24213 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_cache_cannibalize_unlock +Lines: 2 +since mount: 3070115 +since filesystem creation: 36260384 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_cache_reap +Lines: 2 +since mount: 10555604 +since filesystem creation: 69068459 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_cache_scan +Lines: 2 +since mount: 137595 +since filesystem creation: 427545 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_key_cache_fill +Lines: 2 +since mount: 19814483 +since filesystem creation: 169308144 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_alloc +Lines: 2 +since mount: 3298401 +since filesystem creation: 8665587 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_compact +Lines: 2 +since mount: 2620840 +since filesystem creation: 5554425 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_free +Lines: 2 +since mount: 5926033 +since filesystem creation: 14112667 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_merge +Lines: 2 +since mount: 224564 +since filesystem creation: 559684 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_merge_attempt +Lines: 2 +since mount: 13549164 +since filesystem creation: 15868895 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_read +Lines: 2 +since mount: 10566234 +since filesystem creation: 70225874 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_rewrite +Lines: 2 +since mount: 8227 +since filesystem creation: 1130316 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_set_root +Lines: 2 +since mount: 7779 +since filesystem creation: 77958 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_split +Lines: 2 +since mount: 222385 +since filesystem creation: 710571 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_node_write +Lines: 2 +since mount: 77307915 +since filesystem creation: 147968490 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_path_relock_fail +Lines: 2 +since mount: 2972086 +since filesystem creation: 56213103 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_path_upgrade_fail +Lines: 2 +since mount: 683421 +since filesystem creation: 2103667 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/btree_reserve_get_fail +Lines: 2 +since mount: 71 +since filesystem creation: 11706 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bucket_alloc +Lines: 2 +since mount: 7224514 +since filesystem creation: 37363674 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bucket_alloc_fail +Lines: 2 +since mount: 0 +since filesystem creation: 11156091 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bucket_alloc_from_stripe +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bucket_discard +Lines: 2 +since mount: 5662938 +since filesystem creation: 24751388 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bucket_discard_fast +Lines: 2 +since mount: 3812 +since filesystem creation: 10204 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bucket_discard_fast_worker +Lines: 2 +since mount: 3812 +since filesystem creation: 4012 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bucket_discard_worker +Lines: 2 +since mount: 2584384 +since filesystem creation: 7021501 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/bucket_invalidate +Lines: 2 +since mount: 23630 +since filesystem creation: 3483205 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/cached_ptr_drop +Lines: 2 +since mount: 0 +since filesystem creation: 2.05G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/copygc +Lines: 2 +since mount: 7 +since filesystem creation: 424790 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/copygc_wait_obsolete +Lines: 2 +since mount: 0 +since filesystem creation: 537321 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read +Lines: 2 +since mount: 475G +since filesystem creation: 44.5T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_bounce +Lines: 2 +since mount: 1918904 +since filesystem creation: 250520580 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_fail_and_poison +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_hole +Lines: 2 +since mount: 7.04G +since filesystem creation: 1.69T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_inline +Lines: 2 +since mount: 710M +since filesystem creation: 14.9G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_narrow_crcs +Lines: 2 +since mount: 0 +since filesystem creation: 18529 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_narrow_crcs_fail +Lines: 2 +since mount: 0 +since filesystem creation: 1779 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_nopromote +Lines: 2 +since mount: 8963785 +since filesystem creation: 242468868 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_nopromote_already_promoted +Lines: 2 +since mount: 8890276 +since filesystem creation: 211037452 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_nopromote_congested +Lines: 2 +since mount: 64143 +since filesystem creation: 2913847 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_nopromote_may_not +Lines: 2 +since mount: 0 +since filesystem creation: 20206095 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_nopromote_unwritten +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_promote +Lines: 2 +since mount: 12.8G +since filesystem creation: 391G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_retry +Lines: 2 +since mount: 183 +since filesystem creation: 22404675 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_reuse_race +Lines: 2 +since mount: 25 +since filesystem creation: 201095 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_read_split +Lines: 2 +since mount: 464596 +since filesystem creation: 218590695 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update +Lines: 2 +since mount: 61.8T +since filesystem creation: 21.5P +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_fail +Lines: 2 +since mount: 2.44M +since filesystem creation: 1.06G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_in_flight +Lines: 2 +since mount: 2532017 +since filesystem creation: 3978784 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_key +Lines: 2 +since mount: 61.8T +since filesystem creation: 91.2T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_key_fail +Lines: 2 +since mount: 22.4G +since filesystem creation: 22.7G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_no_io +Lines: 2 +since mount: 80.2G +since filesystem creation: 93.9G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_noop_obsolete +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_pred +Lines: 2 +since mount: 8.64M +since filesystem creation: 45.0T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_read +Lines: 2 +since mount: 6.94T +since filesystem creation: 81.3T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_start_fail_obsolete +Lines: 2 +since mount: 0 +since filesystem creation: 314018822443 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_useless_write_fail +Lines: 2 +since mount: 4.87G +since filesystem creation: 4.94G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_update_write +Lines: 2 +since mount: 6.96T +since filesystem creation: 33.8T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/data_write +Lines: 2 +since mount: 346G +since filesystem creation: 18.9T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/error_throw +Lines: 2 +since mount: 2252331183 +since filesystem creation: 4719910958 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/evacuate_bucket +Lines: 2 +since mount: 112 +since filesystem creation: 6735247 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/fsync +Lines: 2 +since mount: 302707 +since filesystem creation: 1515147 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/gc_gens_end +Lines: 2 +since mount: 0 +since filesystem creation: 3 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/gc_gens_start +Lines: 2 +since mount: 0 +since filesystem creation: 3 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/journal_full +Lines: 2 +since mount: 1459 +since filesystem creation: 94587 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/journal_reclaim_finish +Lines: 2 +since mount: 93364037 +since filesystem creation: 406994135 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/journal_reclaim_start +Lines: 2 +since mount: 93364037 +since filesystem creation: 406994135 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/journal_res_get_blocked +Lines: 2 +since mount: 27723 +since filesystem creation: 74696 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/journal_write +Lines: 2 +since mount: 5081352 +since filesystem creation: 15458801 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/open_bucket_alloc_fail +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_btree +Lines: 2 +since mount: 2.00G +since filesystem creation: 2.01G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_clear_scan +Lines: 2 +since mount: 2 +since filesystem creation: 11 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_data +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_phys +Lines: 2 +since mount: 62.7T +since filesystem creation: 63.6T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_scan_device +Lines: 2 +since mount: 1.03T +since filesystem creation: 76.0T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_scan_fs +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_scan_inum +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_scan_metadata +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_scan_pending +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/reconcile_set_pending +Lines: 2 +since mount: 0 +since filesystem creation: 29.0G +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/sectors_alloc +Lines: 2 +since mount: 8.08T +since filesystem creation: 11.4T +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/stripe_alloc +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/stripe_create +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/stripe_create_fail +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/stripe_delete +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/stripe_reuse +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/stripe_update_bucket +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/stripe_update_extent +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/stripe_update_extent_fail +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/sync_fs +Lines: 2 +since mount: 5732 +since filesystem creation: 42023 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_blocked_journal_reclaim +Lines: 2 +since mount: 13 +since filesystem creation: 78 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_btree_node_reused +Lines: 2 +since mount: 38290 +since filesystem creation: 53354 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_btree_node_split +Lines: 2 +since mount: 19007 +since filesystem creation: 100190 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_fault_inject +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_injected +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_iter_upgrade +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_journal_preres_get +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_journal_reclaim +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_journal_res_get +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_key_cache_key_realloced +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_key_cache_raced +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_key_cache_upgrade +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_mark_replicas +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_mem_realloced +Lines: 2 +since mount: 73 +since filesystem creation: 6111 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_memory_allocation_failure +Lines: 2 +since mount: 0 +since filesystem creation: 27513334 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_relock +Lines: 2 +since mount: 912579 +since filesystem creation: 2806875 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_relock_after_fill +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_relock_key_cache_fill_obsolete +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_relock_next_node +Lines: 2 +since mount: 0 +since filesystem creation: 22087 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_relock_parent_for_fill_obsolete +Lines: 2 +since mount: 0 +since filesystem creation: 2581 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_relock_path +Lines: 2 +since mount: 10664021 +since filesystem creation: 47527280 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_relock_path_intent +Lines: 2 +since mount: 0 +since filesystem creation: 298090 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_split_race +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_too_many_iters +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_traverse +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_upgrade +Lines: 2 +since mount: 200974 +since filesystem creation: 1055154 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_would_deadlock +Lines: 2 +since mount: 135555 +since filesystem creation: 1025983 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_would_deadlock_recursion_limit +Lines: 2 +since mount: 0 +since filesystem creation: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_would_deadlock_write +Lines: 2 +since mount: 2 +since filesystem creation: 2 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_restart_write_buffer_flush +Lines: 2 +since mount: 47215660 +since filesystem creation: 51706894 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/trans_traverse_all +Lines: 2 +since mount: 17672014 +since filesystem creation: 78477746 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/transaction_commit +Lines: 2 +since mount: 1289297181 +since filesystem creation: 4338059022 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/write_buffer_flush +Lines: 2 +since mount: 47596631 +since filesystem creation: 48370568 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/write_buffer_flush_slowpath +Lines: 2 +since mount: 0 +since filesystem creation: 21031 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/write_buffer_flush_sync +Lines: 2 +since mount: 15 +since filesystem creation: 6024402 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/write_buffer_maybe_flush +Lines: 2 +since mount: 47215669 +since filesystem creation: 47412849 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/counters/write_super +Lines: 2 +since mount: 21 +since filesystem creation: 30277 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-10 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-10/bucket_size +Lines: 1 +512k +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-10/durability +Lines: 1 +1 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-10/io_done +Lines: 22 +read: +sb : 86016 +journal : 0 +btree : 5242880 +user :102313054208 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +write: +sb : 645120 +journal : 0 +btree : 16384 +user :252377698304 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-10/io_errors +Lines: 8 +IO errors since filesystem creation + read: 0 + write: 0 + checksum:0 +IO errors since 8 y ago + read: 0 + write: 0 + checksum:0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-10/label +Lines: 1 +disk-10 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-10/nbuckets +Lines: 1 +953880 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-10/state +Lines: 1 +[rw] ro evacuating spare +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-4 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-4/bucket_size +Lines: 1 +2.00M +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-4/durability +Lines: 1 +1 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-4/io_done +Lines: 22 +read: +sb : 86016 +journal : 0 +btree : 2193358848 +user :3770452246528 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +write: +sb : 645120 +journal : 0 +btree : 589824 +user :6258285805568 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-4/io_errors +Lines: 8 +IO errors since filesystem creation + read: 197416 + write: 205 + checksum:0 +IO errors since 8 y ago + read: 197416 + write: 205 + checksum:0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-4/label +Lines: 1 +disk-4 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-4/nbuckets +Lines: 1 +7629824 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-4/state +Lines: 1 +[rw] ro evacuating spare +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-6 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-6/bucket_size +Lines: 1 +2.00M +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-6/durability +Lines: 1 +1 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-6/io_done +Lines: 22 +read: +sb : 86016 +journal : 0 +btree : 8912896 +user :610019098624 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +write: +sb : 677376 +journal : 0 +btree : 0 +user :562070339584 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-6/io_errors +Lines: 8 +IO errors since filesystem creation + read: 18828 + write: 1 + checksum:5 +IO errors since 8 y ago + read: 18828 + write: 1 + checksum:5 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-6/label +Lines: 1 +disk-6 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-6/nbuckets +Lines: 1 +953864 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-6/state +Lines: 1 +[rw] ro evacuating spare +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-7 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-7/bucket_size +Lines: 1 +2.00M +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-7/durability +Lines: 1 +1 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-7/io_done +Lines: 22 +read: +sb : 86016 +journal : 0 +btree :2767671263232 +user :553932742656 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +write: +sb : 645120 +journal :2432028966912 +btree :782753624064 +user :383826411520 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-7/io_errors +Lines: 8 +IO errors since filesystem creation + read: 0 + write: 0 + checksum:18 +IO errors since 8 y ago + read: 0 + write: 0 + checksum:18 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-7/label +Lines: 1 +disk-7 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-7/nbuckets +Lines: 1 +1907723 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-7/state +Lines: 1 +[rw] ro evacuating spare +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-8 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-8/bucket_size +Lines: 1 +2.00M +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-8/durability +Lines: 1 +1 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-8/io_done +Lines: 22 +read: +sb : 86016 +journal : 0 +btree : 0 +user :3115020546048 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +write: +sb : 645120 +journal : 0 +btree : 0 +user :6072510210048 +cached : 0 +parity : 0 +stripe : 0 +need_gc_gens: 0 +need_discard: 0 +unstriped : 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-8/io_errors +Lines: 8 +IO errors since filesystem creation + read: 0 + write: 0 + checksum:0 +IO errors since 8 y ago + read: 0 + write: 0 + checksum:0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-8/label +Lines: 1 +disk-8 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-8/nbuckets +Lines: 1 +2384637 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/dev-8/state +Lines: 1 +[rw] ro evacuating spare +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: sys/fs/bcachefs/deadbeef-1234-5678-9012-abcdefabcdef/errors +Lines: 18 +btree_node_data_missing 2 1753593586 +bset_bad_csum 2 1767112063 +btree_node_topology_bad_max_key 2 1767080711 +alloc_key_to_missing_lru_entry 4517 1771754289 +alloc_key_data_type_wrong 4415 1771753607 +alloc_key_dirty_sectors_wrong 4538 1771753607 +alloc_key_cached_sectors_wrong 4537 1771753607 +backpointer_to_missing_ptr 45480 1771754172 +lru_entry_bad 4537 1771753700 +ptr_to_missing_backpointer 44112 1771754284 +accounting_mismatch 6 1771753608 +subvol_missing 194 1761076737 +reconcile_work_incorrectly_set 113913 1771755828 +vfs_bad_inode_rm 121 1758960176 +validate_error_in_commit 2 1771750773 +extent_io_opts_not_set 11299659571772285102 +extent_ptrs_all_invalid 2 1771750773 +extent_ptrs_all_invalid_but_cached 44612 1771753458 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Directory: sys/fs/btrfs Mode: 755 # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/end-to-end-test.sh b/end-to-end-test.sh index de490bfff8..bd9679560b 100755 --- a/end-to-end-test.sh +++ b/end-to-end-test.sh @@ -37,6 +37,7 @@ supported_collectors() { enabled_collectors=$(cat << COLLECTORS arp bcache + bcachefs bonding btrfs buddyinfo diff --git a/go.mod b/go.mod index 2d7db779ed..d0913a9dcb 100644 --- a/go.mod +++ b/go.mod @@ -61,3 +61,5 @@ require ( golang.org/x/time v0.14.0 // indirect google.golang.org/protobuf v1.36.11 // indirect ) + +replace github.com/prometheus/procfs => github.com/ananthb/procfs v0.0.0-20260228145203-01bd82241508 diff --git a/go.sum b/go.sum index 7fb5e88b7d..898fa1213d 100644 --- a/go.sum +++ b/go.sum @@ -4,6 +4,8 @@ github.com/alecthomas/kingpin/v2 v2.4.0 h1:f48lwail6p8zpO1bC4TxtqACaGqHYA22qkHjH github.com/alecthomas/kingpin/v2 v2.4.0/go.mod h1:0gyi0zQnjuFk8xrkNKamJoyUo382HRL7ATRpFZCw6tE= github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b h1:mimo19zliBX/vSQ6PWWSL9lK8qwHozUj03+zLoEB8O0= github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b/go.mod h1:fvzegU4vN3H1qMT+8wDmzjAcDONcgo2/SZ/TyfdUOFs= +github.com/ananthb/procfs v0.0.0-20260228145203-01bd82241508 h1:MLg0Qg+z2JHOW+45Tg/q4VqDfLYeEQuLFv2z8YIIQrA= +github.com/ananthb/procfs v0.0.0-20260228145203-01bd82241508/go.mod h1:o9EMBZGRyvDrSPH1RqdxhojkuXstoe4UlK79eF5TGGo= github.com/beevik/ntp v1.5.0 h1:y+uj/JjNwlY2JahivxYvtmv4ehfi3h74fAuABB9ZSM4= github.com/beevik/ntp v1.5.0/go.mod h1:mJEhBrwT76w9D+IfOEGvuzyuudiW9E52U2BaTrMOYow= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= @@ -88,8 +90,6 @@ github.com/prometheus/common v0.67.5 h1:pIgK94WWlQt1WLwAC5j2ynLaBRDiinoAb86HZHTU github.com/prometheus/common v0.67.5/go.mod h1:SjE/0MzDEEAyrdr5Gqc6G+sXI67maCxzaT3A2+HqjUw= github.com/prometheus/exporter-toolkit v0.15.1 h1:XrGGr/qWl8Gd+pqJqTkNLww9eG8vR/CoRk0FubOKfLE= github.com/prometheus/exporter-toolkit v0.15.1/go.mod h1:P/NR9qFRGbCFgpklyhix9F6v6fFr/VQB/CVsrMDGKo4= -github.com/prometheus/procfs v0.20.0 h1:AA7aCvjxwAquZAlonN7888f2u4IN8WVeFgBi4k82M4Q= -github.com/prometheus/procfs v0.20.0/go.mod h1:o9EMBZGRyvDrSPH1RqdxhojkuXstoe4UlK79eF5TGGo= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= github.com/safchain/ethtool v0.7.0 h1:rlJzfDetsVvT61uz8x1YIcFn12akMfuPulHtZjtb7Is=