- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for drives_count (0.06 sec)
-
cmd/metrics-v3-cluster-health.go
package cmd import "context" const ( healthDrivesOfflineCount = "drives_offline_count" healthDrivesOnlineCount = "drives_online_count" healthDrivesCount = "drives_count" ) var ( healthDrivesOfflineCountMD = NewGaugeMD(healthDrivesOfflineCount, "Count of offline drives in the cluster") healthDrivesOnlineCountMD = NewGaugeMD(healthDrivesOnlineCount,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Mar 10 09:15:15 UTC 2024 - 3.9K bytes - Viewed (0) -
internal/config/storageclass/storage-class_test.go
} // Set env var for test case 6 if i+1 == 6 { scfg.Standard.Parity = 7 } parity := scfg.GetParityForSC(tt.sc) if (tt.drivesCount - parity) != tt.expectedData { t.Errorf("Test %d, Expected data drives %d, got %d", i+1, tt.expectedData, tt.drivesCount-parity) continue } if parity != tt.expectedParity { t.Errorf("Test %d, Expected parity drives %d, got %d", i+1, tt.expectedParity, parity) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 15 23:04:20 UTC 2023 - 4.3K bytes - Viewed (0) -
cmd/metrics-v3-system-drive.go
driveWaitingIO = "waiting_io" driveAPILatencyMicros = "api_latency_micros" driveHealth = "health" driveOfflineCount = "offline_count" driveOnlineCount = "online_count" driveCount = "count" // iostat related driveReadsPerSec = "reads_per_sec" driveReadsKBPerSec = "reads_kb_per_sec" driveReadsAwait = "reads_await" driveWritesPerSec = "writes_per_sec"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun May 12 17:23:50 UTC 2024 - 7.9K bytes - Viewed (0)