aboutsummaryrefslogtreecommitdiff
path: root/collector
diff options
context:
space:
mode:
authorSilke Hofstra <silkeh@users.noreply.github.com>2020-02-19 15:48:51 +0100
committerGitHub <noreply@github.com>2020-02-19 15:48:51 +0100
commit8faa843fc42260cabb749cc9eb8886c191f28f7c (patch)
tree175a091379d2bb4b419a5b917647abfb40a00094 /collector
parentca1ac435eae5182b2795e14caa80713a7440687b (diff)
downloadprometheus_node_collector-8faa843fc42260cabb749cc9eb8886c191f28f7c.tar.bz2
prometheus_node_collector-8faa843fc42260cabb749cc9eb8886c191f28f7c.tar.xz
prometheus_node_collector-8faa843fc42260cabb749cc9eb8886c191f28f7c.zip
Add Btrfs collector (#1512)
* Add procfs/btrfs to vendor folder * Add Btrfs collector Resolves #1100 Signed-off-by: Silke Hofstra <silke@slxh.eu>
Diffstat (limited to 'collector')
-rw-r--r--collector/btrfs_linux.go189
-rw-r--r--collector/btrfs_linux_test.go118
-rw-r--r--collector/fixtures/e2e-output.txt49
-rw-r--r--collector/fixtures/sys.ttar595
4 files changed, 951 insertions, 0 deletions
diff --git a/collector/btrfs_linux.go b/collector/btrfs_linux.go
new file mode 100644
index 0000000..2336e65
--- /dev/null
+++ b/collector/btrfs_linux.go
@@ -0,0 +1,189 @@
1// Copyright 2019 The Prometheus Authors
2// Licensed under the Apache License, Version 2.0 (the "License");
3// you may not use this file except in compliance with the License.
4// You may obtain a copy of the License at
5//
6// http://www.apache.org/licenses/LICENSE-2.0
7//
8// Unless required by applicable law or agreed to in writing, software
9// distributed under the License is distributed on an "AS IS" BASIS,
10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11// See the License for the specific language governing permissions and
12// limitations under the License.
13
14// +build !nobtrfs
15
16package collector
17
18import (
19 "fmt"
20
21 "github.com/go-kit/kit/log"
22 "github.com/prometheus/client_golang/prometheus"
23 "github.com/prometheus/procfs/btrfs"
24)
25
26// A btrfsCollector is a Collector which gathers metrics from Btrfs filesystems.
27type btrfsCollector struct {
28 fs btrfs.FS
29 logger log.Logger
30}
31
32func init() {
33 registerCollector("btrfs", defaultEnabled, NewBtrfsCollector)
34}
35
36// NewBtrfsCollector returns a new Collector exposing Btrfs statistics.
37func NewBtrfsCollector(logger log.Logger) (Collector, error) {
38 fs, err := btrfs.NewFS(*sysPath)
39 if err != nil {
40 return nil, fmt.Errorf("failed to open sysfs: %v", err)
41 }
42
43 return &btrfsCollector{
44 fs: fs,
45 logger: logger,
46 }, nil
47}
48
49// Update retrieves and exports Btrfs statistics.
50// It implements Collector.
51func (c *btrfsCollector) Update(ch chan<- prometheus.Metric) error {
52 stats, err := c.fs.Stats()
53 if err != nil {
54 return fmt.Errorf("failed to retrieve Btrfs stats: %v", err)
55 }
56
57 for _, s := range stats {
58 c.updateBtrfsStats(ch, s)
59 }
60
61 return nil
62}
63
64// btrfsMetric represents a single Btrfs metric that is converted into a Prometheus Metric.
65type btrfsMetric struct {
66 name string
67 desc string
68 value float64
69 extraLabel []string
70 extraLabelValue []string
71}
72
73// updateBtrfsStats collects statistics for one bcache ID.
74func (c *btrfsCollector) updateBtrfsStats(ch chan<- prometheus.Metric, s *btrfs.Stats) {
75 const subsystem = "btrfs"
76
77 // Basic information about the filesystem.
78 devLabels := []string{"uuid"}
79
80 // Retrieve the metrics.
81 metrics := c.getMetrics(s)
82
83 // Convert all gathered metrics to Prometheus Metrics and add to channel.
84 for _, m := range metrics {
85 labels := append(devLabels, m.extraLabel...)
86
87 desc := prometheus.NewDesc(
88 prometheus.BuildFQName(namespace, subsystem, m.name),
89 m.desc,
90 labels,
91 nil,
92 )
93
94 labelValues := []string{s.UUID}
95 if len(m.extraLabelValue) > 0 {
96 labelValues = append(labelValues, m.extraLabelValue...)
97 }
98
99 ch <- prometheus.MustNewConstMetric(
100 desc,
101 prometheus.GaugeValue,
102 m.value,
103 labelValues...,
104 )
105 }
106}
107
108// getMetrics returns metrics for the given Btrfs statistics.
109func (c *btrfsCollector) getMetrics(s *btrfs.Stats) []btrfsMetric {
110 metrics := []btrfsMetric{
111 {
112 name: "info",
113 desc: "Filesystem information",
114 value: 1,
115 extraLabel: []string{"label"},
116 extraLabelValue: []string{s.Label},
117 },
118 {
119 name: "global_rsv_size_bytes",
120 desc: "Size of global reserve.",
121 value: float64(s.Allocation.GlobalRsvSize),
122 },
123 }
124
125 // Information about devices.
126 for n, dev := range s.Devices {
127 metrics = append(metrics, btrfsMetric{
128 name: "device_size_bytes",
129 desc: "Size of a device that is part of the filesystem.",
130 value: float64(dev.Size),
131 extraLabel: []string{"device"},
132 extraLabelValue: []string{n},
133 })
134 }
135
136 // Information about data, metadata and system data.
137 metrics = append(metrics, c.getAllocationStats("data", s.Allocation.Data)...)
138 metrics = append(metrics, c.getAllocationStats("metadata", s.Allocation.Metadata)...)
139 metrics = append(metrics, c.getAllocationStats("system", s.Allocation.System)...)
140
141 return metrics
142}
143
144// getAllocationStats returns allocation metrics for the given Btrfs Allocation statistics.
145func (c *btrfsCollector) getAllocationStats(a string, s *btrfs.AllocationStats) []btrfsMetric {
146 metrics := []btrfsMetric{
147 {
148 name: "reserved_bytes",
149 desc: "Amount of space reserved for a data type",
150 value: float64(s.ReservedBytes),
151 extraLabel: []string{"block_group_type"},
152 extraLabelValue: []string{a},
153 },
154 }
155
156 // Add all layout statistics.
157 for layout, stats := range s.Layouts {
158 metrics = append(metrics, c.getLayoutStats(a, layout, stats)...)
159 }
160
161 return metrics
162}
163
164// getLayoutStats returns metrics for a data layout.
165func (c *btrfsCollector) getLayoutStats(a, l string, s *btrfs.LayoutUsage) []btrfsMetric {
166 return []btrfsMetric{
167 {
168 name: "used_bytes",
169 desc: "Amount of used space by a layout/data type",
170 value: float64(s.UsedBytes),
171 extraLabel: []string{"block_group_type", "mode"},
172 extraLabelValue: []string{a, l},
173 },
174 {
175 name: "size_bytes",
176 desc: "Amount of space allocated for a layout/data type",
177 value: float64(s.TotalBytes),
178 extraLabel: []string{"block_group_type", "mode"},
179 extraLabelValue: []string{a, l},
180 },
181 {
182 name: "allocation_ratio",
183 desc: "Data allocation ratio for a layout/data type",
184 value: s.Ratio,
185 extraLabel: []string{"block_group_type", "mode"},
186 extraLabelValue: []string{a, l},
187 },
188 }
189}
diff --git a/collector/btrfs_linux_test.go b/collector/btrfs_linux_test.go
new file mode 100644
index 0000000..9db7419
--- /dev/null
+++ b/collector/btrfs_linux_test.go
@@ -0,0 +1,118 @@
1// Copyright 2019 The Prometheus Authors
2// Licensed under the Apache License, Version 2.0 (the "License");
3// you may not use this file except in compliance with the License.
4// You may obtain a copy of the License at
5//
6// http://www.apache.org/licenses/LICENSE-2.0
7//
8// Unless required by applicable law or agreed to in writing, software
9// distributed under the License is distributed on an "AS IS" BASIS,
10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11// See the License for the specific language governing permissions and
12// limitations under the License.
13
14// +build !nobtrfs
15
16package collector
17
18import (
19 "strings"
20 "testing"
21
22 "github.com/prometheus/procfs/btrfs"
23)
24
25var expectedBtrfsMetrics = [][]btrfsMetric{
26 {
27 {name: "info", value: 1, extraLabel: []string{"label"}, extraLabelValue: []string{"fixture"}},
28 {name: "global_rsv_size_bytes", value: 1.6777216e+07},
29 {name: "device_size_bytes", value: 1.073741824e+10, extraLabel: []string{"device"}, extraLabelValue: []string{"loop25"}},
30 {name: "device_size_bytes", value: 1.073741824e+10, extraLabel: []string{"device"}, extraLabelValue: []string{"loop26"}},
31 {name: "reserved_bytes", value: 0, extraLabel: []string{"block_group_type"}, extraLabelValue: []string{"data"}},
32 {name: "used_bytes", value: 8.08189952e+08, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"data", "raid0"}},
33 {name: "size_bytes", value: 2.147483648e+09, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"data", "raid0"}},
34 {name: "allocation_ratio", value: 1, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"data", "raid0"}},
35 {name: "reserved_bytes", value: 0, extraLabel: []string{"block_group_type"}, extraLabelValue: []string{"metadata"}},
36 {name: "used_bytes", value: 933888, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"metadata", "raid1"}},
37 {name: "size_bytes", value: 1.073741824e+09, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"metadata", "raid1"}},
38 {name: "allocation_ratio", value: 2, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"metadata", "raid1"}},
39 {name: "reserved_bytes", value: 0, extraLabel: []string{"block_group_type"}, extraLabelValue: []string{"system"}},
40 {name: "used_bytes", value: 16384, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"system", "raid1"}},
41 {name: "size_bytes", value: 8.388608e+06, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"system", "raid1"}},
42 {name: "allocation_ratio", value: 2, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"system", "raid1"}},
43 },
44 {
45 {name: "info", value: 1, extraLabel: []string{"label"}, extraLabelValue: []string{""}},
46 {name: "global_rsv_size_bytes", value: 1.6777216e+07},
47 {name: "device_size_bytes", value: 1.073741824e+10, extraLabel: []string{"device"}, extraLabelValue: []string{"loop22"}},
48 {name: "device_size_bytes", value: 1.073741824e+10, extraLabel: []string{"device"}, extraLabelValue: []string{"loop23"}},
49 {name: "device_size_bytes", value: 1.073741824e+10, extraLabel: []string{"device"}, extraLabelValue: []string{"loop24"}},
50 {name: "device_size_bytes", value: 1.073741824e+10, extraLabel: []string{"device"}, extraLabelValue: []string{"loop25"}},
51 {name: "reserved_bytes", value: 0, extraLabel: []string{"block_group_type"}, extraLabelValue: []string{"data"}},
52 {name: "used_bytes", value: 0, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"data", "raid5"}},
53 {name: "size_bytes", value: 6.44087808e+08, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"data", "raid5"}},
54 {name: "allocation_ratio", value: 1.3333333333333333, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"data", "raid5"}},
55 {name: "reserved_bytes", value: 0, extraLabel: []string{"block_group_type"}, extraLabelValue: []string{"metadata"}},
56 {name: "used_bytes", value: 114688, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"metadata", "raid6"}},
57 {name: "size_bytes", value: 4.29391872e+08, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"metadata", "raid6"}},
58 {name: "allocation_ratio", value: 2, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"metadata", "raid6"}},
59 {name: "reserved_bytes", value: 0, extraLabel: []string{"block_group_type"}, extraLabelValue: []string{"system"}},
60 {name: "used_bytes", value: 16384, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"system", "raid6"}},
61 {name: "size_bytes", value: 1.6777216e+07, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"system", "raid6"}},
62 {name: "allocation_ratio", value: 2, extraLabel: []string{"block_group_type", "mode"}, extraLabelValue: []string{"system", "raid6"}},
63 },
64}
65
66func checkMetric(exp, got *btrfsMetric) bool {
67 if exp.name != got.name ||
68 exp.value != got.value ||
69 len(exp.extraLabel) != len(got.extraLabel) ||
70 len(exp.extraLabelValue) != len(got.extraLabelValue) {
71 return false
72 }
73
74 for i := range exp.extraLabel {
75 if exp.extraLabel[i] != got.extraLabel[i] {
76 return false
77 }
78
79 // Devices (loopXX) can appear in random order, so just check the first 4 characters.
80 if strings.HasPrefix(got.extraLabelValue[i], "loop") &&
81 exp.extraLabelValue[i][:4] == got.extraLabelValue[i][:4] {
82 continue
83 }
84
85 if exp.extraLabelValue[i] != got.extraLabelValue[i] {
86 return false
87 }
88 }
89
90 return true
91}
92
93func TestBtrfs(t *testing.T) {
94 fs, _ := btrfs.NewFS("fixtures/sys")
95 collector := &btrfsCollector{fs: fs}
96
97 stats, err := collector.fs.Stats()
98 if err != nil {
99 t.Fatalf("Failed to retrieve Btrfs stats: %v", err)
100 }
101 if len(stats) != len(expectedBtrfsMetrics) {
102 t.Fatalf("Unexpected number of Btrfs stats: expected %v, got %v", len(expectedBtrfsMetrics), len(stats))
103 }
104
105 for i, s := range stats {
106 metrics := collector.getMetrics(s)
107 if len(metrics) != len(expectedBtrfsMetrics[i]) {
108 t.Fatalf("Unexpected number of Btrfs metrics: expected %v, got %v", len(expectedBtrfsMetrics[i]), len(metrics))
109 }
110
111 for j, m := range metrics {
112 exp := expectedBtrfsMetrics[i][j]
113 if !checkMetric(&exp, &m) {
114 t.Errorf("Incorrect btrfs metric: expected %#v, got: %#v", exp, m)
115 }
116 }
117 }
118}
diff --git a/collector/fixtures/e2e-output.txt b/collector/fixtures/e2e-output.txt
index e34bf56..ddc048f 100644
--- a/collector/fixtures/e2e-output.txt
+++ b/collector/fixtures/e2e-output.txt
@@ -140,6 +140,54 @@ node_bonding_slaves{master="int"} 2
140# HELP node_boot_time_seconds Node boot time, in unixtime. 140# HELP node_boot_time_seconds Node boot time, in unixtime.
141# TYPE node_boot_time_seconds gauge 141# TYPE node_boot_time_seconds gauge
142node_boot_time_seconds 1.418183276e+09 142node_boot_time_seconds 1.418183276e+09
143# HELP node_btrfs_allocation_ratio Data allocation ratio for a layout/data type
144# TYPE node_btrfs_allocation_ratio gauge
145node_btrfs_allocation_ratio{block_group_type="data",mode="raid0",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 1
146node_btrfs_allocation_ratio{block_group_type="data",mode="raid5",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 1.3333333333333333
147node_btrfs_allocation_ratio{block_group_type="metadata",mode="raid1",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 2
148node_btrfs_allocation_ratio{block_group_type="metadata",mode="raid6",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 2
149node_btrfs_allocation_ratio{block_group_type="system",mode="raid1",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 2
150node_btrfs_allocation_ratio{block_group_type="system",mode="raid6",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 2
151# HELP node_btrfs_device_size_bytes Size of a device that is part of the filesystem.
152# TYPE node_btrfs_device_size_bytes gauge
153node_btrfs_device_size_bytes{device="loop22",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 1.073741824e+10
154node_btrfs_device_size_bytes{device="loop23",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 1.073741824e+10
155node_btrfs_device_size_bytes{device="loop24",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 1.073741824e+10
156node_btrfs_device_size_bytes{device="loop25",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 1.073741824e+10
157node_btrfs_device_size_bytes{device="loop25",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 1.073741824e+10
158node_btrfs_device_size_bytes{device="loop26",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 1.073741824e+10
159# HELP node_btrfs_global_rsv_size_bytes Size of global reserve.
160# TYPE node_btrfs_global_rsv_size_bytes gauge
161node_btrfs_global_rsv_size_bytes{uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 1.6777216e+07
162node_btrfs_global_rsv_size_bytes{uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 1.6777216e+07
163# HELP node_btrfs_info Filesystem information
164# TYPE node_btrfs_info gauge
165node_btrfs_info{label="",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 1
166node_btrfs_info{label="fixture",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 1
167# HELP node_btrfs_reserved_bytes Amount of space reserved for a data type
168# TYPE node_btrfs_reserved_bytes gauge
169node_btrfs_reserved_bytes{block_group_type="data",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 0
170node_btrfs_reserved_bytes{block_group_type="data",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 0
171node_btrfs_reserved_bytes{block_group_type="metadata",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 0
172node_btrfs_reserved_bytes{block_group_type="metadata",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 0
173node_btrfs_reserved_bytes{block_group_type="system",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 0
174node_btrfs_reserved_bytes{block_group_type="system",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 0
175# HELP node_btrfs_size_bytes Amount of space allocated for a layout/data type
176# TYPE node_btrfs_size_bytes gauge
177node_btrfs_size_bytes{block_group_type="data",mode="raid0",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 2.147483648e+09
178node_btrfs_size_bytes{block_group_type="data",mode="raid5",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 6.44087808e+08
179node_btrfs_size_bytes{block_group_type="metadata",mode="raid1",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 1.073741824e+09
180node_btrfs_size_bytes{block_group_type="metadata",mode="raid6",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 4.29391872e+08
181node_btrfs_size_bytes{block_group_type="system",mode="raid1",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 8.388608e+06
182node_btrfs_size_bytes{block_group_type="system",mode="raid6",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 1.6777216e+07
183# HELP node_btrfs_used_bytes Amount of used space by a layout/data type
184# TYPE node_btrfs_used_bytes gauge
185node_btrfs_used_bytes{block_group_type="data",mode="raid0",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 8.08189952e+08
186node_btrfs_used_bytes{block_group_type="data",mode="raid5",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 0
187node_btrfs_used_bytes{block_group_type="metadata",mode="raid1",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 933888
188node_btrfs_used_bytes{block_group_type="metadata",mode="raid6",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 114688
189node_btrfs_used_bytes{block_group_type="system",mode="raid1",uuid="0abb23a9-579b-43e6-ad30-227ef47fcb9d"} 16384
190node_btrfs_used_bytes{block_group_type="system",mode="raid6",uuid="7f07c59f-6136-449c-ab87-e1cf2328731b"} 16384
143# HELP node_buddyinfo_blocks Count of free blocks according to size. 191# HELP node_buddyinfo_blocks Count of free blocks according to size.
144# TYPE node_buddyinfo_blocks gauge 192# TYPE node_buddyinfo_blocks gauge
145node_buddyinfo_blocks{node="0",size="0",zone="DMA"} 1 193node_buddyinfo_blocks{node="0",size="0",zone="DMA"} 1
@@ -2560,6 +2608,7 @@ node_schedstat_waiting_seconds_total{cpu="1"} 364107.263788241
2560node_scrape_collector_success{collector="arp"} 1 2608node_scrape_collector_success{collector="arp"} 1
2561node_scrape_collector_success{collector="bcache"} 1 2609node_scrape_collector_success{collector="bcache"} 1
2562node_scrape_collector_success{collector="bonding"} 1 2610node_scrape_collector_success{collector="bonding"} 1
2611node_scrape_collector_success{collector="btrfs"} 1
2563node_scrape_collector_success{collector="buddyinfo"} 1 2612node_scrape_collector_success{collector="buddyinfo"} 1
2564node_scrape_collector_success{collector="conntrack"} 1 2613node_scrape_collector_success{collector="conntrack"} 1
2565node_scrape_collector_success{collector="cpu"} 1 2614node_scrape_collector_success{collector="cpu"} 1
diff --git a/collector/fixtures/sys.ttar b/collector/fixtures/sys.ttar
index 47610fe..a4550a5 100644
--- a/collector/fixtures/sys.ttar
+++ b/collector/fixtures/sys.ttar
@@ -3233,6 +3233,601 @@ Lines: 1
32330 32330
3234Mode: 644 3234Mode: 644
3235# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 3235# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3236Directory: sys/fs/btrfs
3237Mode: 755
3238# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3239Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d
3240Mode: 755
3241# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3242Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation
3243Mode: 755
3244# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3245Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data
3246Mode: 755
3247# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3248Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_may_use
3249Lines: 1
32500
3251Mode: 444
3252# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3253Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_pinned
3254Lines: 1
32550
3256Mode: 444
3257# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3258Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_readonly
3259Lines: 1
32600
3261Mode: 444
3262# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3263Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_reserved
3264Lines: 1
32650
3266Mode: 444
3267# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3268Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_used
3269Lines: 1
3270808189952
3271Mode: 444
3272# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3273Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/disk_total
3274Lines: 1
32752147483648
3276Mode: 444
3277# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3278Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/disk_used
3279Lines: 1
3280808189952
3281Mode: 444
3282# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3283Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/flags
3284Lines: 1
32851
3286Mode: 444
3287# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3288Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/raid0
3289Mode: 755
3290# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3291Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/raid0/total_bytes
3292Lines: 1
32932147483648
3294Mode: 444
3295# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3296Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/raid0/used_bytes
3297Lines: 1
3298808189952
3299Mode: 444
3300# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3301Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/total_bytes
3302Lines: 1
33032147483648
3304Mode: 444
3305# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3306Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/total_bytes_pinned
3307Lines: 1
33080
3309Mode: 444
3310# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3311Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/global_rsv_reserved
3312Lines: 1
331316777216
3314Mode: 444
3315# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3316Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/global_rsv_size
3317Lines: 1
331816777216
3319Mode: 444
3320# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3321Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata
3322Mode: 755
3323# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3324Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_may_use
3325Lines: 1
332616777216
3327Mode: 444
3328# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3329Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_pinned
3330Lines: 1
33310
3332Mode: 444
3333# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3334Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_readonly
3335Lines: 1
3336131072
3337Mode: 444
3338# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3339Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_reserved
3340Lines: 1
33410
3342Mode: 444
3343# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3344Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_used
3345Lines: 1
3346933888
3347Mode: 444
3348# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3349Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/disk_total
3350Lines: 1
33512147483648
3352Mode: 444
3353# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3354Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/disk_used
3355Lines: 1
33561867776
3357Mode: 444
3358# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3359Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/flags
3360Lines: 1
33614
3362Mode: 444
3363# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3364Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/raid1
3365Mode: 755
3366# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3367Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/raid1/total_bytes
3368Lines: 1
33691073741824
3370Mode: 444
3371# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3372Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/raid1/used_bytes
3373Lines: 1
3374933888
3375Mode: 444
3376# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3377Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/total_bytes
3378Lines: 1
33791073741824
3380Mode: 444
3381# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3382Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/total_bytes_pinned
3383Lines: 1
33840
3385Mode: 444
3386# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3387Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system
3388Mode: 755
3389# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3390Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_may_use
3391Lines: 1
33920
3393Mode: 444
3394# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3395Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_pinned
3396Lines: 1
33970
3398Mode: 444
3399# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3400Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_readonly
3401Lines: 1
34020
3403Mode: 444
3404# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3405Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_reserved
3406Lines: 1
34070
3408Mode: 444
3409# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3410Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_used
3411Lines: 1
341216384
3413Mode: 444
3414# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3415Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/disk_total
3416Lines: 1
341716777216
3418Mode: 444
3419# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3420Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/disk_used
3421Lines: 1
342232768
3423Mode: 444
3424# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3425Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/flags
3426Lines: 1
34272
3428Mode: 444
3429# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3430Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/raid1
3431Mode: 755
3432# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3433Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/raid1/total_bytes
3434Lines: 1
34358388608
3436Mode: 444
3437# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3438Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/raid1/used_bytes
3439Lines: 1
344016384
3441Mode: 444
3442# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3443Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/total_bytes
3444Lines: 1
34458388608
3446Mode: 444
3447# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3448Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/total_bytes_pinned
3449Lines: 1
34500
3451Mode: 444
3452# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3453Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/clone_alignment
3454Lines: 1
34554096
3456Mode: 444
3457# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3458Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices
3459Mode: 755
3460# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3461Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop25
3462Mode: 755
3463# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3464Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop25/size
3465Lines: 1
346620971520
3467Mode: 444
3468# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3469Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop26
3470Mode: 755
3471# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3472Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop26/size
3473Lines: 1
347420971520
3475Mode: 444
3476# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3477Directory: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features
3478Mode: 755
3479# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3480Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/big_metadata
3481Lines: 1
34821
3483Mode: 444
3484# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3485Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/extended_iref
3486Lines: 1
34871
3488Mode: 644
3489# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3490Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/mixed_backref
3491Lines: 1
34921
3493Mode: 444
3494# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3495Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/skinny_metadata
3496Lines: 1
34971
3498Mode: 444
3499# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3500Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/label
3501Lines: 1
3502fixture
3503Mode: 644
3504# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3505Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/metadata_uuid
3506Lines: 1
35070abb23a9-579b-43e6-ad30-227ef47fcb9d
3508Mode: 444
3509# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3510Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/nodesize
3511Lines: 1
351216384
3513Mode: 444
3514# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3515Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/quota_override
3516Lines: 1
35170
3518Mode: 644
3519# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3520Path: sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/sectorsize
3521Lines: 1
35224096
3523Mode: 444
3524# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3525Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b
3526Mode: 755
3527# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3528Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation
3529Mode: 755
3530# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3531Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data
3532Mode: 755
3533# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3534Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_may_use
3535Lines: 1
35360
3537Mode: 444
3538# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3539Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_pinned
3540Lines: 1
35410
3542Mode: 444
3543# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3544Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_readonly
3545Lines: 1
35460
3547Mode: 444
3548# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3549Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_reserved
3550Lines: 1
35510
3552Mode: 444
3553# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3554Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_used
3555Lines: 1
35560
3557Mode: 444
3558# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3559Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/disk_total
3560Lines: 1
3561644087808
3562Mode: 444
3563# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3564Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/disk_used
3565Lines: 1
35660
3567Mode: 444
3568# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3569Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/flags
3570Lines: 1
35711
3572Mode: 444
3573# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3574Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/raid5
3575Mode: 755
3576# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3577Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/raid5/total_bytes
3578Lines: 1
3579644087808
3580Mode: 444
3581# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3582Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/raid5/used_bytes
3583Lines: 1
35840
3585Mode: 444
3586# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3587Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/total_bytes
3588Lines: 1
3589644087808
3590Mode: 444
3591# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3592Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/total_bytes_pinned
3593Lines: 1
35940
3595Mode: 444
3596# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3597Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/global_rsv_reserved
3598Lines: 1
359916777216
3600Mode: 444
3601# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3602Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/global_rsv_size
3603Lines: 1
360416777216
3605Mode: 444
3606# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3607Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata
3608Mode: 755
3609# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3610Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_may_use
3611Lines: 1
361216777216
3613Mode: 444
3614# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3615Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_pinned
3616Lines: 1
36170
3618Mode: 444
3619# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3620Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_readonly
3621Lines: 1
3622262144
3623Mode: 444
3624# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3625Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_reserved
3626Lines: 1
36270
3628Mode: 444
3629# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3630Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_used
3631Lines: 1
3632114688
3633Mode: 444
3634# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3635Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/disk_total
3636Lines: 1
3637429391872
3638Mode: 444
3639# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3640Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/disk_used
3641Lines: 1
3642114688
3643Mode: 444
3644# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3645Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/flags
3646Lines: 1
36474
3648Mode: 444
3649# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3650Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/raid6
3651Mode: 755
3652# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3653Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/raid6/total_bytes
3654Lines: 1
3655429391872
3656Mode: 444
3657# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3658Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/raid6/used_bytes
3659Lines: 1
3660114688
3661Mode: 444
3662# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3663Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/total_bytes
3664Lines: 1
3665429391872
3666Mode: 444
3667# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3668Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/total_bytes_pinned
3669Lines: 1
36700
3671Mode: 444
3672# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3673Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system
3674Mode: 755
3675# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3676Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_may_use
3677Lines: 1
36780
3679Mode: 444
3680# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3681Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_pinned
3682Lines: 1
36830
3684Mode: 444
3685# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3686Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_readonly
3687Lines: 1
36880
3689Mode: 444
3690# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3691Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_reserved
3692Lines: 1
36930
3694Mode: 444
3695# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3696Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_used
3697Lines: 1
369816384
3699Mode: 444
3700# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3701Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/disk_total
3702Lines: 1
370316777216
3704Mode: 444
3705# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3706Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/disk_used
3707Lines: 1
370816384
3709Mode: 444
3710# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3711Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/flags
3712Lines: 1
37132
3714Mode: 444
3715# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3716Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/raid6
3717Mode: 755
3718# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3719Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/raid6/total_bytes
3720Lines: 1
372116777216
3722Mode: 444
3723# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3724Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/raid6/used_bytes
3725Lines: 1
372616384
3727Mode: 444
3728# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3729Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/total_bytes
3730Lines: 1
373116777216
3732Mode: 444
3733# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3734Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/total_bytes_pinned
3735Lines: 1
37360
3737Mode: 444
3738# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3739Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/clone_alignment
3740Lines: 1
37414096
3742Mode: 444
3743# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3744Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices
3745Mode: 755
3746# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3747Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop22
3748Mode: 755
3749# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3750Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop22/size
3751Lines: 1
375220971520
3753Mode: 644
3754# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3755Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop23
3756Mode: 755
3757# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3758Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop23/size
3759Lines: 1
376020971520
3761Mode: 644
3762# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3763Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop24
3764Mode: 755
3765# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3766Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop24/size
3767Lines: 1
376820971520
3769Mode: 644
3770# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3771Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop25
3772Mode: 755
3773# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3774Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop25/size
3775Lines: 1
377620971520
3777Mode: 644
3778# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3779Directory: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features
3780Mode: 755
3781# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3782Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/big_metadata
3783Lines: 1
37841
3785Mode: 444
3786# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3787Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/extended_iref
3788Lines: 1
37891
3790Mode: 644
3791# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3792Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/mixed_backref
3793Lines: 1
37941
3795Mode: 444
3796# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3797Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/raid56
3798Lines: 1
37991
3800Mode: 444
3801# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3802Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/skinny_metadata
3803Lines: 1
38041
3805Mode: 444
3806# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3807Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/label
3808Lines: 0
3809Mode: 644
3810# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3811Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/metadata_uuid
3812Lines: 1
38137f07c59f-6136-449c-ab87-e1cf2328731b
3814Mode: 444
3815# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3816Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/nodesize
3817Lines: 1
381816384
3819Mode: 444
3820# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3821Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/quota_override
3822Lines: 1
38230
3824Mode: 644
3825# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3826Path: sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/sectorsize
3827Lines: 1
38284096
3829Mode: 444
3830# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3236Directory: sys/fs/xfs 3831Directory: sys/fs/xfs
3237Mode: 755 3832Mode: 755
3238# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 3833# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -