[[TOC(heading=Tutorial TOC, Tutorials, Tutorials/AnalyzeResults, depth=2)]] [wiki:Tutorials Back] = Analyzing Results = It is important to understand how measurements were collected and organized to be able to interpret them. The [wiki:Documentation/OML ORBIT Measurement Framework] provides tools to insert points to tap available information and to effectively collect that information in a timely manner. The [wiki:Software/dOML/CollectingMeasurements previous part] of this tutorial presented information about defining and setting up this information collection points. The collected information and measurements are then stored in a [http://www.mysql.com MySQL] database. After the experiment completion, the user have access to the generated experiment database. In general, the results of a given experiment are stored in a single database (users can use more than one databases if required). Different participating nodes populate different tables of this generated database. Usually, user would like to post-process or visualize those raw measurements for further analysis. A number of different tools are available to interpret experimental results. The choice of tools depends upon their availability on your platform, the nature of the measurements, and your own preferences. Excel and Matlab connections from machines outside Winlab to our database server are blocked by a firewall. We are working on a system to safely and securely export databases using these tools outside Winlab. Until then, please use any of the other following approaches to retrieve your data. ''Note: Currently all databases share the same credentials'' - '''Username and Password: orbit''' [[BR]] == 1. Using MySQL Client == The easiest way to access your data is by manipulating the database directly with the MySQL Client. From a terminal session on ''gateway.orbit-lab.org'' (or any of the consoles), you may access your database by issuing the following commands from the command line: {{{ $ mysql -h idb1 -u orbit -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 153 to server version: 4.1.15-Debian_1-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> use ; }}} Standard MySQL queries can then be made to manipulate your data. A brief tutorial on how to use MySQL can be found [http://dev.mysql.com/doc/refman/4.1/en/index.html here]. The database name is your experiment ID and is displayed by the nodehandler in the first few lines of your experiment run. It will look something like this: {{{ INFO init: Experiment ID: sb5_2006_01_17_11_45_23 }}} [[BR]] == 2. Using Perl scripts == You can use the following sample Perl script to retrieve the content of a particular table from your experiment database: {{{ #! /usr/bin/perl # # Script: getdata.pl # A simple script that gets all the rows from a single table in the database. # # ./getdata.pl # # Example: ./getdata.pl zmac1_2005_04_28_00_46_10 sender_otg_senderport out.txt # # To use this script replace the XXXX in DBUSER and DBPASS # with correct username and password for idb1. # # use DBI(); $DBHOST = "idb1"; $DBNAME = $ARGV[0]; $DBUSER = "XXXX"; $DBPASS = "XXXX"; $QUERY = "select * from $ARGV[1]"; $OUTFILE = $ARGV[2]; $dsn = "DBI:mysql:database=$DBNAME;host=$DBHOST"; #Connect to the DB $dbh = DBI->connect($dsn, $DBUSER, $DBPASS, {'RaiseError' => 1}); # Prepare and execute query my $qry = $dbh->prepare($QUERY); $qry->execute(); open(out, ">$OUTFILE"); #Print the column names print out "@{$qry->{'NAME'}} \n"; #Print the data while (my @ref = $qry->fetchrow()) { print out "@ref \n"; } $qry->finish(); # Disconnect from the database. $dbh->disconnect(); }}} A more specific Perl script for OTG/OTR application can be found [wiki:Old/Documentation/OTG/Measurement/DatabaseProcess here] [[BR]] == 3. Using Microsoft Excel == Microsoft Excel can be used to analyze an experiment as shown below. [[Image(Excelexample.PNG)]] The user could import MySQL database to Microsoft Excel and use chart and other tools to analyze the measurements. [[BR]] == 4. Using Matlab == Matlab is another tool can be used. It should be noted that this assumes you have [http://www.die.net/doc/linux/man/man1/mysqldump.1.html exported] the database off of ORBIT and imported to your own MySQL server. {{{ function nsf(dbServer, dbUser, dbPW, database); % Part where we retrieve data from the database; mysql('open',dbServer, dbUser, dbPW); mysql('use', database); output = struct('time',[],'thr_all',[],'node',[]); [output.time, output.thr_all, output.node] = mysql('select timestamp, throughput, node_id from group2'); [thru1_4, time1_4, thru3_1, time3_1] = sort_mysql(output); % Finally, the plotting part subplot(2,1,1); plot(time1_4, thru1_4, '-*'); title('Throughput On Obstructed Link'); xlabel('Time (sec)'); ylabel('Throuhput (bps)'); grid on; subplot(2,1,2); plot(time3_1, thru3_1, '-*'); title('Throughput On Monitor Node'); xlabel('Time (sec)'); ylabel('Throuhput (bps)'); grid on; }}} And the resulting graph is show below: [[Image(Matlabexample.PNG)]]