-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
125 lines (113 loc) · 4.53 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>RAID rebuild failure chance calculator.</title>
<!-- Bootstrap core CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="stylesheets/cover.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="inner cover">
<h1 class="cover-heading">RAID rebuild failure chance calculator.</h1>
<p>This calculator determines the chance of a RAID rebuild failing due to an unrecoverable read error. The calculator makes a <a style="font-weight: bold" href="http://www.raidtips.com/raid5-ure.aspx">number of assumptions.</a></p>
<p>Other types of drive errors and failures are not considered as part of this calculator.</p>
<form id="failchanceform" class="form-horizontal" role="form">
<div class="form-group">
<label for="raidtype" class="col-sm-3 control-label">Type</label>
<div class="col-sm-9">
<select id="raidtype" class="form-control">
<option>RAID 5</option>
<option>RAID 6</option>
</select>
</div>
</div>
<div class="form-group">
<label for="drivesize" class="col-sm-3 control-label">Drive Size (GB)</label>
<div class="col-sm-9">
<select id="drivesize" class="form-control">
<option value="500">500 GB</option>
<option value="750">750 GB</option>
<option value="1000">1 TB</option>
<option value="1500">1.5 TB</option>
<option value="2000">2 TB</option>
<option value="3000">3 TB</option>
<option value="4000" selected>4 TB</option>
<option value="5000">5 TB</option>
<option value="6000">6 TB</option>
<option value="8000">8 TB</option>
<option value="10000">10 TB</option>
<option value="12000">12 TB</option>
</select>
</div>
</div>
<div class="form-group">
<label for="drivecount" class="col-sm-3 control-label">Number of Drives</label>
<div class="col-sm-9">
<select id="drivecount" class="form-control">
<option>3</option>
<option>4</option>
<option>5</option>
<option selected>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>14</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
</select>
</div>
</div>
<div class="form-group">
<label for="ureaverage" class="col-sm-3 control-label">Unrecoverable read error rate</label>
<div class="col-sm-9">
<select id="ureaverage" class="form-control">
<option value="9">10 ^ 9</option>
<option value="10">10 ^ 10</option>
<option value="11">10 ^ 11</option>
<option value="12">10 ^ 12</option>
<option value="13">10 ^ 13</option>
<option value="14" selected>10 ^ 14</option>
<option value="15">10 ^ 15</option>
<option value="16">10 ^ 16</option>
<option value="17">10 ^ 17</option>
</select>
</div>
</div>
</form>
<p class="lead">Errorless rebuild success chance:</p>
<p id="resultspan"></p>
</div>
<div class="mastfoot">
<div class="inner">
<p>Project maintained by <a href="https://github.com/magJ">magJ</a></p>
<p>For any suggestions or corrections <a href="https://github.com/magJ/raid-failure">View the Project on GitHub <small>magJ/raid-failure</small></a></p>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="javascripts/raidcalc.js" type="text/javascript"></script>
</body>
</html>