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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cockpit Speed Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="speed.css" type="text/css" rel="stylesheet">
<script src="../base1/cockpit.js"></script>
<script src="speed.js"></script>
</head>
<body class="pf-m-redhat-font" hidden>
<div class="pf-c-page">
<main class="pf-c-page__main" tabindex="-1">
<section class="pf-c-page__main-section pf-m-light">
<h1>Speed Tests</h1>
<table>
<tbody>
<tr>
<td><label class="control-label">Speed: </label></td>
<td> <label id="speed"></label></td>
</tr>
<tr>
<td><label class="control-label">Process ID: </label></td>
<td> <label id="pid"></label></td>
</tr>
<tr>
<td><label class="control-label">Bridge Memory: </label></td>
<td> <label id="memory"></label></td>
</tr>
</tbody>
</table>
<p><button class="pf-c-button pf-m-secondary pf-m-primary" id="stop">Stop</button></p>
<h2>Echo Tests</h2>
<table>
<tbody>
<tr>
<td><label class="control-label" for="message">Message</label></td>
<td><input class="form-control" id="message" value="100000"></td>
</tr>
<tr>
<td><label class="control-label" for="batch">Batch</label></td>
<td><input class="form-control" id="batch" value="1"></td>
</tr>
<tr>
<td><label class="control-label" for="interval">Interval</label></td>
<td><input class="form-control" id="interval" value="100"></td>
</tr>
<tr>
<td><label class="control-label" for="binary">Binary</label></td>
<td><input type="checkbox" id="binary"></td>
</tr>
<tr>
<td><button class="pf-c-button pf-m-secondary pf-m-primary" id="echo-normal">Normal Channel</button></td>
<td><button class="pf-c-button pf-m-secondary pf-m-primary" id="echo-sideband">Sideband Channel</button></td>
</tr>
</tbody>
</table>
</section>
<section class="pf-c-page__main-section pf-m-light">
<h1>Read Test</h1>
<table>
<tbody>
<tr>
<td><label class="control-label" for="message">Path</label></td>
<td><input class="form-control" id="read-path" value="/dev/sda"></td>
</tr>
<tr>
<td><button class="pf-c-button pf-m-secondary pf-m-primary" id="read-normal">Normal Channel</button></td>
<td><button class="pf-c-button pf-m-secondary pf-m-primary" id="read-sideband">Sideband Channel</button></td>
</tr>
</tbody>
</table>
</section>
<section class="pf-c-page__main-section pf-m-light">
<h1>Download Test</h1>
<table>
<tbody>
<tr>
<td><label class="control-label" for="message">Path</label></td>
<td><input class="form-control" id="download-path" value="/dev/sda"></td>
</tr>
<tr>
<td><button class="pf-c-button pf-m-secondary pf-m-primary" id="download-external">External Download</button></td>
</tr>
</tbody>
</table>
</section>
<section class="pf-c-page__main-section pf-m-light">
<h1>spawn test</h1>
<table>
<tbody>
<tr>
<td><label class="control-label" for="spawn">command</label></td>
<td><input class="form-control" id="spawn-command" value="seq 1000000"></td>
</tr>
<tr>
<td><label class="control-label" for="spawn-result">result</label></td>
<td><label class="form-control" id="spawn-result"></label>
</tr>
<tr>
<td><label class="control-label" for="spawn-output">output block</label></td>
<td><pre id="spawn-output"></pre>
</tr>
<tr>
<td><button class="pf-c-button pf-m-secondary pf-m-primary" id="spawn">spawn command</button></td>
</tr>
</tbody>
</table>
</section>
</main>
</div>
</body>
</html>
|