@cryptotaxi247 / netdata-1 / commits / 3aaf6bfe6

go.d storcli add initial support for mpt3sas controllers (#17938)

Ilya Mashchenko committed Jun 17, 2024 at 22:35 UTC 3aaf6bfe691963073a3778e4d0fcf98e2888a1c1
8 files changed +2411 -40
src/go/collectors/go.d.plugin/modules/storcli/charts.go
+33 -4
@@ -11,7 +11,8 @@ import (
11 )
12
13 const (
14 - prioControllerStatus = module.Priority + iota
14 + prioControllerHealthStatus = module.Priority + iota
15 + prioControllerStatus
16 prioControllerBBUStatus
17
18 prioPhysDriveErrors
@@ -22,12 +23,30 @@ const (
23 prioBBUTemperature
24 )
25
25 -var controllerChartsTmpl = module.Charts{
26 +var controllerMegaraidChartsTmpl = module.Charts{
27 + controllerHealthStatusChartTmpl.Copy(),
28 controllerStatusChartTmpl.Copy(),
29 controllerBBUStatusChartTmpl.Copy(),
30 }
31
32 +var controllerMpt3sasChartsTmpl = module.Charts{
33 + controllerHealthStatusChartTmpl.Copy(),
34 +}
35 +
36 var (
37 + controllerHealthStatusChartTmpl = module.Chart{
38 + ID: "controller_%s_health_status",
39 + Title: "Controller health status",
40 + Units: "status",
41 + Fam: "cntrl status",
42 + Ctx: "storcli.controller_health_status",
43 + Type: module.Line,
44 + Priority: prioControllerHealthStatus,
45 + Dims: module.Dims{
46 + {ID: "cntrl_%s_health_status_healthy", Name: "healthy"},
47 + {ID: "cntrl_%s_health_status_unhealthy", Name: "unhealthy"},
48 + },
49 + }
50 controllerStatusChartTmpl = module.Chart{
51 ID: "controller_%s_status",
52 Title: "Controller status",
@@ -139,7 +158,16 @@ var (
158 )
159
160 func (s *StorCli) addControllerCharts(cntrl controllerInfo) {
142 - charts := controllerChartsTmpl.Copy()
161 + var charts *module.Charts
162 +
163 + switch cntrl.Version.DriverName {
164 + case driverNameMegaraid:
165 + charts = controllerMegaraidChartsTmpl.Copy()
166 + case driverNameSas:
167 + charts = controllerMpt3sasChartsTmpl.Copy()
168 + default:
169 + return
170 + }
171
172 num := strconv.Itoa(cntrl.Basics.Controller)
173
@@ -147,7 +175,8 @@ func (s *StorCli) addControllerCharts(cntrl controllerInfo) {
175 chart.ID = fmt.Sprintf(chart.ID, num)
176 chart.Labels = []module.Label{
177 {Key: "controller_number", Value: num},
150 - {Key: "model", Value: cntrl.Basics.Model},
178 + {Key: "model", Value: strings.TrimSpace(cntrl.Basics.Model)},
179 + {Key: "driver_name", Value: cntrl.Version.DriverName},
180 }
181 for _, dim := range chart.Dims {
182 dim.ID = fmt.Sprintf(dim.ID, num)
src/go/collectors/go.d.plugin/modules/storcli/collect.go
+24 -11
@@ -4,6 +4,11 @@ package storcli
4
5 import "fmt"
6
7 +const (
8 + driverNameMegaraid = "megaraid_sas"
9 + driverNameSas = "mpt3sas"
10 +)
11 +
12 func (s *StorCli) collect() (map[string]int64, error) {
13 cntrlResp, err := s.queryControllersInfo()
14 if err != nil {
@@ -12,20 +17,28 @@ func (s *StorCli) collect() (map[string]int64, error) {
17
18 mx := make(map[string]int64)
19
15 - if err := s.collectControllersInfo(mx, cntrlResp); err != nil {
16 - return nil, fmt.Errorf("error collecting controller info: %s", err)
17 - }
18 -
19 - drives := cntrlResp.Controllers[0].ResponseData.PDList
20 driver := cntrlResp.Controllers[0].ResponseData.Version.DriverName
21 - if driver == "megaraid_sas" && len(drives) > 0 {
22 - drivesResp, err := s.queryDrivesInfo()
23 - if err != nil {
24 - return nil, fmt.Errorf("error collecting drives info: %s", err)
21 +
22 + switch driver {
23 + case driverNameMegaraid:
24 + if err := s.collectMegaraidControllersInfo(mx, cntrlResp); err != nil {
25 + return nil, fmt.Errorf("failed to collect megaraid controller info: %s", err)
26 + }
27 + if len(cntrlResp.Controllers[0].ResponseData.PDList) > 0 {
28 + drivesResp, err := s.queryDrivesInfo()
29 + if err != nil {
30 + return nil, fmt.Errorf("failed to collect megaraid drive info: %s", err)
31 + }
32 + if err := s.collectMegaRaidDrives(mx, drivesResp); err != nil {
33 + return nil, err
34 + }
35 }
26 - if err := s.collectMegaRaidDrives(mx, drivesResp); err != nil {
27 - return nil, err
36 + case driverNameSas:
37 + if err := s.collectMpt3sasControllersInfo(mx, cntrlResp); err != nil {
38 + return nil, fmt.Errorf("failed to collect mpt3sas controller info: %s", err)
39 }
40 + default:
41 + return nil, fmt.Errorf("unknown driver: %s", driver)
42 }
43
44 return mx, nil
src/go/collectors/go.d.plugin/modules/storcli/collect_controllers.go
+51 -14
@@ -30,8 +30,8 @@ type (
30 DriverName string `json:"Driver Name"`
31 } `json:"Version"`
32 Status struct {
33 - ControllerStatus string `json:"Controller Status"`
34 - BBUStatus storNumber `json:"BBU Status"`
33 + ControllerStatus string `json:"Controller Status"`
34 + BBUStatus *storNumber `json:"BBU Status"`
35 } `json:"Status"`
36 BBUInfo []struct {
37 Model string `json:"Model"`
@@ -43,7 +43,7 @@ type (
43 }
44 )
45
46 -func (s *StorCli) collectControllersInfo(mx map[string]int64, resp *controllersInfoResponse) error {
46 +func (s *StorCli) collectMegaraidControllersInfo(mx map[string]int64, resp *controllersInfoResponse) error {
47 for _, v := range resp.Controllers {
48 cntrl := v.ResponseData
49
@@ -56,22 +56,33 @@ func (s *StorCli) collectControllersInfo(mx map[string]int64, resp *controllersI
56
57 px := fmt.Sprintf("cntrl_%s_", cntrlNum)
58
59 + for _, st := range []string{"healthy", "unhealthy"} {
60 + mx[px+"health_status_"+st] = 0
61 + }
62 + if strings.ToLower(cntrl.Status.ControllerStatus) == "optimal" {
63 + mx[px+"health_status_healthy"] = 1
64 + } else {
65 + mx[px+"health_status_unhealthy"] = 1
66 + }
67 +
68 for _, st := range []string{"optimal", "degraded", "partially_degraded", "failed"} {
69 mx[px+"status_"+st] = 0
70 }
71 mx[px+"status_"+strings.ToLower(cntrl.Status.ControllerStatus)] = 1
72
64 - for _, st := range []string{"healthy", "unhealthy", "na"} {
65 - mx[px+"bbu_status_"+st] = 0
66 - }
67 - // https://github.com/prometheus-community/node-exporter-textfile-collector-scripts/issues/27
68 - switch cntrl.Status.BBUStatus {
69 - case "0", "8", "4096": // 0 good, 8 charging
70 - mx[px+"bbu_status_healthy"] = 1
71 - case "NA", "N/A":
72 - mx[px+"bbu_status_na"] = 1
73 - default:
74 - mx[px+"bbu_status_unhealthy"] = 1
73 + if cntrl.Status.BBUStatus != nil {
74 + for _, st := range []string{"healthy", "unhealthy", "na"} {
75 + mx[px+"bbu_status_"+st] = 0
76 + }
77 + // https://github.com/prometheus-community/node-exporter-textfile-collector-scripts/issues/27
78 + switch *cntrl.Status.BBUStatus {
79 + case "0", "8", "4096": // 0 good, 8 charging
80 + mx[px+"bbu_status_healthy"] = 1
81 + case "NA", "N/A":
82 + mx[px+"bbu_status_na"] = 1
83 + default:
84 + mx[px+"bbu_status_unhealthy"] = 1
85 + }
86 }
87
88 for i, bbu := range cntrl.BBUInfo {
@@ -92,6 +103,32 @@ func (s *StorCli) collectControllersInfo(mx map[string]int64, resp *controllersI
103 return nil
104 }
105
106 +func (s *StorCli) collectMpt3sasControllersInfo(mx map[string]int64, resp *controllersInfoResponse) error {
107 + for _, v := range resp.Controllers {
108 + cntrl := v.ResponseData
109 +
110 + cntrlNum := strconv.Itoa(cntrl.Basics.Controller)
111 +
112 + if !s.controllers[cntrlNum] {
113 + s.controllers[cntrlNum] = true
114 + s.addControllerCharts(cntrl)
115 + }
116 +
117 + px := fmt.Sprintf("cntrl_%s_", cntrlNum)
118 +
119 + for _, st := range []string{"healthy", "unhealthy"} {
120 + mx[px+"health_status_"+st] = 0
121 + }
122 + if strings.ToLower(cntrl.Status.ControllerStatus) == "ok" {
123 + mx[px+"health_status_healthy"] = 1
124 + } else {
125 + mx[px+"health_status_unhealthy"] = 1
126 + }
127 + }
128 +
129 + return nil
130 +}
131 +
132 func (s *StorCli) queryControllersInfo() (*controllersInfoResponse, error) {
133 bs, err := s.exec.controllersInfo()
134 if err != nil {
src/go/collectors/go.d.plugin/modules/storcli/collect_drives.go
+4
@@ -55,6 +55,10 @@ type storNumber string // some int values can be 'N/A'
55 func (n *storNumber) UnmarshalJSON(b []byte) error { *n = storNumber(b); return nil }
56
57 func (s *StorCli) collectMegaRaidDrives(mx map[string]int64, resp *drivesInfoResponse) error {
58 + if resp == nil {
59 + return nil
60 + }
61 +
62 for _, cntrl := range resp.Controllers {
63 var ids []string
64 for k := range cntrl.ResponseData {
src/go/collectors/go.d.plugin/modules/storcli/metadata.yaml
+12 -3
@@ -81,9 +81,9 @@ modules:
81 problems:
82 list: []
83 alerts:
84 - - name: storcli_controller_status
85 - metric: storcli.controller_status
86 - info: RAID controller ${label:controller_number} health status is not optimal
84 + - name: storcli_controller_health_status
85 + metric: storcli.controller_health_status
86 + info: RAID controller ${label:controller_number} is unhealthy
87 link: https://github.com/netdata/netdata/blob/master/src/health/health.d/storcli.conf
88 - name: storcli_controller_bbu_status
89 metric: storcli.controller_bbu_status
@@ -111,7 +111,16 @@ modules:
111 description: Controller number (index)
112 - name: model
113 description: Controller model
114 + - name: driver_name
115 + description: Controller driver (megaraid_sas or mpt3sas)
116 metrics:
117 + - name: storcli.controller_health_status
118 + description: Controller health status
119 + unit: status
120 + chart_type: line
121 + dimensions:
122 + - name: healthy
123 + - name: unhealthy
124 - name: storcli.controller_status
125 description: Controller status
126 unit: status
src/go/collectors/go.d.plugin/modules/storcli/storcli_test.go
+23 -4
@@ -19,15 +19,17 @@ var (
19
20 dataMegaControllerInfo, _ = os.ReadFile("testdata/megaraid-controllers-info.json")
21 dataMegaDrivesInfo, _ = os.ReadFile("testdata/megaraid-drives-info.json")
22 +
23 + dataSasControllerInfo, _ = os.ReadFile("testdata/mpt3sas-controllers-info.json")
24 )
25
26 func Test_testDataIsValid(t *testing.T) {
27 for name, data := range map[string][]byte{
26 - "dataConfigJSON": dataConfigJSON,
27 - "dataConfigYAML": dataConfigYAML,
28 -
28 + "dataConfigJSON": dataConfigJSON,
29 + "dataConfigYAML": dataConfigYAML,
30 "dataMegaControllerInfo": dataMegaControllerInfo,
31 "dataMegaDrivesInfo": dataMegaDrivesInfo,
32 + "dataSasControllerInfo": dataSasControllerInfo,
33 } {
34 require.NotNil(t, data, name)
35 }
@@ -147,12 +149,14 @@ func TestStorCli_Collect(t *testing.T) {
149 }{
150 "success MegaRAID controller": {
151 prepareMock: prepareMockMegaRaidOK,
150 - wantCharts: len(controllerChartsTmpl)*1 + len(physDriveChartsTmpl)*6 + len(bbuChartsTmpl)*1,
152 + wantCharts: len(controllerMegaraidChartsTmpl)*1 + len(physDriveChartsTmpl)*6 + len(bbuChartsTmpl)*1,
153 wantMetrics: map[string]int64{
154 "bbu_0_cntrl_0_temperature": 34,
155 "cntrl_0_bbu_status_healthy": 1,
156 "cntrl_0_bbu_status_na": 0,
157 "cntrl_0_bbu_status_unhealthy": 0,
158 + "cntrl_0_health_status_healthy": 1,
159 + "cntrl_0_health_status_unhealthy": 0,
160 "cntrl_0_status_degraded": 0,
161 "cntrl_0_status_failed": 0,
162 "cntrl_0_status_optimal": 1,
@@ -195,6 +199,14 @@ func TestStorCli_Collect(t *testing.T) {
199 "phys_drive_5000C500E5659BA7_cntrl_0_temperature": 27,
200 },
201 },
202 + "success SAS controller": {
203 + prepareMock: prepareMockSasOK,
204 + wantCharts: len(controllerMpt3sasChartsTmpl) * 1,
205 + wantMetrics: map[string]int64{
206 + "cntrl_0_health_status_healthy": 1,
207 + "cntrl_0_health_status_unhealthy": 0,
208 + },
209 + },
210 "err on exec": {
211 prepareMock: prepareMockErr,
212 wantMetrics: nil,
@@ -231,6 +243,13 @@ func prepareMockMegaRaidOK() *mockStorCliExec {
243 }
244 }
245
246 +func prepareMockSasOK() *mockStorCliExec {
247 + return &mockStorCliExec{
248 + controllersInfoData: dataSasControllerInfo,
249 + drivesInfoData: nil,
250 + }
251 +}
252 +
253 func prepareMockErr() *mockStorCliExec {
254 return &mockStorCliExec{
255 errOnInfo: true,
src/go/collectors/go.d.plugin/modules/storcli/testdata/mpt3sas-controllers-info.json new
+2260
@@ -0,0 +1,2260 @@
1 +{
2 + "Controllers": [
3 + {
4 + "Command Status": {
5 + "CLI Version": "007.2703.0000.0000 July 03, 2023",
6 + "Operating system": "Linux 6.9.4-dx",
7 + "Controller": 0,
8 + "Status": "Success",
9 + "Description": "None"
10 + },
11 + "Response Data": {
12 + "Basics": {
13 + "Controller": 0,
14 + "Adapter Type": " SAS3808(A0)",
15 + "Model": "HBA 9500-8i",
16 + "Serial Number": "REDACTED",
17 + "Current System Date/time": "06/17/2024 18:39:45",
18 + "Concurrent commands supported": 4992,
19 + "SAS Address": " 500062b20828c940",
20 + "PCI Address": "00:01:00:00"
21 + },
22 + "Version": {
23 + "Firmware Package Build": "28.00.00.00",
24 + "Firmware Version": "28.00.00.00",
25 + "Bios Version": "09.55.00.00_28.00.00.00",
26 + "NVDATA Version": "28.01.00.12",
27 + "PSOC FW Version": "0x0064",
28 + "PSOC Part Number": "14790",
29 + "Driver Name": "mpt3sas",
30 + "Driver Version": "48.100.00.00"
31 + },
32 + "PCI Version": {
33 + "Vendor Id": 4096,
34 + "Device Id": 230,
35 + "SubVendor Id": 4096,
36 + "SubDevice Id": 16512,
37 + "Host Interface": "PCIE",
38 + "Device Interface": "SAS-12G",
39 + "Bus Number": 1,
40 + "Device Number": 0,
41 + "Function Number": 0,
42 + "Domain ID": 0
43 + },
44 + "Pending Images in Flash": {
45 + "Image name": "No pending images"
46 + },
47 + "Status": {
48 + "Controller Status": "OK",
49 + "Memory Correctable Errors": 0,
50 + "Memory Uncorrectable Errors": 0,
51 + "Bios was not detected during boot": "No",
52 + "Controller has booted into safe mode": "No",
53 + "Controller has booted into certificate provision mode": "No",
54 + "Package Stamp Mismatch": "No"
55 + },
56 + "Supported Adapter Operations": {
57 + "Alarm Control": "No",
58 + "Cluster Support": "No",
59 + "Self Diagnostic": "No",
60 + "Deny SCSI Passthrough": "No",
61 + "Deny SMP Passthrough": "No",
62 + "Deny STP Passthrough": "No",
63 + "Support more than 8 Phys": "Yes",
64 + "FW and Event Time in GMT": "No",
65 + "Support Enclosure Enumeration": "Yes",
66 + "Support Allowed Operations": "Yes",
67 + "Support Multipath": "Yes",
68 + "Support Security": "Yes",
69 + "Support Config Page Model": "No",
70 + "Support the OCE without adding drives": "No",
71 + "support EKM": "No",
72 + "Snapshot Enabled": "No",
73 + "Support PFK": "No",
74 + "Support PI": "No",
75 + "Support Shield State": "No",
76 + "Support Set Link Speed": "No",
77 + "Support JBOD": "No",
78 + "Disable Online PFK Change": "No",
79 + "Real Time Scheduler": "No",
80 + "Support Reset Now": "No",
81 + "Support Emulated Drives": "No",
82 + "Support Secure Boot": "Yes",
83 + "Support Platform Security": "No",
84 + "Support Package Stamp Mismatch Reporting": "Yes",
85 + "Support PSOC Update": "Yes",
86 + "Support PSOC Part Information": "Yes",
87 + "Support PSOC Version Information": "Yes"
88 + },
89 + "HwCfg": {
90 + "ChipRevision": " A0",
91 + "BatteryFRU": "N/A",
92 + "Front End Port Count": 1,
93 + "Backend Port Count": 11,
94 + "Serial Debugger": "Absent",
95 + "NVRAM Size": "0KB",
96 + "Flash Size": "16MB",
97 + "On Board Memory Size": "0MB",
98 + "On Board Expander": "Absent",
99 + "Temperature Sensor for ROC": "Present",
100 + "Temperature Sensor for Controller": "Absent",
101 + "Current Size of CacheCade (GB)": 0,
102 + "Current Size of FW Cache (MB)": 0,
103 + "ROC temperature(Degree Celsius)": 44
104 + },
105 + "Policies": {
106 + "Policies Table": [
107 + {
108 + "Policy": "Predictive Fail Poll Interval",
109 + "Current": "0 sec",
110 + "Default": ""
111 + },
112 + {
113 + "Policy": "Interrupt Throttle Active Count",
114 + "Current": "0",
115 + "Default": ""
116 + },
117 + {
118 + "Policy": "Interrupt Throttle Completion",
119 + "Current": "0 us",
120 + "Default": ""
121 + },
122 + {
123 + "Policy": "Rebuild Rate",
124 + "Current": "0 %",
125 + "Default": "30%"
126 + },
127 + {
128 + "Policy": "PR Rate",
129 + "Current": "0 %",
130 + "Default": "30%"
131 + },
132 + {
133 + "Policy": "BGI Rate",
134 + "Current": "0 %",
135 + "Default": "30%"
136 + },
137 + {
138 + "Policy": "Check Consistency Rate",
139 + "Current": "0 %",
140 + "Default": "30%"
141 + },
142 + {
143 + "Policy": "Reconstruction Rate",
144 + "Current": "0 %",
145 + "Default": "30%"
146 + },
147 + {
148 + "Policy": "Cache Flush Interval",
149 + "Current": "0s",
150 + "Default": ""
151 + }
152 + ],
153 + "Flush Time(Default)": "4s",
154 + "Drive Coercion Mode": "none",
155 + "Auto Rebuild": "Off",
156 + "Battery Warning": "Off",
157 + "ECC Bucket Size": 0,
158 + "ECC Bucket Leak Rate (hrs)": 0,
159 + "Restore HotSpare on Insertion": "Off",
160 + "Expose Enclosure Devices": "Off",
161 + "Maintain PD Fail History": "Off",
162 + "Reorder Host Requests": "On",
163 + "Auto detect BackPlane": "SGPIO/i2c SEP",
164 + "Load Balance Mode": "None",
165 + "Security Key Assigned": "Off",
166 + "Disable Online Controller Reset": "Off",
167 + "Use drive activity for locate": "Off"
168 + },
169 + "Boot": {
170 + "Max Drives to Spinup at One Time": 2,
171 + "Maximum number of direct attached drives to spin up in 1 min": 60,
172 + "Delay Among Spinup Groups (sec)": 2,
173 + "Allow Boot with Preserved Cache": "On"
174 + },
175 + "Defaults": {
176 + "Phy Polarity": 0,
177 + "Phy PolaritySplit": 0,
178 + "Cached IO": "Off",
179 + "Default spin down time (mins)": 0,
180 + "Coercion Mode": "None",
181 + "ZCR Config": "Unknown",
182 + "Max Chained Enclosures": 0,
183 + "Direct PD Mapping": "No",
184 + "Restore Hot Spare on Insertion": "No",
185 + "Expose Enclosure Devices": "No",
186 + "Maintain PD Fail History": "No",
187 + "Zero Based Enclosure Enumeration": "No",
188 + "Disable Puncturing": "No",
189 + "Un-Certified Hard Disk Drives": "Block",
190 + "SMART Mode": "Mode 6",
191 + "Enable LED Header": "No",
192 + "LED Show Drive Activity": "No",
193 + "Dirty LED Shows Drive Activity": "No",
194 + "EnableCrashDump": "No",
195 + "Disable Online Controller Reset": "No",
196 + "Treat Single span R1E as R10": "No",
197 + "Power Saving option": "Enable",
198 + "TTY Log In Flash": "No",
199 + "Auto Enhanced Import": "No",
200 + "Enable Shield State": "No",
201 + "Time taken to detect CME": "60 sec"
202 + },
203 + "Capabilities": {
204 + "Supported Drives": "SAS, SATA, NVMe",
205 + "Enable JBOD": "Yes",
206 + "Max Parallel Commands": 4992,
207 + "Max SGE Count": 128,
208 + "Max Data Transfer Size": "32 sectors",
209 + "Max Strips PerIO": 0,
210 + "Max Configurable CacheCade Size": 0,
211 + "Min Strip Size": "512Bytes",
212 + "Max Strip Size": "512Bytes"
213 + },
214 + "Scheduled Tasks": "NA",
215 + "Secure Boot": {
216 + "Secure Boot Enabled": "Yes",
217 + "Controller in Soft Secure Mode": "No",
218 + "Controller in Hard Secure Mode": "Yes",
219 + "Key Update Pending": "No",
220 + "Remaining Secure Boot Key Slots": 7
221 + },
222 + "Security Protocol properties": {
223 + "Security Protocol": "None"
224 + },
225 + "Enclosure Information": [
226 + {
227 + "EID": 23,
228 + "State": "OK",
229 + "Slots": 24,
230 + "PD": 23,
231 + "PS": 0,
232 + "Fans": 0,
233 + "TSs": 2,
234 + "Alms": 0,
235 + "SIM": 0,
236 + "ProdID": "SC846-P",
237 + "VendorSpecific": "x40-66.16.11.0"
238 + },
239 + {
240 + "EID": 30,
241 + "State": "OK",
242 + "Slots": 12,
243 + "PD": 6,
244 + "PS": 0,
245 + "Fans": 0,
246 + "TSs": 2,
247 + "Alms": 0,
248 + "SIM": 0,
249 + "ProdID": "SC826-P",
250 + "VendorSpecific": "x28-66.16.11.0"
251 + }
252 + ],
253 + "Physical Device Information": {
254 + "Drive /c0/e23/s0": [
255 + {
256 + "EID:Slt": "23:0",
257 + "DID": 0,
258 + "State": "JBOD",
259 + "DG": "-",
260 + "Size": "12.732 TB",
261 + "Intf": "SATA",
262 + "Med": "HDD",
263 + "SED": "-",
264 + "PI": "-",
265 + "SeSz": "512B",
266 + "Model": "ST14000NM001G-2KJ103",
267 + "Sp": "-"
268 + }
269 + ],
270 + "Drive /c0/e23/s0 - Detailed Information": {
271 + "Drive /c0/e23/s0 State": {
272 + "Shield Counter": "N/A",
273 + "Media Error Count": "N/A",
274 + "Other Error Count": "N/A",
275 + "Predictive Failure Count": "N/A",
276 + "S.M.A.R.T alert flagged by drive": "N/A"
277 + },
278 + "Drive /c0/e23/s0 Device attributes": {
279 + "Manufacturer Id": "ATA ",
280 + "Model Number": "ST14000NM001G-2KJ103",
281 + "NAND Vendor": "NA",
282 + "SN": " REDACTED",
283 + "WWN": "REDACTED",
284 + "Firmware Revision": "SN03 ",
285 + "Raw size": "12.732 TB [0x65ddfffff Sectors]",
286 + "Coerced size": "12.732 TB [0x65ddfffff Sectors]",
287 + "Non Coerced size": "12.732 TB [0x65ddfffff Sectors]",
288 + "Device Speed": "6.0Gb/s",
289 + "Link Speed": "12.0Gb/s",
290 + "NCQ setting": "N/A",
291 + "Sector Size": "512B",
292 + "Config ID": "NA",
293 + "Number of Blocks": 27344764927,
294 + "Connector Name": "C0 & C1 "
295 + },
296 + "Drive /c0/e23/s0 Policies/Settings": {
297 + "Enclosure position": "0",
298 + "Connected Port Number": "0(path0) ",
299 + "Sequence Number": 0,
300 + "Commissioned Spare": "No",
301 + "Emergency Spare": "No",
302 + "Last Predictive Failure Event Sequence Number": "N/A",
303 + "Successful diagnostics completion on": "N/A",
304 + "SED Capable": "N/A",
305 + "SED Enabled": "N/A",
306 + "Secured": "N/A",
307 + "Needs EKM Attention": "N/A",
308 + "PI Eligible": "N/A",
309 + "Certified": "N/A",
310 + "Wide Port Capable": "N/A",
311 + "Multipath": "No",
312 + "Port Information": [
313 + {
314 + "Port": 0,
315 + "Status": "Active",
316 + "Linkspeed": "12.0Gb/s",
317 + "SAS address": "0x5003048020db4540"
318 + }
319 + ]
320 + },
321 + "Inquiry Data": "5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20 4c 5a 4a 32 30 46 4b 34 00 00 00 00 00 00 4e 53 33 30 20 20 20 20 54 53 34 31 30 30 4e 30 30 4d 31 30 2d 47 4b 32 31 4a 33 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00 "
322 + },
323 + "Drive /c0/e23/s1": [
324 + {
325 + "EID:Slt": "23:1",
326 + "DID": 1,
327 + "State": "JBOD",
328 + "DG": "-",
329 + "Size": "1.819 TB",
330 + "Intf": "SATA",
331 + "Med": "SSD",
332 + "SED": "-",
333 + "PI": "-",
334 + "SeSz": "512B",
335 + "Model": "WDC WDS200T1R0A-68A4W0",
336 + "Sp": "-"
337 + }
338 + ],
339 + "Drive /c0/e23/s1 - Detailed Information": {
340 + "Drive /c0/e23/s1 State": {
341 + "Shield Counter": "N/A",
342 + "Media Error Count": "N/A",
343 + "Other Error Count": "N/A",
344 + "Predictive Failure Count": "N/A",
345 + "S.M.A.R.T alert flagged by drive": "N/A"
346 + },
347 + "Drive /c0/e23/s1 Device attributes": {
348 + "Manufacturer Id": "ATA ",
349 + "Model Number": "WDC WDS200T1R0A-68A4W0",
350 + "NAND Vendor": "NA",
351 + "SN": "REDACTED ",
352 + "WWN": "REDACTED",
353 + "Firmware Revision": "411000WR",
354 + "Raw size": "1.819 TB [0xe8e088af Sectors]",
355 + "Coerced size": "1.819 TB [0xe8e088af Sectors]",
356 + "Non Coerced size": "1.819 TB [0xe8e088af Sectors]",
357 + "Device Speed": "6.0Gb/s",
358 + "Link Speed": "12.0Gb/s",
359 + "NCQ setting": "N/A",
360 + "Sector Size": "512B",
361 + "Config ID": "NA",
362 + "Number of Blocks": 3907029167,
363 + "Connector Name": "C0 & C1 "
364 + },
365 + "Drive /c0/e23/s1 Policies/Settings": {
366 + "Enclosure position": "0",
367 + "Connected Port Number": "0(path0) ",
368 + "Sequence Number": 0,
369 + "Commissioned Spare": "No",
370 + "Emergency Spare": "No",
371 + "Last Predictive Failure Event Sequence Number": "N/A",
372 + "Successful diagnostics completion on": "N/A",
373 + "SED Capable": "N/A",
374 + "SED Enabled": "N/A",
375 + "Secured": "N/A",
376 + "Needs EKM Attention": "N/A",
377 + "PI Eligible": "N/A",
378 + "Certified": "N/A",
379 + "Wide Port Capable": "N/A",
380 + "Multipath": "No",
381 + "Port Information": [
382 + {
383 + "Port": 0,
384 + "Status": "Active",
385 + "Linkspeed": "12.0Gb/s",
386 + "SAS address": "0x5003048020db4541"
387 + }
388 + ]
389 + },
390 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 32 35 33 34 43 34 34 38 30 35 31 20 20 20 20 20 20 20 20 00 00 00 00 00 00 31 34 30 31 30 30 52 57 44 57 20 43 57 20 53 44 30 32 54 30 52 31 41 30 36 2d 41 38 57 34 20 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80 00 40 00 2f 00 40 00 02 00 00 06 00 ff 3f 10 00 3f 00 10 fc fb 00 01 91 ff ff ff 0f 00 00 07 00 "
391 + },
392 + "Drive /c0/e23/s2": [
393 + {
394 + "EID:Slt": "23:2",
395 + "DID": 2,
396 + "State": "JBOD",
397 + "DG": "-",
398 + "Size": "16.370 TB",
399 + "Intf": "SATA",
400 + "Med": "HDD",
401 + "SED": "-",
402 + "PI": "-",
403 + "SeSz": "512B",
404 + "Model": "ST18000NM000J-2TV103",
405 + "Sp": "-"
406 + }
407 + ],
408 + "Drive /c0/e23/s2 - Detailed Information": {
409 + "Drive /c0/e23/s2 State": {
410 + "Shield Counter": "N/A",
411 + "Media Error Count": "N/A",
412 + "Other Error Count": "N/A",
413 + "Predictive Failure Count": "N/A",
414 + "S.M.A.R.T alert flagged by drive": "N/A"
415 + },
416 + "Drive /c0/e23/s2 Device attributes": {
417 + "Manufacturer Id": "ATA ",
418 + "Model Number": "ST18000NM000J-2TV103",
419 + "NAND Vendor": "NA",
420 + "SN": " REDACTED",
421 + "WWN": "REDACTED",
422 + "Firmware Revision": "SN02 ",
423 + "Raw size": "16.370 TB [0x82f7fffff Sectors]",
424 + "Coerced size": "16.370 TB [0x82f7fffff Sectors]",
425 + "Non Coerced size": "16.370 TB [0x82f7fffff Sectors]",
426 + "Device Speed": "6.0Gb/s",
427 + "Link Speed": "12.0Gb/s",
428 + "NCQ setting": "N/A",
429 + "Sector Size": "512B",
430 + "Config ID": "NA",
431 + "Number of Blocks": 35156656127,
432 + "Connector Name": "C0 & C1 "
433 + },
434 + "Drive /c0/e23/s2 Policies/Settings": {
435 + "Enclosure position": "0",
436 + "Connected Port Number": "0(path0) ",
437 + "Sequence Number": 0,
438 + "Commissioned Spare": "No",
439 + "Emergency Spare": "No",
440 + "Last Predictive Failure Event Sequence Number": "N/A",
441 + "Successful diagnostics completion on": "N/A",
442 + "SED Capable": "N/A",
443 + "SED Enabled": "N/A",
444 + "Secured": "N/A",
445 + "Needs EKM Attention": "N/A",
446 + "PI Eligible": "N/A",
447 + "Certified": "N/A",
448 + "Wide Port Capable": "N/A",
449 + "Multipath": "No",
450 + "Port Information": [
451 + {
452 + "Port": 0,
453 + "Status": "Active",
454 + "Linkspeed": "12.0Gb/s",
455 + "SAS address": "0x5003048020db4542"
456 + }
457 + ]
458 + },
459 + "Inquiry Data": "5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20 52 5a 33 35 47 57 50 30 00 00 00 00 00 00 4e 53 32 30 20 20 20 20 54 53 38 31 30 30 4e 30 30 4d 30 30 2d 4a 54 32 31 56 33 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00 "
460 + },
461 + "Drive /c0/e23/s3": [
462 + {
463 + "EID:Slt": "23:3",
464 + "DID": 3,
465 + "State": "JBOD",
466 + "DG": "-",
467 + "Size": "1.819 TB",
468 + "Intf": "SATA",
469 + "Med": "SSD",
470 + "SED": "-",
471 + "PI": "-",
472 + "SeSz": "512B",
473 + "Model": "WDC WDS200T1R0A-68A4W0",
474 + "Sp": "-"
475 + }
476 + ],
477 + "Drive /c0/e23/s3 - Detailed Information": {
478 + "Drive /c0/e23/s3 State": {
479 + "Shield Counter": "N/A",
480 + "Media Error Count": "N/A",
481 + "Other Error Count": "N/A",
482 + "Predictive Failure Count": "N/A",
483 + "S.M.A.R.T alert flagged by drive": "N/A"
484 + },
485 + "Drive /c0/e23/s3 Device attributes": {
486 + "Manufacturer Id": "ATA ",
487 + "Model Number": "WDC WDS200T1R0A-68A4W0",
488 + "NAND Vendor": "NA",
489 + "SN": "REDACTED ",
490 + "WWN": "REDACTED",
491 + "Firmware Revision": "411000WR",
492 + "Raw size": "1.819 TB [0xe8e088af Sectors]",
493 + "Coerced size": "1.819 TB [0xe8e088af Sectors]",
494 + "Non Coerced size": "1.819 TB [0xe8e088af Sectors]",
495 + "Device Speed": "6.0Gb/s",
496 + "Link Speed": "12.0Gb/s",
497 + "NCQ setting": "N/A",
498 + "Sector Size": "512B",
499 + "Config ID": "NA",
500 + "Number of Blocks": 3907029167,
501 + "Connector Name": "C0 & C1 "
502 + },
503 + "Drive /c0/e23/s3 Policies/Settings": {
504 + "Enclosure position": "0",
505 + "Connected Port Number": "0(path0) ",
506 + "Sequence Number": 0,
507 + "Commissioned Spare": "No",
508 + "Emergency Spare": "No",
509 + "Last Predictive Failure Event Sequence Number": "N/A",
510 + "Successful diagnostics completion on": "N/A",
511 + "SED Capable": "N/A",
512 + "SED Enabled": "N/A",
513 + "Secured": "N/A",
514 + "Needs EKM Attention": "N/A",
515 + "PI Eligible": "N/A",
516 + "Certified": "N/A",
517 + "Wide Port Capable": "N/A",
518 + "Multipath": "No",
519 + "Port Information": [
520 + {
521 + "Port": 0,
522 + "Status": "Active",
523 + "Linkspeed": "12.0Gb/s",
524 + "SAS address": "0x5003048020db4543"
525 + }
526 + ]
527 + },
528 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 31 32 30 35 44 37 30 38 36 30 33 31 20 20 20 20 20 20 20 20 00 00 00 00 00 00 31 34 30 31 30 30 52 57 44 57 20 43 57 20 53 44 30 32 54 30 52 31 41 30 36 2d 41 38 57 34 20 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80 00 40 00 2f 00 40 00 02 00 00 06 00 ff 3f 10 00 3f 00 10 fc fb 00 01 91 ff ff ff 0f 00 00 07 00 "
529 + },
530 + "Drive /c0/e23/s4": [
531 + {
532 + "EID:Slt": "23:4",
533 + "DID": 4,
534 + "State": "JBOD",
535 + "DG": "-",
536 + "Size": "10.913 TB",
537 + "Intf": "SATA",
538 + "Med": "HDD",
539 + "SED": "-",
540 + "PI": "-",
541 + "SeSz": "4 KB",
542 + "Model": "HGST HUH721212ALN604",
543 + "Sp": "-"
544 + }
545 + ],
546 + "Drive /c0/e23/s4 - Detailed Information": {
547 + "Drive /c0/e23/s4 State": {
548 + "Shield Counter": "N/A",
549 + "Media Error Count": "N/A",
550 + "Other Error Count": "N/A",
551 + "Predictive Failure Count": "N/A",
552 + "S.M.A.R.T alert flagged by drive": "N/A"
553 + },
554 + "Drive /c0/e23/s4 Device attributes": {
555 + "Manufacturer Id": "ATA ",
556 + "Model Number": "HGST HUH721212ALN604",
557 + "NAND Vendor": "NA",
558 + "SN": "REDACTED ",
559 + "WWN": "REDACTED",
560 + "Firmware Revision": "LEGNW925",
561 + "Raw size": "10.913 TB [0xae9fffff Sectors]",
562 + "Coerced size": "10.913 TB [0xae9fffff Sectors]",
563 + "Non Coerced size": "10.913 TB [0xae9fffff Sectors]",
564 + "Device Speed": "6.0Gb/s",
565 + "Link Speed": "12.0Gb/s",
566 + "NCQ setting": "N/A",
567 + "Sector Size": "4 KB",
568 + "Config ID": "NA",
569 + "Number of Blocks": 2929721343,
570 + "Connector Name": "C0 & C1 "
571 + },
572 + "Drive /c0/e23/s4 Policies/Settings": {
573 + "Enclosure position": "0",
574 + "Connected Port Number": "0(path0) ",
575 + "Sequence Number": 0,
576 + "Commissioned Spare": "No",
577 + "Emergency Spare": "No",
578 + "Last Predictive Failure Event Sequence Number": "N/A",
579 + "Successful diagnostics completion on": "N/A",
580 + "SED Capable": "N/A",
581 + "SED Enabled": "N/A",
582 + "Secured": "N/A",
583 + "Needs EKM Attention": "N/A",
584 + "PI Eligible": "N/A",
585 + "Certified": "N/A",
586 + "Wide Port Capable": "N/A",
587 + "Multipath": "No",
588 + "Port Information": [
589 + {
590 + "Port": 0,
591 + "Status": "Active",
592 + "Linkspeed": "12.0Gb/s",
593 + "SAS address": "0x5003048020db4544"
594 + }
595 + ]
596 + },
597 + "Inquiry Data": "5a 04 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 51 35 35 4a 34 44 42 32 20 20 20 20 20 20 20 20 20 20 20 20 03 00 00 00 38 00 45 4c 4e 47 39 57 35 32 47 48 54 53 48 20 48 55 32 37 32 31 32 31 4c 41 36 4e 34 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 00 59 ff ff ff 0f 00 00 07 00 "
598 + },
599 + "Drive /c0/e23/s5": [
600 + {
601 + "EID:Slt": "23:5",
602 + "DID": 5,
603 + "State": "JBOD",
604 + "DG": "-",
605 + "Size": "894.252 GB",
606 + "Intf": "SATA",
607 + "Med": "SSD",
608 + "SED": "-",
609 + "PI": "-",
610 + "SeSz": "512B",
611 + "Model": "KINGSTON SEDC500R960G",
612 + "Sp": "-"
613 + }
614 + ],
615 + "Drive /c0/e23/s5 - Detailed Information": {
616 + "Drive /c0/e23/s5 State": {
617 + "Shield Counter": "N/A",
618 + "Media Error Count": "N/A",
619 + "Other Error Count": "N/A",
620 + "Predictive Failure Count": "N/A",
621 + "S.M.A.R.T alert flagged by drive": "N/A"
622 + },
623 + "Drive /c0/e23/s5 Device attributes": {
624 + "Manufacturer Id": "ATA ",
625 + "Model Number": "KINGSTON SEDC500R960G",
626 + "NAND Vendor": "NA",
627 + "SN": "REDACTED ",
628 + "WWN": "REDACTED",
629 + "Firmware Revision": "SCEKJ2.7",
630 + "Raw size": "894.252 GB [0x6fc81aaf Sectors]",
631 + "Coerced size": "894.252 GB [0x6fc81aaf Sectors]",
632 + "Non Coerced size": "894.252 GB [0x6fc81aaf Sectors]",
633 + "Device Speed": "6.0Gb/s",
634 + "Link Speed": "12.0Gb/s",
635 + "NCQ setting": "N/A",
636 + "Sector Size": "512B",
637 + "Config ID": "NA",
638 + "Number of Blocks": 1875385007,
639 + "Connector Name": "C0 & C1 "
640 + },
641 + "Drive /c0/e23/s5 Policies/Settings": {
642 + "Enclosure position": "0",
643 + "Connected Port Number": "0(path0) ",
644 + "Sequence Number": 0,
645 + "Commissioned Spare": "No",
646 + "Emergency Spare": "No",
647 + "Last Predictive Failure Event Sequence Number": "N/A",
648 + "Successful diagnostics completion on": "N/A",
649 + "SED Capable": "N/A",
650 + "SED Enabled": "N/A",
651 + "Secured": "N/A",
652 + "Needs EKM Attention": "N/A",
653 + "PI Eligible": "N/A",
654 + "Certified": "N/A",
655 + "Wide Port Capable": "N/A",
656 + "Multipath": "No",
657 + "Port Information": [
658 + {
659 + "Port": 0,
660 + "Status": "Active",
661 + "Linkspeed": "12.0Gb/s",
662 + "SAS address": "0x5003048020db4545"
663 + }
664 + ]
665 + },
666 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 35 32 30 42 36 32 37 32 38 41 41 41 32 45 45 20 20 20 20 00 00 00 00 00 00 43 53 4b 45 32 4a 37 2e 49 4b 47 4e 54 53 4e 4f 53 20 44 45 35 43 30 30 39 52 30 36 20 47 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 00 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 01 ff ff ff 0f 00 00 07 00 "
667 + },
668 + "Drive /c0/e23/s6": [
669 + {
670 + "EID:Slt": "23:6",
671 + "DID": 6,
672 + "State": "JBOD",
673 + "DG": "-",
674 + "Size": "12.732 TB",
675 + "Intf": "SATA",
676 + "Med": "HDD",
677 + "SED": "-",
678 + "PI": "-",
679 + "SeSz": "512B",
680 + "Model": "ST14000NM001G-2KJ103",
681 + "Sp": "-"
682 + }
683 + ],
684 + "Drive /c0/e23/s6 - Detailed Information": {
685 + "Drive /c0/e23/s6 State": {
686 + "Shield Counter": "N/A",
687 + "Media Error Count": "N/A",
688 + "Other Error Count": "N/A",
689 + "Predictive Failure Count": "N/A",
690 + "S.M.A.R.T alert flagged by drive": "N/A"
691 + },
692 + "Drive /c0/e23/s6 Device attributes": {
693 + "Manufacturer Id": "ATA ",
694 + "Model Number": "ST14000NM001G-2KJ103",
695 + "NAND Vendor": "NA",
696 + "SN": " REDACTED",
697 + "WWN": "REDACTED",
698 + "Firmware Revision": "SN03 ",
699 + "Raw size": "12.732 TB [0x65ddfffff Sectors]",
700 + "Coerced size": "12.732 TB [0x65ddfffff Sectors]",
701 + "Non Coerced size": "12.732 TB [0x65ddfffff Sectors]",
702 + "Device Speed": "6.0Gb/s",
703 + "Link Speed": "12.0Gb/s",
704 + "NCQ setting": "N/A",
705 + "Sector Size": "512B",
706 + "Config ID": "NA",
707 + "Number of Blocks": 27344764927,
708 + "Connector Name": "C0 & C1 "
709 + },
710 + "Drive /c0/e23/s6 Policies/Settings": {
711 + "Enclosure position": "0",
712 + "Connected Port Number": "0(path0) ",
713 + "Sequence Number": 0,
714 + "Commissioned Spare": "No",
715 + "Emergency Spare": "No",
716 + "Last Predictive Failure Event Sequence Number": "N/A",
717 + "Successful diagnostics completion on": "N/A",
718 + "SED Capable": "N/A",
719 + "SED Enabled": "N/A",
720 + "Secured": "N/A",
721 + "Needs EKM Attention": "N/A",
722 + "PI Eligible": "N/A",
723 + "Certified": "N/A",
724 + "Wide Port Capable": "N/A",
725 + "Multipath": "No",
726 + "Port Information": [
727 + {
728 + "Port": 0,
729 + "Status": "Active",
730 + "Linkspeed": "12.0Gb/s",
731 + "SAS address": "0x5003048020db4546"
732 + }
733 + ]
734 + },
735 + "Inquiry Data": "5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20 4c 5a 48 32 31 4a 50 44 00 00 00 00 00 00 4e 53 33 30 20 20 20 20 54 53 34 31 30 30 4e 30 30 4d 31 30 2d 47 4b 32 31 4a 33 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00 "
736 + },
737 + "Drive /c0/e23/s7": [
738 + {
739 + "EID:Slt": "23:7",
740 + "DID": 7,
741 + "State": "JBOD",
742 + "DG": "-",
743 + "Size": "1.819 TB",
744 + "Intf": "SATA",
745 + "Med": "SSD",
746 + "SED": "-",
747 + "PI": "-",
748 + "SeSz": "512B",
749 + "Model": "Seagate BarraCuda 120 SSD ZA2000CM10003",
750 + "Sp": "-"
751 + }
752 + ],
753 + "Drive /c0/e23/s7 - Detailed Information": {
754 + "Drive /c0/e23/s7 State": {
755 + "Shield Counter": "N/A",
756 + "Media Error Count": "N/A",
757 + "Other Error Count": "N/A",
758 + "Predictive Failure Count": "N/A",
759 + "S.M.A.R.T alert flagged by drive": "N/A"
760 + },
761 + "Drive /c0/e23/s7 Device attributes": {
762 + "Manufacturer Id": "ATA ",
763 + "Model Number": "Seagate BarraCuda 120 SSD ZA2000CM10003",
764 + "NAND Vendor": "NA",
765 + "SN": "REDACTED ",
766 + "WWN": "REDACTED",
767 + "Firmware Revision": "STZSE014",
768 + "Raw size": "1.819 TB [0xe8e088af Sectors]",
769 + "Coerced size": "1.819 TB [0xe8e088af Sectors]",
770 + "Non Coerced size": "1.819 TB [0xe8e088af Sectors]",
771 + "Device Speed": "6.0Gb/s",
772 + "Link Speed": "12.0Gb/s",
773 + "NCQ setting": "N/A",
774 + "Sector Size": "512B",
775 + "Config ID": "NA",
776 + "Number of Blocks": 3907029167,
777 + "Connector Name": "C0 & C1 "
778 + },
779 + "Drive /c0/e23/s7 Policies/Settings": {
780 + "Enclosure position": "0",
781 + "Connected Port Number": "0(path0) ",
782 + "Sequence Number": 0,
783 + "Commissioned Spare": "No",
784 + "Emergency Spare": "No",
785 + "Last Predictive Failure Event Sequence Number": "N/A",
786 + "Successful diagnostics completion on": "N/A",
787 + "SED Capable": "N/A",
788 + "SED Enabled": "N/A",
789 + "Secured": "N/A",
790 + "Needs EKM Attention": "N/A",
791 + "PI Eligible": "N/A",
792 + "Certified": "N/A",
793 + "Wide Port Capable": "N/A",
794 + "Multipath": "No",
795 + "Port Information": [
796 + {
797 + "Port": 0,
798 + "Status": "Active",
799 + "Linkspeed": "12.0Gb/s",
800 + "SAS address": "0x5003048020db4547"
801 + }
802 + ]
803 + },
804 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 51 37 30 58 44 30 45 35 20 20 20 20 20 20 20 20 20 20 20 20 00 00 00 00 00 00 54 53 53 5a 30 45 34 31 65 53 67 61 74 61 20 65 61 42 72 72 43 61 64 75 20 61 32 31 20 30 53 53 20 44 41 5a 30 32 30 30 4d 43 30 31 30 30 20 33 10 80 00 40 00 2f 00 40 00 00 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 01 ff ff ff 0f 00 00 07 00 "
805 + },
806 + "Drive /c0/e23/s8": [
807 + {
808 + "EID:Slt": "23:8",
809 + "DID": 8,
810 + "State": "JBOD",
811 + "DG": "-",
812 + "Size": "16.370 TB",
813 + "Intf": "SATA",
814 + "Med": "HDD",
815 + "SED": "-",
816 + "PI": "-",
817 + "SeSz": "512B",
818 + "Model": "ST18000NM000J-2TV103",
819 + "Sp": "-"
820 + }
821 + ],
822 + "Drive /c0/e23/s8 - Detailed Information": {
823 + "Drive /c0/e23/s8 State": {
824 + "Shield Counter": "N/A",
825 + "Media Error Count": "N/A",
826 + "Other Error Count": "N/A",
827 + "Predictive Failure Count": "N/A",
828 + "S.M.A.R.T alert flagged by drive": "N/A"
829 + },
830 + "Drive /c0/e23/s8 Device attributes": {
831 + "Manufacturer Id": "ATA ",
832 + "Model Number": "ST18000NM000J-2TV103",
833 + "NAND Vendor": "NA",
834 + "SN": " REDACTED",
835 + "WWN": "REDACTED",
836 + "Firmware Revision": "SN02 ",
837 + "Raw size": "16.370 TB [0x82f7fffff Sectors]",
838 + "Coerced size": "16.370 TB [0x82f7fffff Sectors]",
839 + "Non Coerced size": "16.370 TB [0x82f7fffff Sectors]",
840 + "Device Speed": "6.0Gb/s",
841 + "Link Speed": "12.0Gb/s",
842 + "NCQ setting": "N/A",
843 + "Sector Size": "512B",
844 + "Config ID": "NA",
845 + "Number of Blocks": 35156656127,
846 + "Connector Name": "C0 & C1 "
847 + },
848 + "Drive /c0/e23/s8 Policies/Settings": {
849 + "Enclosure position": "0",
850 + "Connected Port Number": "0(path0) ",
851 + "Sequence Number": 0,
852 + "Commissioned Spare": "No",
853 + "Emergency Spare": "No",
854 + "Last Predictive Failure Event Sequence Number": "N/A",
855 + "Successful diagnostics completion on": "N/A",
856 + "SED Capable": "N/A",
857 + "SED Enabled": "N/A",
858 + "Secured": "N/A",
859 + "Needs EKM Attention": "N/A",
860 + "PI Eligible": "N/A",
861 + "Certified": "N/A",
862 + "Wide Port Capable": "N/A",
863 + "Multipath": "No",
864 + "Port Information": [
865 + {
866 + "Port": 0,
867 + "Status": "Active",
868 + "Linkspeed": "12.0Gb/s",
869 + "SAS address": "0x5003048020db4548"
870 + }
871 + ]
872 + },
873 + "Inquiry Data": "5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20 52 5a 33 35 44 5a 36 54 00 00 00 00 00 00 4e 53 32 30 20 20 20 20 54 53 38 31 30 30 4e 30 30 4d 30 30 2d 4a 54 32 31 56 33 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00 "
874 + },
875 + "Drive /c0/e23/s9": [
876 + {
877 + "EID:Slt": "23:9",
878 + "DID": 9,
879 + "State": "JBOD",
880 + "DG": "-",
881 + "Size": "1.819 TB",
882 + "Intf": "SATA",
883 + "Med": "SSD",
884 + "SED": "-",
885 + "PI": "-",
886 + "SeSz": "512B",
887 + "Model": "WDC WDS200T1R0A-68A4W0",
888 + "Sp": "-"
889 + }
890 + ],
891 + "Drive /c0/e23/s9 - Detailed Information": {
892 + "Drive /c0/e23/s9 State": {
893 + "Shield Counter": "N/A",
894 + "Media Error Count": "N/A",
895 + "Other Error Count": "N/A",
896 + "Predictive Failure Count": "N/A",
897 + "S.M.A.R.T alert flagged by drive": "N/A"
898 + },
899 + "Drive /c0/e23/s9 Device attributes": {
900 + "Manufacturer Id": "ATA ",
901 + "Model Number": "WDC WDS200T1R0A-68A4W0",
902 + "NAND Vendor": "NA",
903 + "SN": "REDACTED ",
904 + "WWN": "REDACTED",
905 + "Firmware Revision": "411000WR",
906 + "Raw size": "1.819 TB [0xe8e088af Sectors]",
907 + "Coerced size": "1.819 TB [0xe8e088af Sectors]",
908 + "Non Coerced size": "1.819 TB [0xe8e088af Sectors]",
909 + "Device Speed": "6.0Gb/s",
910 + "Link Speed": "12.0Gb/s",
911 + "NCQ setting": "N/A",
912 + "Sector Size": "512B",
913 + "Config ID": "NA",
914 + "Number of Blocks": 3907029167,
915 + "Connector Name": "C0 & C1 "
916 + },
917 + "Drive /c0/e23/s9 Policies/Settings": {
918 + "Enclosure position": "0",
919 + "Connected Port Number": "0(path0) ",
920 + "Sequence Number": 0,
921 + "Commissioned Spare": "No",
922 + "Emergency Spare": "No",
923 + "Last Predictive Failure Event Sequence Number": "N/A",
924 + "Successful diagnostics completion on": "N/A",
925 + "SED Capable": "N/A",
926 + "SED Enabled": "N/A",
927 + "Secured": "N/A",
928 + "Needs EKM Attention": "N/A",
929 + "PI Eligible": "N/A",
930 + "Certified": "N/A",
931 + "Wide Port Capable": "N/A",
932 + "Multipath": "No",
933 + "Port Information": [
934 + {
935 + "Port": 0,
936 + "Status": "Active",
937 + "Linkspeed": "12.0Gb/s",
938 + "SAS address": "0x5003048020db4549"
939 + }
940 + ]
941 + },
942 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 31 32 36 34 57 36 30 38 33 30 31 34 20 20 20 20 20 20 20 20 00 00 00 00 00 00 31 34 30 31 30 30 52 57 44 57 20 43 57 20 53 44 30 32 54 30 52 31 41 30 36 2d 41 38 57 34 20 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80 00 40 00 2f 00 40 00 02 00 00 06 00 ff 3f 10 00 3f 00 10 fc fb 00 01 91 ff ff ff 0f 00 00 07 00 "
943 + },
944 + "Drive /c0/e23/s10": [
945 + {
946 + "EID:Slt": "23:10",
947 + "DID": 10,
948 + "State": "JBOD",
949 + "DG": "-",
950 + "Size": "10.913 TB",
951 + "Intf": "SATA",
952 + "Med": "HDD",
953 + "SED": "-",
954 + "PI": "-",
955 + "SeSz": "4 KB",
956 + "Model": "HGST HUH721212ALN604",
957 + "Sp": "-"
958 + }
959 + ],
960 + "Drive /c0/e23/s10 - Detailed Information": {
961 + "Drive /c0/e23/s10 State": {
962 + "Shield Counter": "N/A",
963 + "Media Error Count": "N/A",
964 + "Other Error Count": "N/A",
965 + "Predictive Failure Count": "N/A",
966 + "S.M.A.R.T alert flagged by drive": "N/A"
967 + },
968 + "Drive /c0/e23/s10 Device attributes": {
969 + "Manufacturer Id": "ATA ",
970 + "Model Number": "HGST HUH721212ALN604",
971 + "NAND Vendor": "NA",
972 + "SN": "REDACTED ",
973 + "WWN": "REDACTED",
974 + "Firmware Revision": "LEGNW925",
975 + "Raw size": "10.913 TB [0xae9fffff Sectors]",
976 + "Coerced size": "10.913 TB [0xae9fffff Sectors]",
977 + "Non Coerced size": "10.913 TB [0xae9fffff Sectors]",
978 + "Device Speed": "6.0Gb/s",
979 + "Link Speed": "12.0Gb/s",
980 + "NCQ setting": "N/A",
981 + "Sector Size": "4 KB",
982 + "Config ID": "NA",
983 + "Number of Blocks": 2929721343,
984 + "Connector Name": "C0 & C1 "
985 + },
986 + "Drive /c0/e23/s10 Policies/Settings": {
987 + "Enclosure position": "0",
988 + "Connected Port Number": "0(path0) ",
989 + "Sequence Number": 0,
990 + "Commissioned Spare": "No",
991 + "Emergency Spare": "No",
992 + "Last Predictive Failure Event Sequence Number": "N/A",
993 + "Successful diagnostics completion on": "N/A",
994 + "SED Capable": "N/A",
995 + "SED Enabled": "N/A",
996 + "Secured": "N/A",
997 + "Needs EKM Attention": "N/A",
998 + "PI Eligible": "N/A",
999 + "Certified": "N/A",
1000 + "Wide Port Capable": "N/A",
1001 + "Multipath": "No",
1002 + "Port Information": [
1003 + {
1004 + "Port": 0,
1005 + "Status": "Active",
1006 + "Linkspeed": "12.0Gb/s",
1007 + "SAS address": "0x5003048020db454a"
1008 + }
1009 + ]
1010 + },
1011 + "Inquiry Data": "5a 04 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 51 35 42 48 4b 52 42 42 20 20 20 20 20 20 20 20 20 20 20 20 03 00 00 00 38 00 45 4c 4e 47 39 57 35 32 47 48 54 53 48 20 48 55 32 37 32 31 32 31 4c 41 36 4e 34 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 00 59 ff ff ff 0f 00 00 07 00 "
1012 + },
1013 + "Drive /c0/e23/s11": [
1014 + {
1015 + "EID:Slt": "23:11",
1016 + "DID": 11,
1017 + "State": "JBOD",
1018 + "DG": "-",
1019 + "Size": "894.252 GB",
1020 + "Intf": "SATA",
1021 + "Med": "SSD",
1022 + "SED": "-",
1023 + "PI": "-",
1024 + "SeSz": "512B",
1025 + "Model": "KINGSTON SEDC500R960G",
1026 + "Sp": "-"
1027 + }
1028 + ],
1029 + "Drive /c0/e23/s11 - Detailed Information": {
1030 + "Drive /c0/e23/s11 State": {
1031 + "Shield Counter": "N/A",
1032 + "Media Error Count": "N/A",
1033 + "Other Error Count": "N/A",
1034 + "Predictive Failure Count": "N/A",
1035 + "S.M.A.R.T alert flagged by drive": "N/A"
1036 + },
1037 + "Drive /c0/e23/s11 Device attributes": {
1038 + "Manufacturer Id": "ATA ",
1039 + "Model Number": "KINGSTON SEDC500R960G",
1040 + "NAND Vendor": "NA",
1041 + "SN": "REDACTED ",
1042 + "WWN": "REDACTED",
1043 + "Firmware Revision": "SCEKJ2.7",
1044 + "Raw size": "894.252 GB [0x6fc81aaf Sectors]",
1045 + "Coerced size": "894.252 GB [0x6fc81aaf Sectors]",
1046 + "Non Coerced size": "894.252 GB [0x6fc81aaf Sectors]",
1047 + "Device Speed": "6.0Gb/s",
1048 + "Link Speed": "12.0Gb/s",
1049 + "NCQ setting": "N/A",
1050 + "Sector Size": "512B",
1051 + "Config ID": "NA",
1052 + "Number of Blocks": 1875385007,
1053 + "Connector Name": "C0 & C1 "
1054 + },
1055 + "Drive /c0/e23/s11 Policies/Settings": {
1056 + "Enclosure position": "0",
1057 + "Connected Port Number": "0(path0) ",
1058 + "Sequence Number": 0,
1059 + "Commissioned Spare": "No",
1060 + "Emergency Spare": "No",
1061 + "Last Predictive Failure Event Sequence Number": "N/A",
1062 + "Successful diagnostics completion on": "N/A",
1063 + "SED Capable": "N/A",
1064 + "SED Enabled": "N/A",
1065 + "Secured": "N/A",
1066 + "Needs EKM Attention": "N/A",
1067 + "PI Eligible": "N/A",
1068 + "Certified": "N/A",
1069 + "Wide Port Capable": "N/A",
1070 + "Multipath": "No",
1071 + "Port Information": [
1072 + {
1073 + "Port": 0,
1074 + "Status": "Active",
1075 + "Linkspeed": "12.0Gb/s",
1076 + "SAS address": "0x5003048020db454b"
1077 + }
1078 + ]
1079 + },
1080 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 35 32 30 42 36 32 37 32 38 41 41 41 32 38 44 20 20 20 20 00 00 00 00 00 00 43 53 4b 45 32 4a 37 2e 49 4b 47 4e 54 53 4e 4f 53 20 44 45 35 43 30 30 39 52 30 36 20 47 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 00 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 01 ff ff ff 0f 00 00 07 00 "
1081 + },
1082 + "Drive /c0/e23/s12": [
1083 + {
1084 + "EID:Slt": "23:12",
1085 + "DID": 12,
1086 + "State": "JBOD",
1087 + "DG": "-",
1088 + "Size": "3.492 TB",
1089 + "Intf": "SATA",
1090 + "Med": "SSD",
1091 + "SED": "-",
1092 + "PI": "-",
1093 + "SeSz": "512B",
1094 + "Model": "KINGSTON SEDC600M3840G",
1095 + "Sp": "-"
1096 + }
1097 + ],
1098 + "Drive /c0/e23/s12 - Detailed Information": {
1099 + "Drive /c0/e23/s12 State": {
1100 + "Shield Counter": "N/A",
1101 + "Media Error Count": "N/A",
1102 + "Other Error Count": "N/A",
1103 + "Predictive Failure Count": "N/A",
1104 + "S.M.A.R.T alert flagged by drive": "N/A"
1105 + },
1106 + "Drive /c0/e23/s12 Device attributes": {
1107 + "Manufacturer Id": "ATA ",
1108 + "Model Number": "KINGSTON SEDC600M3840G",
1109 + "NAND Vendor": "NA",
1110 + "SN": "REDACTED ",
1111 + "WWN": "REDACTED",
1112 + "Firmware Revision": "SCEKH5.1",
1113 + "Raw size": "3.492 TB [0x1bf1f72af Sectors]",
1114 + "Coerced size": "3.492 TB [0x1bf1f72af Sectors]",
1115 + "Non Coerced size": "3.492 TB [0x1bf1f72af Sectors]",
1116 + "Device Speed": "6.0Gb/s",
1117 + "Link Speed": "12.0Gb/s",
1118 + "NCQ setting": "N/A",
1119 + "Sector Size": "512B",
1120 + "Config ID": "NA",
1121 + "Number of Blocks": 7501476527,
1122 + "Connector Name": "C0 & C1 "
1123 + },
1124 + "Drive /c0/e23/s12 Policies/Settings": {
1125 + "Enclosure position": "0",
1126 + "Connected Port Number": "0(path0) ",
1127 + "Sequence Number": 0,
1128 + "Commissioned Spare": "No",
1129 + "Emergency Spare": "No",
1130 + "Last Predictive Failure Event Sequence Number": "N/A",
1131 + "Successful diagnostics completion on": "N/A",
1132 + "SED Capable": "N/A",
1133 + "SED Enabled": "N/A",
1134 + "Secured": "N/A",
1135 + "Needs EKM Attention": "N/A",
1136 + "PI Eligible": "N/A",
1137 + "Certified": "N/A",
1138 + "Wide Port Capable": "N/A",
1139 + "Multipath": "No",
1140 + "Port Information": [
1141 + {
1142 + "Port": 0,
1143 + "Status": "Active",
1144 + "Linkspeed": "12.0Gb/s",
1145 + "SAS address": "0x5003048020db455c"
1146 + }
1147 + ]
1148 + },
1149 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 35 32 30 42 36 32 37 32 38 38 46 32 44 39 43 20 20 20 20 00 00 00 00 00 00 43 53 4b 45 35 48 31 2e 49 4b 47 4e 54 53 4e 4f 53 20 44 45 36 43 30 30 33 4d 34 38 47 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 00 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 01 ff ff ff 0f 00 00 07 00 "
1150 + },
1151 + "Drive /c0/e23/s14": [
1152 + {
1153 + "EID:Slt": "23:14",
1154 + "DID": 13,
1155 + "State": "JBOD",
1156 + "DG": "-",
1157 + "Size": "16.370 TB",
1158 + "Intf": "SATA",
1159 + "Med": "HDD",
1160 + "SED": "-",
1161 + "PI": "-",
1162 + "SeSz": "512B",
1163 + "Model": "ST18000NM000J-2TV103",
1164 + "Sp": "-"
1165 + }
1166 + ],
1167 + "Drive /c0/e23/s14 - Detailed Information": {
1168 + "Drive /c0/e23/s14 State": {
1169 + "Shield Counter": "N/A",
1170 + "Media Error Count": "N/A",
1171 + "Other Error Count": "N/A",
1172 + "Predictive Failure Count": "N/A",
1173 + "S.M.A.R.T alert flagged by drive": "N/A"
1174 + },
1175 + "Drive /c0/e23/s14 Device attributes": {
1176 + "Manufacturer Id": "ATA ",
1177 + "Model Number": "ST18000NM000J-2TV103",
1178 + "NAND Vendor": "NA",
1179 + "SN": " REDACTED",
1180 + "WWN": "REDACTED",
1181 + "Firmware Revision": "SN02 ",
1182 + "Raw size": "16.370 TB [0x82f7fffff Sectors]",
1183 + "Coerced size": "16.370 TB [0x82f7fffff Sectors]",
1184 + "Non Coerced size": "16.370 TB [0x82f7fffff Sectors]",
1185 + "Device Speed": "6.0Gb/s",
1186 + "Link Speed": "12.0Gb/s",
1187 + "NCQ setting": "N/A",
1188 + "Sector Size": "512B",
1189 + "Config ID": "NA",
1190 + "Number of Blocks": 35156656127,
1191 + "Connector Name": "C0 & C1 "
1192 + },
1193 + "Drive /c0/e23/s14 Policies/Settings": {
1194 + "Enclosure position": "0",
1195 + "Connected Port Number": "0(path0) ",
1196 + "Sequence Number": 0,
1197 + "Commissioned Spare": "No",
1198 + "Emergency Spare": "No",
1199 + "Last Predictive Failure Event Sequence Number": "N/A",
1200 + "Successful diagnostics completion on": "N/A",
1201 + "SED Capable": "N/A",
1202 + "SED Enabled": "N/A",
1203 + "Secured": "N/A",
1204 + "Needs EKM Attention": "N/A",
1205 + "PI Eligible": "N/A",
1206 + "Certified": "N/A",
1207 + "Wide Port Capable": "N/A",
1208 + "Multipath": "No",
1209 + "Port Information": [
1210 + {
1211 + "Port": 0,
1212 + "Status": "Active",
1213 + "Linkspeed": "12.0Gb/s",
1214 + "SAS address": "0x5003048020db455e"
1215 + }
1216 + ]
1217 + },
1218 + "Inquiry Data": "5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20 52 5a 33 35 4e 54 35 36 00 00 00 00 00 00 4e 53 32 30 20 20 20 20 54 53 38 31 30 30 4e 30 30 4d 30 30 2d 4a 54 32 31 56 33 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00 "
1219 + },
1220 + "Drive /c0/e23/s15": [
1221 + {
1222 + "EID:Slt": "23:15",
1223 + "DID": 14,
1224 + "State": "JBOD",
1225 + "DG": "-",
1226 + "Size": "1.819 TB",
1227 + "Intf": "SATA",
1228 + "Med": "SSD",
1229 + "SED": "-",
1230 + "PI": "-",
1231 + "SeSz": "512B",
1232 + "Model": "WDC WDS200T1R0A-68A4W0",
1233 + "Sp": "-"
1234 + }
1235 + ],
1236 + "Drive /c0/e23/s15 - Detailed Information": {
1237 + "Drive /c0/e23/s15 State": {
1238 + "Shield Counter": "N/A",
1239 + "Media Error Count": "N/A",
1240 + "Other Error Count": "N/A",
1241 + "Predictive Failure Count": "N/A",
1242 + "S.M.A.R.T alert flagged by drive": "N/A"
1243 + },
1244 + "Drive /c0/e23/s15 Device attributes": {
1245 + "Manufacturer Id": "ATA ",
1246 + "Model Number": "WDC WDS200T1R0A-68A4W0",
1247 + "NAND Vendor": "NA",
1248 + "SN": "REDACTED ",
1249 + "WWN": "REDACTED",
1250 + "Firmware Revision": "411000WR",
1251 + "Raw size": "1.819 TB [0xe8e088af Sectors]",
1252 + "Coerced size": "1.819 TB [0xe8e088af Sectors]",
1253 + "Non Coerced size": "1.819 TB [0xe8e088af Sectors]",
1254 + "Device Speed": "6.0Gb/s",
1255 + "Link Speed": "12.0Gb/s",
1256 + "NCQ setting": "N/A",
1257 + "Sector Size": "512B",
1258 + "Config ID": "NA",
1259 + "Number of Blocks": 3907029167,
1260 + "Connector Name": "C0 & C1 "
1261 + },
1262 + "Drive /c0/e23/s15 Policies/Settings": {
1263 + "Enclosure position": "0",
1264 + "Connected Port Number": "0(path0) ",
1265 + "Sequence Number": 0,
1266 + "Commissioned Spare": "No",
1267 + "Emergency Spare": "No",
1268 + "Last Predictive Failure Event Sequence Number": "N/A",
1269 + "Successful diagnostics completion on": "N/A",
1270 + "SED Capable": "N/A",
1271 + "SED Enabled": "N/A",
1272 + "Secured": "N/A",
1273 + "Needs EKM Attention": "N/A",
1274 + "PI Eligible": "N/A",
1275 + "Certified": "N/A",
1276 + "Wide Port Capable": "N/A",
1277 + "Multipath": "No",
1278 + "Port Information": [
1279 + {
1280 + "Port": 0,
1281 + "Status": "Active",
1282 + "Linkspeed": "12.0Gb/s",
1283 + "SAS address": "0x5003048020db455f"
1284 + }
1285 + ]
1286 + },
1287 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 31 32 36 34 57 36 30 38 33 30 36 33 20 20 20 20 20 20 20 20 00 00 00 00 00 00 31 34 30 31 30 30 52 57 44 57 20 43 57 20 53 44 30 32 54 30 52 31 41 30 36 2d 41 38 57 34 20 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80 00 40 00 2f 00 40 00 02 00 00 06 00 ff 3f 10 00 3f 00 10 fc fb 00 01 91 ff ff ff 0f 00 00 07 00 "
1288 + },
1289 + "Drive /c0/e23/s16": [
1290 + {
1291 + "EID:Slt": "23:16",
1292 + "DID": 15,
1293 + "State": "JBOD",
1294 + "DG": "-",
1295 + "Size": "10.913 TB",
1296 + "Intf": "SATA",
1297 + "Med": "HDD",
1298 + "SED": "-",
1299 + "PI": "-",
1300 + "SeSz": "4 KB",
1301 + "Model": "HGST HUH721212ALN604",
1302 + "Sp": "-"
1303 + }
1304 + ],
1305 + "Drive /c0/e23/s16 - Detailed Information": {
1306 + "Drive /c0/e23/s16 State": {
1307 + "Shield Counter": "N/A",
1308 + "Media Error Count": "N/A",
1309 + "Other Error Count": "N/A",
1310 + "Predictive Failure Count": "N/A",
1311 + "S.M.A.R.T alert flagged by drive": "N/A"
1312 + },
1313 + "Drive /c0/e23/s16 Device attributes": {
1314 + "Manufacturer Id": "ATA ",
1315 + "Model Number": "HGST HUH721212ALN604",
1316 + "NAND Vendor": "NA",
1317 + "SN": "REDACTED ",
1318 + "WWN": "REDACTED",
1319 + "Firmware Revision": "LEGNW925",
1320 + "Raw size": "10.913 TB [0xae9fffff Sectors]",
1321 + "Coerced size": "10.913 TB [0xae9fffff Sectors]",
1322 + "Non Coerced size": "10.913 TB [0xae9fffff Sectors]",
1323 + "Device Speed": "6.0Gb/s",
1324 + "Link Speed": "12.0Gb/s",
1325 + "NCQ setting": "N/A",
1326 + "Sector Size": "4 KB",
1327 + "Config ID": "NA",
1328 + "Number of Blocks": 2929721343,
1329 + "Connector Name": "C0 & C1 "
1330 + },
1331 + "Drive /c0/e23/s16 Policies/Settings": {
1332 + "Enclosure position": "0",
1333 + "Connected Port Number": "0(path0) ",
1334 + "Sequence Number": 0,
1335 + "Commissioned Spare": "No",
1336 + "Emergency Spare": "No",
1337 + "Last Predictive Failure Event Sequence Number": "N/A",
1338 + "Successful diagnostics completion on": "N/A",
1339 + "SED Capable": "N/A",
1340 + "SED Enabled": "N/A",
1341 + "Secured": "N/A",
1342 + "Needs EKM Attention": "N/A",
1343 + "PI Eligible": "N/A",
1344 + "Certified": "N/A",
1345 + "Wide Port Capable": "N/A",
1346 + "Multipath": "No",
1347 + "Port Information": [
1348 + {
1349 + "Port": 0,
1350 + "Status": "Active",
1351 + "Linkspeed": "12.0Gb/s",
1352 + "SAS address": "0x5003048020db4560"
1353 + }
1354 + ]
1355 + },
1356 + "Inquiry Data": "5a 04 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 51 35 34 4a 5a 4b 42 4a 20 20 20 20 20 20 20 20 20 20 20 20 03 00 00 00 38 00 45 4c 4e 47 39 57 35 32 47 48 54 53 48 20 48 55 32 37 32 31 32 31 4c 41 36 4e 34 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 00 59 ff ff ff 0f 00 00 07 00 "
1357 + },
1358 + "Drive /c0/e23/s17": [
1359 + {
1360 + "EID:Slt": "23:17",
1361 + "DID": 16,
1362 + "State": "JBOD",
1363 + "DG": "-",
1364 + "Size": "931.512 GB",
1365 + "Intf": "SATA",
1366 + "Med": "SSD",
1367 + "SED": "-",
1368 + "PI": "-",
1369 + "SeSz": "512B",
1370 + "Model": "WDC WDS100T1R0A-68A4W0",
1371 + "Sp": "-"
1372 + }
1373 + ],
1374 + "Drive /c0/e23/s17 - Detailed Information": {
1375 + "Drive /c0/e23/s17 State": {
1376 + "Shield Counter": "N/A",
1377 + "Media Error Count": "N/A",
1378 + "Other Error Count": "N/A",
1379 + "Predictive Failure Count": "N/A",
1380 + "S.M.A.R.T alert flagged by drive": "N/A"
1381 + },
1382 + "Drive /c0/e23/s17 Device attributes": {
1383 + "Manufacturer Id": "ATA ",
1384 + "Model Number": "WDC WDS100T1R0A-68A4W0",
1385 + "NAND Vendor": "NA",
1386 + "SN": "REDACTED ",
1387 + "WWN": "REDACTED",
1388 + "Firmware Revision": "411000WR",
1389 + "Raw size": "931.512 GB [0x74706daf Sectors]",
1390 + "Coerced size": "931.512 GB [0x74706daf Sectors]",
1391 + "Non Coerced size": "931.512 GB [0x74706daf Sectors]",
1392 + "Device Speed": "6.0Gb/s",
1393 + "Link Speed": "12.0Gb/s",
1394 + "NCQ setting": "N/A",
1395 + "Sector Size": "512B",
1396 + "Config ID": "NA",
1397 + "Number of Blocks": 1953525167,
1398 + "Connector Name": "C0 & C1 "
1399 + },
1400 + "Drive /c0/e23/s17 Policies/Settings": {
1401 + "Enclosure position": "0",
1402 + "Connected Port Number": "0(path0) ",
1403 + "Sequence Number": 0,
1404 + "Commissioned Spare": "No",
1405 + "Emergency Spare": "No",
1406 + "Last Predictive Failure Event Sequence Number": "N/A",
1407 + "Successful diagnostics completion on": "N/A",
1408 + "SED Capable": "N/A",
1409 + "SED Enabled": "N/A",
1410 + "Secured": "N/A",
1411 + "Needs EKM Attention": "N/A",
1412 + "PI Eligible": "N/A",
1413 + "Certified": "N/A",
1414 + "Wide Port Capable": "N/A",
1415 + "Multipath": "No",
1416 + "Port Information": [
1417 + {
1418 + "Port": 0,
1419 + "Status": "Active",
1420 + "Linkspeed": "12.0Gb/s",
1421 + "SAS address": "0x5003048020db4561"
1422 + }
1423 + ]
1424 + },
1425 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 32 33 31 45 46 34 34 34 39 34 31 20 20 20 20 20 20 20 20 00 00 00 00 00 00 31 34 30 31 30 30 52 57 44 57 20 43 57 20 53 44 30 31 54 30 52 31 41 30 36 2d 41 38 57 34 20 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80 00 40 00 2f 00 40 00 02 00 00 06 00 ff 3f 10 00 3f 00 10 fc fb 00 01 91 ff ff ff 0f 00 00 07 00 "
1426 + },
1427 + "Drive /c0/e23/s18": [
1428 + {
1429 + "EID:Slt": "23:18",
1430 + "DID": 17,
1431 + "State": "JBOD",
1432 + "DG": "-",
1433 + "Size": "3.492 TB",
1434 + "Intf": "SATA",
1435 + "Med": "SSD",
1436 + "SED": "-",
1437 + "PI": "-",
1438 + "SeSz": "512B",
1439 + "Model": "KINGSTON SEDC600M3840G",
1440 + "Sp": "-"
1441 + }
1442 + ],
1443 + "Drive /c0/e23/s18 - Detailed Information": {
1444 + "Drive /c0/e23/s18 State": {
1445 + "Shield Counter": "N/A",
1446 + "Media Error Count": "N/A",
1447 + "Other Error Count": "N/A",
1448 + "Predictive Failure Count": "N/A",
1449 + "S.M.A.R.T alert flagged by drive": "N/A"
1450 + },
1451 + "Drive /c0/e23/s18 Device attributes": {
1452 + "Manufacturer Id": "ATA ",
1453 + "Model Number": "KINGSTON SEDC600M3840G",
1454 + "NAND Vendor": "NA",
1455 + "SN": "REDACTED ",
1456 + "WWN": "REDACTED",
1457 + "Firmware Revision": "SCEKH5.1",
1458 + "Raw size": "3.492 TB [0x1bf1f72af Sectors]",
1459 + "Coerced size": "3.492 TB [0x1bf1f72af Sectors]",
1460 + "Non Coerced size": "3.492 TB [0x1bf1f72af Sectors]",
1461 + "Device Speed": "6.0Gb/s",
1462 + "Link Speed": "12.0Gb/s",
1463 + "NCQ setting": "N/A",
1464 + "Sector Size": "512B",
1465 + "Config ID": "NA",
1466 + "Number of Blocks": 7501476527,
1467 + "Connector Name": "C0 & C1 "
1468 + },
1469 + "Drive /c0/e23/s18 Policies/Settings": {
1470 + "Enclosure position": "0",
1471 + "Connected Port Number": "0(path0) ",
1472 + "Sequence Number": 0,
1473 + "Commissioned Spare": "No",
1474 + "Emergency Spare": "No",
1475 + "Last Predictive Failure Event Sequence Number": "N/A",
1476 + "Successful diagnostics completion on": "N/A",
1477 + "SED Capable": "N/A",
1478 + "SED Enabled": "N/A",
1479 + "Secured": "N/A",
1480 + "Needs EKM Attention": "N/A",
1481 + "PI Eligible": "N/A",
1482 + "Certified": "N/A",
1483 + "Wide Port Capable": "N/A",
1484 + "Multipath": "No",
1485 + "Port Information": [
1486 + {
1487 + "Port": 0,
1488 + "Status": "Active",
1489 + "Linkspeed": "12.0Gb/s",
1490 + "SAS address": "0x5003048020db4562"
1491 + }
1492 + ]
1493 + },
1494 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 35 32 30 42 36 32 37 32 38 44 46 43 35 42 34 20 20 20 20 00 00 00 00 00 00 43 53 4b 45 35 48 31 2e 49 4b 47 4e 54 53 4e 4f 53 20 44 45 36 43 30 30 33 4d 34 38 47 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 00 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 01 ff ff ff 0f 00 00 07 00 "
1495 + },
1496 + "Drive /c0/e23/s19": [
1497 + {
1498 + "EID:Slt": "23:19",
1499 + "DID": 18,
1500 + "State": "JBOD",
1501 + "DG": "-",
1502 + "Size": "931.512 GB",
1503 + "Intf": "SATA",
1504 + "Med": "SSD",
1505 + "SED": "-",
1506 + "PI": "-",
1507 + "SeSz": "512B",
1508 + "Model": "Seagate IronWolf ZA1000NM10002-2ZG102",
1509 + "Sp": "-"
1510 + }
1511 + ],
1512 + "Drive /c0/e23/s19 - Detailed Information": {
1513 + "Drive /c0/e23/s19 State": {
1514 + "Shield Counter": "N/A",
1515 + "Media Error Count": "N/A",
1516 + "Other Error Count": "N/A",
1517 + "Predictive Failure Count": "N/A",
1518 + "S.M.A.R.T alert flagged by drive": "N/A"
1519 + },
1520 + "Drive /c0/e23/s19 Device attributes": {
1521 + "Manufacturer Id": "ATA ",
1522 + "Model Number": "Seagate IronWolf ZA1000NM10002-2ZG102",
1523 + "NAND Vendor": "NA",
1524 + "SN": "REDACTED ",
1525 + "WWN": "REDACTED",
1526 + "Firmware Revision": "SU3SC013",
1527 + "Raw size": "931.512 GB [0x74706daf Sectors]",
1528 + "Coerced size": "931.512 GB [0x74706daf Sectors]",
1529 + "Non Coerced size": "931.512 GB [0x74706daf Sectors]",
1530 + "Device Speed": "6.0Gb/s",
1531 + "Link Speed": "12.0Gb/s",
1532 + "NCQ setting": "N/A",
1533 + "Sector Size": "512B",
1534 + "Config ID": "NA",
1535 + "Number of Blocks": 1953525167,
1536 + "Connector Name": "C0 & C1 "
1537 + },
1538 + "Drive /c0/e23/s19 Policies/Settings": {
1539 + "Enclosure position": "0",
1540 + "Connected Port Number": "0(path0) ",
1541 + "Sequence Number": 0,
1542 + "Commissioned Spare": "No",
1543 + "Emergency Spare": "No",
1544 + "Last Predictive Failure Event Sequence Number": "N/A",
1545 + "Successful diagnostics completion on": "N/A",
1546 + "SED Capable": "N/A",
1547 + "SED Enabled": "N/A",
1548 + "Secured": "N/A",
1549 + "Needs EKM Attention": "N/A",
1550 + "PI Eligible": "N/A",
1551 + "Certified": "N/A",
1552 + "Wide Port Capable": "N/A",
1553 + "Multipath": "No",
1554 + "Port Information": [
1555 + {
1556 + "Port": 0,
1557 + "Status": "Active",
1558 + "Linkspeed": "12.0Gb/s",
1559 + "SAS address": "0x5003048020db4563"
1560 + }
1561 + ]
1562 + },
1563 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 54 37 30 43 35 30 32 57 20 20 20 20 20 20 20 20 20 20 20 20 00 00 00 00 00 00 55 53 53 33 30 43 33 31 65 53 67 61 74 61 20 65 72 49 6e 6f 6f 57 66 6c 5a 20 31 41 30 30 4e 30 31 4d 30 30 32 30 32 2d 47 5a 30 31 20 32 20 20 10 80 00 40 00 2f 00 40 00 00 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 01 ff ff ff 0f 00 00 07 00 "
1564 + },
1565 + "Drive /c0/e23/s20": [
1566 + {
1567 + "EID:Slt": "23:20",
1568 + "DID": 19,
1569 + "State": "JBOD",
1570 + "DG": "-",
1571 + "Size": "16.370 TB",
1572 + "Intf": "SATA",
1573 + "Med": "HDD",
1574 + "SED": "-",
1575 + "PI": "-",
1576 + "SeSz": "512B",
1577 + "Model": "ST18000NM000J-2TV103",
1578 + "Sp": "-"
1579 + }
1580 + ],
1581 + "Drive /c0/e23/s20 - Detailed Information": {
1582 + "Drive /c0/e23/s20 State": {
1583 + "Shield Counter": "N/A",
1584 + "Media Error Count": "N/A",
1585 + "Other Error Count": "N/A",
1586 + "Predictive Failure Count": "N/A",
1587 + "S.M.A.R.T alert flagged by drive": "N/A"
1588 + },
1589 + "Drive /c0/e23/s20 Device attributes": {
1590 + "Manufacturer Id": "ATA ",
1591 + "Model Number": "ST18000NM000J-2TV103",
1592 + "NAND Vendor": "NA",
1593 + "SN": " REDACTED",
1594 + "WWN": "REDACTED",
1595 + "Firmware Revision": "SN02 ",
1596 + "Raw size": "16.370 TB [0x82f7fffff Sectors]",
1597 + "Coerced size": "16.370 TB [0x82f7fffff Sectors]",
1598 + "Non Coerced size": "16.370 TB [0x82f7fffff Sectors]",
1599 + "Device Speed": "6.0Gb/s",
1600 + "Link Speed": "12.0Gb/s",
1601 + "NCQ setting": "N/A",
1602 + "Sector Size": "512B",
1603 + "Config ID": "NA",
1604 + "Number of Blocks": 35156656127,
1605 + "Connector Name": "C0 & C1 "
1606 + },
1607 + "Drive /c0/e23/s20 Policies/Settings": {
1608 + "Enclosure position": "0",
1609 + "Connected Port Number": "0(path0) ",
1610 + "Sequence Number": 0,
1611 + "Commissioned Spare": "No",
1612 + "Emergency Spare": "No",
1613 + "Last Predictive Failure Event Sequence Number": "N/A",
1614 + "Successful diagnostics completion on": "N/A",
1615 + "SED Capable": "N/A",
1616 + "SED Enabled": "N/A",
1617 + "Secured": "N/A",
1618 + "Needs EKM Attention": "N/A",
1619 + "PI Eligible": "N/A",
1620 + "Certified": "N/A",
1621 + "Wide Port Capable": "N/A",
1622 + "Multipath": "No",
1623 + "Port Information": [
1624 + {
1625 + "Port": 0,
1626 + "Status": "Active",
1627 + "Linkspeed": "12.0Gb/s",
1628 + "SAS address": "0x5003048020db4564"
1629 + }
1630 + ]
1631 + },
1632 + "Inquiry Data": "5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20 52 5a 33 35 34 59 4a 54 00 00 00 00 00 00 4e 53 32 30 20 20 20 20 54 53 38 31 30 30 4e 30 30 4d 30 30 2d 4a 54 32 31 56 33 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00 "
1633 + },
1634 + "Drive /c0/e23/s21": [
1635 + {
1636 + "EID:Slt": "23:21",
1637 + "DID": 20,
1638 + "State": "JBOD",
1639 + "DG": "-",
1640 + "Size": "1.819 TB",
1641 + "Intf": "SATA",
1642 + "Med": "SSD",
1643 + "SED": "-",
1644 + "PI": "-",
1645 + "SeSz": "512B",
1646 + "Model": "WDC WDS200T1R0A-68A4W0",
1647 + "Sp": "-"
1648 + }
1649 + ],
1650 + "Drive /c0/e23/s21 - Detailed Information": {
1651 + "Drive /c0/e23/s21 State": {
1652 + "Shield Counter": "N/A",
1653 + "Media Error Count": "N/A",
1654 + "Other Error Count": "N/A",
1655 + "Predictive Failure Count": "N/A",
1656 + "S.M.A.R.T alert flagged by drive": "N/A"
1657 + },
1658 + "Drive /c0/e23/s21 Device attributes": {
1659 + "Manufacturer Id": "ATA ",
1660 + "Model Number": "WDC WDS200T1R0A-68A4W0",
1661 + "NAND Vendor": "NA",
1662 + "SN": "REDACTED ",
1663 + "WWN": "REDACTED",
1664 + "Firmware Revision": "411000WR",
1665 + "Raw size": "1.819 TB [0xe8e088af Sectors]",
1666 + "Coerced size": "1.819 TB [0xe8e088af Sectors]",
1667 + "Non Coerced size": "1.819 TB [0xe8e088af Sectors]",
1668 + "Device Speed": "6.0Gb/s",
1669 + "Link Speed": "12.0Gb/s",
1670 + "NCQ setting": "N/A",
1671 + "Sector Size": "512B",
1672 + "Config ID": "NA",
1673 + "Number of Blocks": 3907029167,
1674 + "Connector Name": "C0 & C1 "
1675 + },
1676 + "Drive /c0/e23/s21 Policies/Settings": {
1677 + "Enclosure position": "0",
1678 + "Connected Port Number": "0(path0) ",
1679 + "Sequence Number": 0,
1680 + "Commissioned Spare": "No",
1681 + "Emergency Spare": "No",
1682 + "Last Predictive Failure Event Sequence Number": "N/A",
1683 + "Successful diagnostics completion on": "N/A",
1684 + "SED Capable": "N/A",
1685 + "SED Enabled": "N/A",
1686 + "Secured": "N/A",
1687 + "Needs EKM Attention": "N/A",
1688 + "PI Eligible": "N/A",
1689 + "Certified": "N/A",
1690 + "Wide Port Capable": "N/A",
1691 + "Multipath": "No",
1692 + "Port Information": [
1693 + {
1694 + "Port": 0,
1695 + "Status": "Active",
1696 + "Linkspeed": "12.0Gb/s",
1697 + "SAS address": "0x5003048020db4565"
1698 + }
1699 + ]
1700 + },
1701 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 31 32 38 32 34 35 34 34 33 31 32 30 20 20 20 20 20 20 20 20 00 00 00 00 00 00 31 34 30 31 30 30 52 57 44 57 20 43 57 20 53 44 30 32 54 30 52 31 41 30 36 2d 41 38 57 34 20 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80 00 40 00 2f 00 40 00 02 00 00 06 00 ff 3f 10 00 3f 00 10 fc fb 00 01 91 ff ff ff 0f 00 00 07 00 "
1702 + },
1703 + "Drive /c0/e23/s22": [
1704 + {
1705 + "EID:Slt": "23:22",
1706 + "DID": 21,
1707 + "State": "JBOD",
1708 + "DG": "-",
1709 + "Size": "10.913 TB",
1710 + "Intf": "SATA",
1711 + "Med": "HDD",
1712 + "SED": "-",
1713 + "PI": "-",
1714 + "SeSz": "512B",
1715 + "Model": "ST12000NM001G-2MV103",
1716 + "Sp": "-"
1717 + }
1718 + ],
1719 + "Drive /c0/e23/s22 - Detailed Information": {
1720 + "Drive /c0/e23/s22 State": {
1721 + "Shield Counter": "N/A",
1722 + "Media Error Count": "N/A",
1723 + "Other Error Count": "N/A",
1724 + "Predictive Failure Count": "N/A",
1725 + "S.M.A.R.T alert flagged by drive": "N/A"
1726 + },
1727 + "Drive /c0/e23/s22 Device attributes": {
1728 + "Manufacturer Id": "ATA ",
1729 + "Model Number": "ST12000NM001G-2MV103",
1730 + "NAND Vendor": "NA",
1731 + "SN": " REDACTED",
1732 + "WWN": "REDACTED",
1733 + "Firmware Revision": "SN03 ",
1734 + "Raw size": "10.913 TB [0x574ffffff Sectors]",
1735 + "Coerced size": "10.913 TB [0x574ffffff Sectors]",
1736 + "Non Coerced size": "10.913 TB [0x574ffffff Sectors]",
1737 + "Device Speed": "6.0Gb/s",
1738 + "Link Speed": "12.0Gb/s",
1739 + "NCQ setting": "N/A",
1740 + "Sector Size": "512B",
1741 + "Config ID": "NA",
1742 + "Number of Blocks": 23437770751,
1743 + "Connector Name": "C0 & C1 "
1744 + },
1745 + "Drive /c0/e23/s22 Policies/Settings": {
1746 + "Enclosure position": "0",
1747 + "Connected Port Number": "0(path0) ",
1748 + "Sequence Number": 0,
1749 + "Commissioned Spare": "No",
1750 + "Emergency Spare": "No",
1751 + "Last Predictive Failure Event Sequence Number": "N/A",
1752 + "Successful diagnostics completion on": "N/A",
1753 + "SED Capable": "N/A",
1754 + "SED Enabled": "N/A",
1755 + "Secured": "N/A",
1756 + "Needs EKM Attention": "N/A",
1757 + "PI Eligible": "N/A",
1758 + "Certified": "N/A",
1759 + "Wide Port Capable": "N/A",
1760 + "Multipath": "No",
1761 + "Port Information": [
1762 + {
1763 + "Port": 0,
1764 + "Status": "Active",
1765 + "Linkspeed": "12.0Gb/s",
1766 + "SAS address": "0x5003048020db4566"
1767 + }
1768 + ]
1769 + },
1770 + "Inquiry Data": "5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20 4c 57 30 32 47 36 50 58 00 00 00 00 00 00 4e 53 33 30 20 20 20 20 54 53 32 31 30 30 4e 30 30 4d 31 30 2d 47 4d 32 31 56 33 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00 "
1771 + },
1772 + "Drive /c0/e23/s23": [
1773 + {
1774 + "EID:Slt": "23:23",
1775 + "DID": 22,
1776 + "State": "JBOD",
1777 + "DG": "-",
1778 + "Size": "931.512 GB",
1779 + "Intf": "SATA",
1780 + "Med": "SSD",
1781 + "SED": "-",
1782 + "PI": "-",
1783 + "SeSz": "512B",
1784 + "Model": "WDC WDS100T1R0A-68A4W0",
1785 + "Sp": "-"
1786 + }
1787 + ],
1788 + "Drive /c0/e23/s23 - Detailed Information": {
1789 + "Drive /c0/e23/s23 State": {
1790 + "Shield Counter": "N/A",
1791 + "Media Error Count": "N/A",
1792 + "Other Error Count": "N/A",
1793 + "Predictive Failure Count": "N/A",
1794 + "S.M.A.R.T alert flagged by drive": "N/A"
1795 + },
1796 + "Drive /c0/e23/s23 Device attributes": {
1797 + "Manufacturer Id": "ATA ",
1798 + "Model Number": "WDC WDS100T1R0A-68A4W0",
1799 + "NAND Vendor": "NA",
1800 + "SN": "REDACTED ",
1801 + "WWN": "REDACTED",
1802 + "Firmware Revision": "411000WR",
1803 + "Raw size": "931.512 GB [0x74706daf Sectors]",
1804 + "Coerced size": "931.512 GB [0x74706daf Sectors]",
1805 + "Non Coerced size": "931.512 GB [0x74706daf Sectors]",
1806 + "Device Speed": "6.0Gb/s",
1807 + "Link Speed": "12.0Gb/s",
1808 + "NCQ setting": "N/A",
1809 + "Sector Size": "512B",
1810 + "Config ID": "NA",
1811 + "Number of Blocks": 1953525167,
1812 + "Connector Name": "C0 & C1 "
1813 + },
1814 + "Drive /c0/e23/s23 Policies/Settings": {
1815 + "Enclosure position": "0",
1816 + "Connected Port Number": "0(path0) ",
1817 + "Sequence Number": 0,
1818 + "Commissioned Spare": "No",
1819 + "Emergency Spare": "No",
1820 + "Last Predictive Failure Event Sequence Number": "N/A",
1821 + "Successful diagnostics completion on": "N/A",
1822 + "SED Capable": "N/A",
1823 + "SED Enabled": "N/A",
1824 + "Secured": "N/A",
1825 + "Needs EKM Attention": "N/A",
1826 + "PI Eligible": "N/A",
1827 + "Certified": "N/A",
1828 + "Wide Port Capable": "N/A",
1829 + "Multipath": "No",
1830 + "Port Information": [
1831 + {
1832 + "Port": 0,
1833 + "Status": "Active",
1834 + "Linkspeed": "12.0Gb/s",
1835 + "SAS address": "0x5003048020db4567"
1836 + }
1837 + ]
1838 + },
1839 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 32 33 31 45 46 34 34 36 35 35 30 20 20 20 20 20 20 20 20 00 00 00 00 00 00 31 34 30 31 30 30 52 57 44 57 20 43 57 20 53 44 30 31 54 30 52 31 41 30 36 2d 41 38 57 34 20 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80 00 40 00 2f 00 40 00 02 00 00 06 00 ff 3f 10 00 3f 00 10 fc fb 00 01 91 ff ff ff 0f 00 00 07 00 "
1840 + },
1841 + "Drive /c0/e30/s3": [
1842 + {
1843 + "EID:Slt": "30:3",
1844 + "DID": 24,
1845 + "State": "JBOD",
1846 + "DG": "-",
1847 + "Size": "18.189 TB",
1848 + "Intf": "SATA",
1849 + "Med": "HDD",
1850 + "SED": "-",
1851 + "PI": "-",
1852 + "SeSz": "512B",
1853 + "Model": "WDC WUH722020BLE6L4",
1854 + "Sp": "-"
1855 + }
1856 + ],
1857 + "Drive /c0/e30/s3 - Detailed Information": {
1858 + "Drive /c0/e30/s3 State": {
1859 + "Shield Counter": "N/A",
1860 + "Media Error Count": "N/A",
1861 + "Other Error Count": "N/A",
1862 + "Predictive Failure Count": "N/A",
1863 + "S.M.A.R.T alert flagged by drive": "N/A"
1864 + },
1865 + "Drive /c0/e30/s3 Device attributes": {
1866 + "Manufacturer Id": "ATA ",
1867 + "Model Number": "WDC WUH722020BLE6L4",
1868 + "NAND Vendor": "NA",
1869 + "SN": "REDACTED ",
1870 + "WWN": "REDACTED",
1871 + "Firmware Revision": "PQGNW540",
1872 + "Raw size": "18.189 TB [0x9185fffff Sectors]",
1873 + "Coerced size": "18.189 TB [0x9185fffff Sectors]",
1874 + "Non Coerced size": "18.189 TB [0x9185fffff Sectors]",
1875 + "Device Speed": "6.0Gb/s",
1876 + "Link Speed": "12.0Gb/s",
1877 + "NCQ setting": "N/A",
1878 + "Sector Size": "512B",
1879 + "Config ID": "NA",
1880 + "Number of Blocks": 39063650303,
1881 + "Connector Name": "C0 & C1 "
1882 + },
1883 + "Drive /c0/e30/s3 Policies/Settings": {
1884 + "Enclosure position": "1",
1885 + "Connected Port Number": "0(path0) ",
1886 + "Sequence Number": 0,
1887 + "Commissioned Spare": "No",
1888 + "Emergency Spare": "No",
1889 + "Last Predictive Failure Event Sequence Number": "N/A",
1890 + "Successful diagnostics completion on": "N/A",
1891 + "SED Capable": "N/A",
1892 + "SED Enabled": "N/A",
1893 + "Secured": "N/A",
1894 + "Needs EKM Attention": "N/A",
1895 + "PI Eligible": "N/A",
1896 + "Certified": "N/A",
1897 + "Wide Port Capable": "N/A",
1898 + "Multipath": "No",
1899 + "Port Information": [
1900 + {
1901 + "Port": 0,
1902 + "Status": "Active",
1903 + "Linkspeed": "12.0Gb/s",
1904 + "SAS address": "0x5003048020e87d43"
1905 + }
1906 + ]
1907 + },
1908 + "Inquiry Data": "5a 04 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 4c 38 34 47 48 56 41 59 20 20 20 20 20 20 20 20 20 20 20 20 03 00 00 00 38 00 51 50 4e 47 35 57 30 34 44 57 20 43 57 20 48 55 32 37 30 32 30 32 4c 42 36 45 34 4c 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 00 59 ff ff ff 0f 00 00 07 00 "
1909 + },
1910 + "Drive /c0/e30/s5": [
1911 + {
1912 + "EID:Slt": "30:5",
1913 + "DID": 25,
1914 + "State": "JBOD",
1915 + "DG": "-",
1916 + "Size": "18.189 TB",
1917 + "Intf": "SATA",
1918 + "Med": "HDD",
1919 + "SED": "-",
1920 + "PI": "-",
1921 + "SeSz": "512B",
1922 + "Model": "WDC WUH722020BLE6L4",
1923 + "Sp": "-"
1924 + }
1925 + ],
1926 + "Drive /c0/e30/s5 - Detailed Information": {
1927 + "Drive /c0/e30/s5 State": {
1928 + "Shield Counter": "N/A",
1929 + "Media Error Count": "N/A",
1930 + "Other Error Count": "N/A",
1931 + "Predictive Failure Count": "N/A",
1932 + "S.M.A.R.T alert flagged by drive": "N/A"
1933 + },
1934 + "Drive /c0/e30/s5 Device attributes": {
1935 + "Manufacturer Id": "ATA ",
1936 + "Model Number": "WDC WUH722020BLE6L4",
1937 + "NAND Vendor": "NA",
1938 + "SN": "REDACTED ",
1939 + "WWN": "REDACTED",
1940 + "Firmware Revision": "PQGNW540",
1941 + "Raw size": "18.189 TB [0x9185fffff Sectors]",
1942 + "Coerced size": "18.189 TB [0x9185fffff Sectors]",
1943 + "Non Coerced size": "18.189 TB [0x9185fffff Sectors]",
1944 + "Device Speed": "6.0Gb/s",
1945 + "Link Speed": "12.0Gb/s",
1946 + "NCQ setting": "N/A",
1947 + "Sector Size": "512B",
1948 + "Config ID": "NA",
1949 + "Number of Blocks": 39063650303,
1950 + "Connector Name": "C0 & C1 "
1951 + },
1952 + "Drive /c0/e30/s5 Policies/Settings": {
1953 + "Enclosure position": "1",
1954 + "Connected Port Number": "0(path0) ",
1955 + "Sequence Number": 0,
1956 + "Commissioned Spare": "No",
1957 + "Emergency Spare": "No",
1958 + "Last Predictive Failure Event Sequence Number": "N/A",
1959 + "Successful diagnostics completion on": "N/A",
1960 + "SED Capable": "N/A",
1961 + "SED Enabled": "N/A",
1962 + "Secured": "N/A",
1963 + "Needs EKM Attention": "N/A",
1964 + "PI Eligible": "N/A",
1965 + "Certified": "N/A",
1966 + "Wide Port Capable": "N/A",
1967 + "Multipath": "No",
1968 + "Port Information": [
1969 + {
1970 + "Port": 0,
1971 + "Status": "Active",
1972 + "Linkspeed": "12.0Gb/s",
1973 + "SAS address": "0x5003048020e87d45"
1974 + }
1975 + ]
1976 + },
1977 + "Inquiry Data": "5a 04 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 4c 38 34 47 52 56 41 4c 20 20 20 20 20 20 20 20 20 20 20 20 03 00 00 00 38 00 51 50 4e 47 35 57 30 34 44 57 20 43 57 20 48 55 32 37 30 32 30 32 4c 42 36 45 34 4c 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00 3f 00 10 fc fb 00 00 59 ff ff ff 0f 00 00 07 00 "
1978 + },
1979 + "Drive /c0/e30/s6": [
1980 + {
1981 + "EID:Slt": "30:6",
1982 + "DID": 26,
1983 + "State": "JBOD",
1984 + "DG": "-",
1985 + "Size": "18.189 TB",
1986 + "Intf": "SATA",
1987 + "Med": "HDD",
1988 + "SED": "-",
1989 + "PI": "-",
1990 + "SeSz": "512B",
1991 + "Model": "TOSHIBA MG10ACA20TE",
1992 + "Sp": "-"
1993 + }
1994 + ],
1995 + "Drive /c0/e30/s6 - Detailed Information": {
1996 + "Drive /c0/e30/s6 State": {
1997 + "Shield Counter": "N/A",
1998 + "Media Error Count": "N/A",
1999 + "Other Error Count": "N/A",
2000 + "Predictive Failure Count": "N/A",
2001 + "S.M.A.R.T alert flagged by drive": "N/A"
2002 + },
2003 + "Drive /c0/e30/s6 Device attributes": {
2004 + "Manufacturer Id": "ATA ",
2005 + "Model Number": "TOSHIBA MG10ACA20TE",
2006 + "NAND Vendor": "NA",
2007 + "SN": " REDACTED",
2008 + "WWN": "REDACTED",
2009 + "Firmware Revision": "0102 ",
2010 + "Raw size": "18.189 TB [0x9185fffff Sectors]",
2011 + "Coerced size": "18.189 TB [0x9185fffff Sectors]",
2012 + "Non Coerced size": "18.189 TB [0x9185fffff Sectors]",
2013 + "Device Speed": "6.0Gb/s",
2014 + "Link Speed": "12.0Gb/s",
2015 + "NCQ setting": "N/A",
2016 + "Sector Size": "512B",
2017 + "Config ID": "NA",
2018 + "Number of Blocks": 39063650303,
2019 + "Connector Name": "C0 & C1 "
2020 + },
2021 + "Drive /c0/e30/s6 Policies/Settings": {
2022 + "Enclosure position": "1",
2023 + "Connected Port Number": "0(path0) ",
2024 + "Sequence Number": 0,
2025 + "Commissioned Spare": "No",
2026 + "Emergency Spare": "No",
2027 + "Last Predictive Failure Event Sequence Number": "N/A",
2028 + "Successful diagnostics completion on": "N/A",
2029 + "SED Capable": "N/A",
2030 + "SED Enabled": "N/A",
2031 + "Secured": "N/A",
2032 + "Needs EKM Attention": "N/A",
2033 + "PI Eligible": "N/A",
2034 + "Certified": "N/A",
2035 + "Wide Port Capable": "N/A",
2036 + "Multipath": "No",
2037 + "Port Information": [
2038 + {
2039 + "Port": 0,
2040 + "Status": "Active",
2041 + "Linkspeed": "12.0Gb/s",
2042 + "SAS address": "0x5003048020e87d46"
2043 + }
2044 + ]
2045 + },
2046 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 32 5a 30 42 30 41 5a 33 34 46 4a 4d 00 00 00 00 00 00 31 30 32 30 20 20 20 20 4f 54 48 53 42 49 20 41 47 4d 30 31 43 41 32 41 54 30 20 45 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 07 00 07 00 "
2047 + },
2048 + "Drive /c0/e30/s8": [
2049 + {
2050 + "EID:Slt": "30:8",
2051 + "DID": 27,
2052 + "State": "JBOD",
2053 + "DG": "-",
2054 + "Size": "18.189 TB",
2055 + "Intf": "SATA",
2056 + "Med": "HDD",
2057 + "SED": "-",
2058 + "PI": "-",
2059 + "SeSz": "512B",
2060 + "Model": "TOSHIBA MG10ACA20TE",
2061 + "Sp": "-"
2062 + }
2063 + ],
2064 + "Drive /c0/e30/s8 - Detailed Information": {
2065 + "Drive /c0/e30/s8 State": {
2066 + "Shield Counter": "N/A",
2067 + "Media Error Count": "N/A",
2068 + "Other Error Count": "N/A",
2069 + "Predictive Failure Count": "N/A",
2070 + "S.M.A.R.T alert flagged by drive": "N/A"
2071 + },
2072 + "Drive /c0/e30/s8 Device attributes": {
2073 + "Manufacturer Id": "ATA ",
2074 + "Model Number": "TOSHIBA MG10ACA20TE",
2075 + "NAND Vendor": "NA",
2076 + "SN": " REDACTED",
2077 + "WWN": "REDACTED",
2078 + "Firmware Revision": "0102 ",
2079 + "Raw size": "18.189 TB [0x9185fffff Sectors]",
2080 + "Coerced size": "18.189 TB [0x9185fffff Sectors]",
2081 + "Non Coerced size": "18.189 TB [0x9185fffff Sectors]",
2082 + "Device Speed": "6.0Gb/s",
2083 + "Link Speed": "12.0Gb/s",
2084 + "NCQ setting": "N/A",
2085 + "Sector Size": "512B",
2086 + "Config ID": "NA",
2087 + "Number of Blocks": 39063650303,
2088 + "Connector Name": "C0 & C1 "
2089 + },
2090 + "Drive /c0/e30/s8 Policies/Settings": {
2091 + "Enclosure position": "1",
2092 + "Connected Port Number": "0(path0) ",
2093 + "Sequence Number": 0,
2094 + "Commissioned Spare": "No",
2095 + "Emergency Spare": "No",
2096 + "Last Predictive Failure Event Sequence Number": "N/A",
2097 + "Successful diagnostics completion on": "N/A",
2098 + "SED Capable": "N/A",
2099 + "SED Enabled": "N/A",
2100 + "Secured": "N/A",
2101 + "Needs EKM Attention": "N/A",
2102 + "PI Eligible": "N/A",
2103 + "Certified": "N/A",
2104 + "Wide Port Capable": "N/A",
2105 + "Multipath": "No",
2106 + "Port Information": [
2107 + {
2108 + "Port": 0,
2109 + "Status": "Active",
2110 + "Linkspeed": "12.0Gb/s",
2111 + "SAS address": "0x5003048020e87d48"
2112 + }
2113 + ]
2114 + },
2115 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 20 20 20 20 20 20 20 20 32 5a 30 41 31 41 35 4b 34 46 4a 4d 00 00 00 00 00 00 31 30 32 30 20 20 20 20 4f 54 48 53 42 49 20 41 47 4d 30 31 43 41 32 41 54 30 20 45 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 02 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 5d ff ff ff 0f 07 00 07 00 "
2116 + },
2117 + "Drive /c0/e30/s9": [
2118 + {
2119 + "EID:Slt": "30:9",
2120 + "DID": 28,
2121 + "State": "JBOD",
2122 + "DG": "-",
2123 + "Size": "3.492 TB",
2124 + "Intf": "SATA",
2125 + "Med": "SSD",
2126 + "SED": "-",
2127 + "PI": "-",
2128 + "SeSz": "512B",
2129 + "Model": "KINGSTON SEDC600M3840G",
2130 + "Sp": "-"
2131 + }
2132 + ],
2133 + "Drive /c0/e30/s9 - Detailed Information": {
2134 + "Drive /c0/e30/s9 State": {
2135 + "Shield Counter": "N/A",
2136 + "Media Error Count": "N/A",
2137 + "Other Error Count": "N/A",
2138 + "Predictive Failure Count": "N/A",
2139 + "S.M.A.R.T alert flagged by drive": "N/A"
2140 + },
2141 + "Drive /c0/e30/s9 Device attributes": {
2142 + "Manufacturer Id": "ATA ",
2143 + "Model Number": "KINGSTON SEDC600M3840G",
2144 + "NAND Vendor": "NA",
2145 + "SN": "REDACTED ",
2146 + "WWN": "REDACTED",
2147 + "Firmware Revision": "SCEKH5.1",
2148 + "Raw size": "3.492 TB [0x1bf1f72af Sectors]",
2149 + "Coerced size": "3.492 TB [0x1bf1f72af Sectors]",
2150 + "Non Coerced size": "3.492 TB [0x1bf1f72af Sectors]",
2151 + "Device Speed": "6.0Gb/s",
2152 + "Link Speed": "12.0Gb/s",
2153 + "NCQ setting": "N/A",
2154 + "Sector Size": "512B",
2155 + "Config ID": "NA",
2156 + "Number of Blocks": 7501476527,
2157 + "Connector Name": "C0 & C1 "
2158 + },
2159 + "Drive /c0/e30/s9 Policies/Settings": {
2160 + "Enclosure position": "1",
2161 + "Connected Port Number": "0(path0) ",
2162 + "Sequence Number": 0,
2163 + "Commissioned Spare": "No",
2164 + "Emergency Spare": "No",
2165 + "Last Predictive Failure Event Sequence Number": "N/A",
2166 + "Successful diagnostics completion on": "N/A",
2167 + "SED Capable": "N/A",
2168 + "SED Enabled": "N/A",
2169 + "Secured": "N/A",
2170 + "Needs EKM Attention": "N/A",
2171 + "PI Eligible": "N/A",
2172 + "Certified": "N/A",
2173 + "Wide Port Capable": "N/A",
2174 + "Multipath": "No",
2175 + "Port Information": [
2176 + {
2177 + "Port": 0,
2178 + "Status": "Active",
2179 + "Linkspeed": "12.0Gb/s",
2180 + "SAS address": "0x5003048020e87d49"
2181 + }
2182 + ]
2183 + },
2184 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 35 32 30 42 36 32 37 32 38 44 46 43 35 42 42 20 20 20 20 00 00 00 00 00 00 43 53 4b 45 35 48 31 2e 49 4b 47 4e 54 53 4e 4f 53 20 44 45 36 43 30 30 33 4d 34 38 47 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 00 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 01 ff ff ff 0f 00 00 07 00 "
2185 + },
2186 + "Drive /c0/e30/s11": [
2187 + {
2188 + "EID:Slt": "30:11",
2189 + "DID": 29,
2190 + "State": "JBOD",
2191 + "DG": "-",
2192 + "Size": "3.492 TB",
2193 + "Intf": "SATA",
2194 + "Med": "SSD",
2195 + "SED": "-",
2196 + "PI": "-",
2197 + "SeSz": "512B",
2198 + "Model": "KINGSTON SEDC600M3840G",
2199 + "Sp": "-"
2200 + }
2201 + ],
2202 + "Drive /c0/e30/s11 - Detailed Information": {
2203 + "Drive /c0/e30/s11 State": {
2204 + "Shield Counter": "N/A",
2205 + "Media Error Count": "N/A",
2206 + "Other Error Count": "N/A",
2207 + "Predictive Failure Count": "N/A",
2208 + "S.M.A.R.T alert flagged by drive": "N/A"
2209 + },
2210 + "Drive /c0/e30/s11 Device attributes": {
2211 + "Manufacturer Id": "ATA ",
2212 + "Model Number": "KINGSTON SEDC600M3840G",
2213 + "NAND Vendor": "NA",
2214 + "SN": "REDACTED ",
2215 + "WWN": "REDACTED",
2216 + "Firmware Revision": "SCEKH5.1",
2217 + "Raw size": "3.492 TB [0x1bf1f72af Sectors]",
2218 + "Coerced size": "3.492 TB [0x1bf1f72af Sectors]",
2219 + "Non Coerced size": "3.492 TB [0x1bf1f72af Sectors]",
2220 + "Device Speed": "6.0Gb/s",
2221 + "Link Speed": "12.0Gb/s",
2222 + "NCQ setting": "N/A",
2223 + "Sector Size": "512B",
2224 + "Config ID": "NA",
2225 + "Number of Blocks": 7501476527,
2226 + "Connector Name": "C0 & C1 "
2227 + },
2228 + "Drive /c0/e30/s11 Policies/Settings": {
2229 + "Enclosure position": "1",
2230 + "Connected Port Number": "0(path0) ",
2231 + "Sequence Number": 0,
2232 + "Commissioned Spare": "No",
2233 + "Emergency Spare": "No",
2234 + "Last Predictive Failure Event Sequence Number": "N/A",
2235 + "Successful diagnostics completion on": "N/A",
2236 + "SED Capable": "N/A",
2237 + "SED Enabled": "N/A",
2238 + "Secured": "N/A",
2239 + "Needs EKM Attention": "N/A",
2240 + "PI Eligible": "N/A",
2241 + "Certified": "N/A",
2242 + "Wide Port Capable": "N/A",
2243 + "Multipath": "No",
2244 + "Port Information": [
2245 + {
2246 + "Port": 0,
2247 + "Status": "Active",
2248 + "Linkspeed": "12.0Gb/s",
2249 + "SAS address": "0x5003048020e87d4b"
2250 + }
2251 + ]
2252 + },
2253 + "Inquiry Data": "40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00 00 00 00 00 30 35 32 30 42 36 32 37 32 38 38 46 32 44 37 34 20 20 20 20 00 00 00 00 00 00 43 53 4b 45 35 48 31 2e 49 4b 47 4e 54 53 4e 4f 53 20 44 45 36 43 30 30 33 4d 34 38 47 30 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80 00 40 00 2f 00 40 00 00 00 00 07 00 ff 3f 10 00 3f 00 10 fc fb 00 10 01 ff ff ff 0f 00 00 07 00 "
2254 + }
2255 + }
2256 + }
2257 + }
2258 + ]
2259 +}
2260 +
src/health/health.d/storcli.conf
+4 -4
@@ -2,18 +2,18 @@
2
3 # Controllers
4
5 - template: storcli_controller_status
6 - on: storcli.controller_status
5 + template: storcli_controller_health_status
6 + on: storcli.controller_health_status
7 class: Errors
8 type: System
9 component: RAID
10 - lookup: average -1m unaligned percentage of optimal
10 + lookup: average -1m unaligned percentage of healthy
11 units: %
12 every: 10s
13 crit: $this < 100
14 delay: down 5m multiplier 2 max 10m
15 summary: RAID controller ${label:controller_number} health
16 - info: RAID controller ${label:controller_number} health status is not optimal
16 + info: RAID controller ${label:controller_number} is unhealthy
17 to: sysadmin
18
19 template: storcli_controller_bbu_status