188 | | The experiment script generates a lot of data that contains not only results, but also information useful for debugging. This detailed output of the experiment along with iperf's output are aggregated on the console in a log file: /tmp/''Experiment ID''.log |
| 188 | Data is collected during the experiment and pushed to an OML server running on the domain's console and is identified using the ''<Experiment ID>'' indicated during the initiation and conclusion of each experiment. This ID is important, as it is used to recover experiment results and even view them in real-time. (Server names vary with test beds. This server name is specific to ORBIT.) |
| 189 | |
| 190 | To recover experiment data to the local machine, and using the experiment ID: |
| 191 | |
| 192 | {{{ |
| 193 | wget "http://oml:5054/result/dumpDatabase?expID=<your_experiment_ID>" -O myDatabase |
| 194 | }}} |
| 195 | |
| 196 | * If the experiment ID contains non-alphanumeric ASCII characters, it is necessary to escape each of them using "%" followed by the ASCII code. |
| 197 | |
| 198 | You're almost done. In order to get SQLite to recognize the database, it first must be told that the information '''is''' a database. |
| 199 | |
| 200 | {{{ |
| 201 | sqlite3 -init myDatabase myDatabase.sq3 |
| 202 | }}} |
| 203 | |
| 204 | You can also view the results in a web browser by visiting the following URL: |
| 205 | {{{ |
| 206 | http://console.sb4.orbit-lab.org:5054/result/dumpDatabase?expID=<your_experiment_ID> |
| 207 | }}} |
| 208 | |
| 209 | TODO |
| 210 | |
| 211 | The experiment script generates a lot of data that contains not only results, but also information useful for debugging. This detailed output of the experiment along with iperf's output are aggregated on the console in a log file: /tmp/''<Experiment ID>''.log |