ipynb/utils: Update Executor example notebook
diff --git a/ipynb/utils/executor_example.ipynb b/ipynb/utils/executor_example.ipynb
index c11e4a0..ff891f6 100644
--- a/ipynb/utils/executor_example.ipynb
+++ b/ipynb/utils/executor_example.ipynb
@@ -52,6 +52,7 @@
     "#import devlib\n",
     "#from env import TestEnv\n",
     "\n",
+    "from env import TestEnv\n",
     "from executor import Executor"
    ]
   },
@@ -68,10 +69,41 @@
    "metadata": {
     "collapsed": false
    },
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "06:16:08  INFO    :         Target - Using base path: /home/bjackman/sources/lisa\n",
+      "06:16:08  INFO    :         Target - Loading custom (inline) target configuration\n",
+      "06:16:08  INFO    :         Target - Devlib modules to load: ['bl', 'cpufreq']\n",
+      "06:16:08  INFO    :         Target - Connecting linux target:\n",
+      "06:16:08  INFO    :         Target -   username : brendan\n",
+      "06:16:08  INFO    :         Target -       host : 192.168.0.1\n",
+      "06:16:08  INFO    :         Target -   password : \n",
+      "06:16:08  INFO    :         Target - Connection settings:\n",
+      "06:16:08  INFO    :         Target -    {'username': 'brendan', 'host': '192.168.0.1', 'password': ''}\n",
+      "06:16:14  INFO    :         Target - Initializing target workdir:\n",
+      "06:16:14  INFO    :         Target -    /home/brendan/devlib-target\n",
+      "06:16:18  INFO    :         Target - Topology:\n",
+      "06:16:18  INFO    :         Target -    [[0, 3, 4, 5], [1, 2]]\n",
+      "06:16:23  INFO    :         FTrace - Enabled tracepoints:\n",
+      "06:16:23  INFO    :         FTrace -   sched_switch\n",
+      "06:16:23  INFO    :         FTrace -   sched_wakeup\n",
+      "06:16:23  INFO    :         FTrace -   sched_wakeup_new\n",
+      "06:16:23  INFO    :         FTrace -   cpu_frequency\n",
+      "06:16:23  WARNING :        TestEnv - Wipe previous contents of the results folder:\n",
+      "06:16:23  WARNING :        TestEnv -    /home/bjackman/sources/lisa/results/ExecutorExample\n",
+      "06:16:23  INFO    :        TestEnv - Set results folder to:\n",
+      "06:16:23  INFO    :        TestEnv -    /home/bjackman/sources/lisa/results/ExecutorExample\n",
+      "06:16:23  INFO    :        TestEnv - Experiment results available also in:\n",
+      "06:16:23  INFO    :        TestEnv -    /home/bjackman/sources/lisa/results_latest\n"
+     ]
+    }
+   ],
    "source": [
     "# Setup a target configuration\n",
-    "my_target_conf = {\n",
+    "env = TestEnv({\n",
     "    \n",
     "    # Target platform and board\n",
     "    \"platform\"    : 'linux',\n",
@@ -81,10 +113,31 @@
     "    \"host\"        : '192.168.0.1',\n",
     "    \n",
     "    # Login credentials\n",
-    "    \"username\"    : 'root',\n",
-    "    \"password\"    : 'test0000',\n",
+    "    \"username\"    : 'brendan',\n",
+    "    \"password\"    : '',\n",
+    "        \n",
+    "    # Folder where all the results will be collected\n",
+    "    \"results_dir\" : \"ExecutorExample\",\n",
+    "        \n",
+    "    # FTrace events to collect for all the tests configuration which have\n",
+    "    # the \"ftrace\" flag enabled\n",
+    "    \"ftrace\"  : {\n",
+    "         \"events\" : [\n",
+    "            \"sched_switch\",\n",
+    "            \"sched_wakeup\",\n",
+    "            \"sched_wakeup_new\",\n",
+    "            \"cpu_frequency\",\n",
+    "         ],\n",
+    "         \"buffsize\" : 80 * 1024,\n",
+    "    },\n",
+    "            \n",
+    "    # Tools required by the experiments\n",
+    "    \"tools\"   : [ 'trace-cmd', 'perf' ],\n",
+    "    \n",
+    "    # Modules required by these experiments\n",
+    "    \"modules\"     : [ 'bl', 'cpufreq' ],\n",
     "\n",
-    "}"
+    "})"
    ]
   },
   {
@@ -96,18 +149,34 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 4,
+   "execution_count": null,
    "metadata": {
     "collapsed": false,
     "scrolled": false
    },
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "06:16:23  INFO    :         Target - Loading custom (inline) test configuration\n",
+      "06:16:23  INFO    : \n",
+      "06:16:23  INFO    : ################################################################################\n",
+      "06:16:23  INFO    :       Executor - Experiments configuration\n",
+      "06:16:23  INFO    : ################################################################################\n",
+      "06:16:23  INFO    :       Executor - Configured to run:\n",
+      "06:16:23  INFO    :       Executor -     2 target configurations:\n",
+      "06:16:23  INFO    :       Executor -       base, eas\n",
+      "06:16:23  INFO    :       Executor -     2 workloads (1 iterations each)\n",
+      "06:16:23  INFO    :       Executor -       rta, perf\n",
+      "06:16:23  INFO    :       Executor - Total: 4 experiments\n",
+      "06:16:23  INFO    :       Executor - Results will be collected under:\n",
+      "06:16:23  INFO    :       Executor -       /home/bjackman/sources/lisa/results/ExecutorExample\n"
+     ]
+    }
+   ],
    "source": [
-    "my_tests_conf = {\n",
-    "\n",
-    "    # Folder where all the results will be collected\n",
-    "    \"results_dir\" : \"ExecutorExample\",\n",
-    "\n",
+    "executor = Executor(env, {\n",
     "    # Platform configurations to test\n",
     "    \"confs\" : [\n",
     "        {\n",
@@ -151,7 +220,7 @@
     "                \"class\"  : \"profile\",\n",
     "                \"params\"  : {\n",
     "                    \"p20\" : {\n",
-    "                        \"kind\"   : \"periodic\",\n",
+    "                        \"kind\"   : \"Periodic\",\n",
     "                        \"params\" : {\n",
     "                            \"duty_cycle_pct\" : 20,\n",
     "                         },\n",
@@ -163,26 +232,7 @@
     "    \n",
     "    # Number of iterations for each workload\n",
     "    \"iterations\" : 1,\n",
-    "    \n",
-    "    # FTrace events to collect for all the tests configuration which have\n",
-    "    # the \"ftrace\" flag enabled\n",
-    "    \"ftrace\"  : {\n",
-    "         \"events\" : [\n",
-    "            \"sched_switch\",\n",
-    "            \"sched_wakeup\",\n",
-    "            \"sched_wakeup_new\",\n",
-    "            \"cpu_frequency\",\n",
-    "         ],\n",
-    "         \"buffsize\" : 80 * 1024,\n",
-    "    },\n",
-    "    \n",
-    "    # Tools required by the experiments\n",
-    "    \"tools\"   : [ 'trace-cmd', 'perf' ],\n",
-    "    \n",
-    "    # Modules required by these experiments\n",
-    "    \"modules\"     : [ 'bl', 'cpufreq' ],\n",
-    "\n",
-    "}"
+    "})"
    ]
   },
   {
@@ -194,7 +244,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 5,
+   "execution_count": null,
    "metadata": {
     "collapsed": false
    },
@@ -203,138 +253,79 @@
      "name": "stderr",
      "output_type": "stream",
      "text": [
-      "10:22:10  INFO    :         Target - Loading custom (inline) test configuration\n",
-      "10:22:10  INFO    :         Target - Using base path: /home/derkling/Code/lisa\n",
-      "10:22:10  INFO    :         Target - Loading custom (inline) target configuration\n",
-      "10:22:10  INFO    :         Target - Loading custom (inline) test configuration\n",
-      "10:22:10  INFO    :         Target - Devlib modules to load: ['bl', 'cpufreq']\n",
-      "10:22:10  INFO    :         Target - Connecting linux target:\n",
-      "10:22:10  INFO    :         Target -   username : root\n",
-      "10:22:10  INFO    :         Target -       host : 192.168.0.1\n",
-      "10:22:10  INFO    :         Target -   password : test0000\n",
-      "10:22:15  INFO    :         Target - Initializing target workdir:\n",
-      "10:22:15  INFO    :         Target -    /root/devlib-target\n",
-      "10:22:21  INFO    :         Target - Topology:\n",
-      "10:22:21  INFO    :         Target -    [[0, 3, 4, 5], [1, 2]]\n",
-      "10:22:25  INFO    :         FTrace - Enabled tracepoints:\n",
-      "10:22:25  INFO    :         FTrace -   sched_switch\n",
-      "10:22:25  INFO    :         FTrace -   sched_wakeup\n",
-      "10:22:25  INFO    :         FTrace -   sched_wakeup_new\n",
-      "10:22:25  INFO    :         FTrace -   cpu_frequency\n",
-      "10:22:25  INFO    :        TestEnv - Set results folder to:\n",
-      "10:22:25  INFO    :        TestEnv -    /home/derkling/Code/lisa/results/ExecutorExample\n",
-      "10:22:25  INFO    :        TestEnv - Experiment results available also in:\n",
-      "10:22:25  INFO    :        TestEnv -    /home/derkling/Code/lisa/results_latest\n",
-      "10:22:25  INFO    : \n",
-      "10:22:25  INFO    : ################################################################################\n",
-      "10:22:25  INFO    :       Executor - Experiments configuration\n",
-      "10:22:25  INFO    : ################################################################################\n",
-      "10:22:25  INFO    :       Executor - Configured to run:\n",
-      "10:22:25  INFO    :       Executor -     2 targt configurations:\n",
-      "10:22:25  INFO    :       Executor -       base, eas\n",
-      "10:22:25  INFO    :       Executor -     2 workloads (1 iterations each)\n",
-      "10:22:25  INFO    :       Executor -       rta, perf\n",
-      "10:22:25  INFO    :       Executor - Total: 4 experiments\n",
-      "10:22:25  INFO    :       Executor - Results will be collected under:\n",
-      "10:22:25  INFO    :       Executor -       /home/derkling/Code/lisa/results/ExecutorExample\n"
-     ]
-    }
-   ],
-   "source": [
-    "executor = Executor(my_target_conf, my_tests_conf)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {
-    "collapsed": false
-   },
-   "outputs": [
-    {
-     "name": "stderr",
-     "output_type": "stream",
-     "text": [
-      "10:22:25  INFO    : \n",
-      "10:22:25  INFO    : ################################################################################\n",
-      "10:22:25  INFO    :       Executor - Experiments execution\n",
-      "10:22:25  INFO    : ################################################################################\n",
-      "10:22:25  INFO    : \n",
-      "10:22:25  INFO    : ================================================================================\n",
-      "10:22:25  INFO    :   TargetConfig - configuring target for [base] experiments\n",
-      "10:22:27  INFO    :  SchedFeatures - Set scheduler feature: NO_ENERGY_AWARE\n",
-      "10:22:27  INFO    :        CPUFreq - Configuring all CPUs to use [performance] governor\n",
-      "10:22:27  INFO    :          WlGen - Setup new workload rta\n",
-      "10:22:27  INFO    :          RTApp - Workload duration defined by longest task\n",
-      "10:22:27  INFO    :          RTApp - Default policy: SCHED_OTHER\n",
-      "10:22:27  INFO    :          RTApp - ------------------------\n",
-      "10:22:27  INFO    :          RTApp - task [task_p20], sched: using default policy\n",
-      "10:22:27  INFO    :          RTApp -  | calibration CPU: 1\n",
-      "10:22:27  INFO    :          RTApp -  | loops count: 1\n",
-      "10:22:27  INFO    :          RTApp - + phase_000001: duration 1.000000 [s] (10 loops)\n",
-      "10:22:27  INFO    :          RTApp - |  period   100000 [us], duty_cycle  20 %\n",
-      "10:22:27  INFO    :          RTApp - |  run_time  20000 [us], sleep_time  80000 [us]\n",
-      "10:22:28  INFO    : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n",
-      "10:22:28  INFO    :       Executor - Experiment 1/4, [base:rta] 1/1\n",
-      "10:22:28  WARNING :       Executor - FTrace events collection enabled\n",
-      "10:22:34  INFO    :          WlGen - Workload execution START:\n",
-      "10:22:34  INFO    :          WlGen -    /root/devlib-target/bin/rt-app /root/devlib-target/run_dir/rta_00.json\n",
-      "10:22:43  INFO    :       Executor - Collected FTrace binary trace:\n",
-      "10:22:43  INFO    :       Executor -    <res_dir>/rtapp:base:rta/1/trace.dat\n",
-      "10:22:43  INFO    :       Executor - Collected FTrace function profiling:\n",
-      "10:22:43  INFO    :       Executor -    <res_dir>/rtapp:base:rta/1/trace_stat.json\n",
-      "10:22:43  INFO    :          WlGen - Setup new workload perf\n",
-      "10:22:43  INFO    : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n",
-      "10:22:43  INFO    :       Executor - Experiment 2/4, [base:perf] 1/1\n",
-      "10:22:43  WARNING :       Executor - FTrace events collection enabled\n",
-      "10:22:49  INFO    :          WlGen - Workload execution START:\n",
-      "10:22:49  INFO    :          WlGen -    /root/devlib-target/bin/perf bench sched messaging --pipe --thread --group 1 --loop 10\n",
-      "10:22:50  INFO    :      PerfBench - Completion time: 0.088000, Performance 11.363636\n",
-      "10:22:57  INFO    :       Executor - Collected FTrace binary trace:\n",
-      "10:22:57  INFO    :       Executor -    <res_dir>/perf_bench_messaging:base:perf/1/trace.dat\n",
-      "10:22:57  INFO    :       Executor - Collected FTrace function profiling:\n",
-      "10:22:57  INFO    :       Executor -    <res_dir>/perf_bench_messaging:base:perf/1/trace_stat.json\n",
-      "10:22:57  INFO    : \n",
-      "10:22:57  INFO    : ================================================================================\n",
-      "10:22:57  INFO    :   TargetConfig - configuring target for [eas] experiments\n",
-      "10:22:59  INFO    :  SchedFeatures - Set scheduler feature: ENERGY_AWARE\n",
-      "10:22:59  INFO    :        CPUFreq - Configuring all CPUs to use [performance] governor\n",
-      "10:22:59  INFO    :          WlGen - Setup new workload rta\n",
-      "10:22:59  INFO    :          RTApp - Workload duration defined by longest task\n",
-      "10:22:59  INFO    :          RTApp - Default policy: SCHED_OTHER\n",
-      "10:22:59  INFO    :          RTApp - ------------------------\n",
-      "10:22:59  INFO    :          RTApp - task [task_p20], sched: using default policy\n",
-      "10:22:59  INFO    :          RTApp -  | calibration CPU: 1\n",
-      "10:22:59  INFO    :          RTApp -  | loops count: 1\n",
-      "10:22:59  INFO    :          RTApp - + phase_000001: duration 1.000000 [s] (10 loops)\n",
-      "10:22:59  INFO    :          RTApp - |  period   100000 [us], duty_cycle  20 %\n",
-      "10:22:59  INFO    :          RTApp - |  run_time  20000 [us], sleep_time  80000 [us]\n",
-      "10:23:00  INFO    : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n",
-      "10:23:00  INFO    :       Executor - Experiment 3/4, [eas:rta] 1/1\n",
-      "10:23:00  WARNING :       Executor - FTrace events collection enabled\n",
-      "10:23:06  INFO    :          WlGen - Workload execution START:\n",
-      "10:23:06  INFO    :          WlGen -    /root/devlib-target/bin/rt-app /root/devlib-target/run_dir/rta_00.json\n",
-      "10:23:16  INFO    :       Executor - Collected FTrace binary trace:\n",
-      "10:23:16  INFO    :       Executor -    <res_dir>/rtapp:eas:rta/1/trace.dat\n",
-      "10:23:16  INFO    :       Executor - Collected FTrace function profiling:\n",
-      "10:23:16  INFO    :       Executor -    <res_dir>/rtapp:eas:rta/1/trace_stat.json\n",
-      "10:23:16  INFO    :          WlGen - Setup new workload perf\n",
-      "10:23:17  INFO    : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n",
-      "10:23:17  INFO    :       Executor - Experiment 4/4, [eas:perf] 1/1\n",
-      "10:23:17  WARNING :       Executor - FTrace events collection enabled\n",
-      "10:23:22  INFO    :          WlGen - Workload execution START:\n",
-      "10:23:22  INFO    :          WlGen -    /root/devlib-target/bin/perf bench sched messaging --pipe --thread --group 1 --loop 10\n",
-      "10:23:23  INFO    :      PerfBench - Completion time: 0.119000, Performance 8.403361\n",
-      "10:23:31  INFO    :       Executor - Collected FTrace binary trace:\n",
-      "10:23:31  INFO    :       Executor -    <res_dir>/perf_bench_messaging:eas:perf/1/trace.dat\n",
-      "10:23:31  INFO    :       Executor - Collected FTrace function profiling:\n",
-      "10:23:31  INFO    :       Executor -    <res_dir>/perf_bench_messaging:eas:perf/1/trace_stat.json\n",
-      "10:23:31  INFO    : \n",
-      "10:23:31  INFO    : ################################################################################\n",
-      "10:23:31  INFO    :       Executor - Experiments execution completed\n",
-      "10:23:31  INFO    : ################################################################################\n",
-      "10:23:31  INFO    :       Executor - Results available in:\n",
-      "10:23:31  INFO    :       Executor -       /home/derkling/Code/lisa/results/ExecutorExample\n"
+      "06:16:23  INFO    : \n",
+      "06:16:23  INFO    : ################################################################################\n",
+      "06:16:23  INFO    :       Executor - Experiments execution\n",
+      "06:16:23  INFO    : ################################################################################\n",
+      "06:16:23  INFO    : \n",
+      "06:16:23  INFO    : ================================================================================\n",
+      "06:16:23  INFO    :   TargetConfig - configuring target for [base] experiments\n",
+      "06:16:25  INFO    :  SchedFeatures - Set scheduler feature: NO_ENERGY_AWARE\n",
+      "06:16:26  INFO    :        CPUFreq - Configuring all CPUs to use [performance] governor\n",
+      "06:16:27  INFO    :          WlGen - Setup new workload rta\n",
+      "06:16:27  INFO    :          RTApp - Workload duration defined by longest task\n",
+      "06:16:27  INFO    :          RTApp - Default policy: SCHED_OTHER\n",
+      "06:16:27  INFO    :          RTApp - ------------------------\n",
+      "06:16:27  INFO    :          RTApp - task [task_p200], sched: using default policy\n",
+      "06:16:27  INFO    :          RTApp -  | calibration CPU: 1\n",
+      "06:16:27  INFO    :          RTApp -  | loops count: 1\n",
+      "06:16:27  INFO    :          RTApp - + phase_000001: duration 1.000000 [s] (10 loops)\n",
+      "06:16:27  INFO    :          RTApp - |  period   100000 [us], duty_cycle  20 %\n",
+      "06:16:27  INFO    :          RTApp - |  run_time  20000 [us], sleep_time  80000 [us]\n",
+      "06:16:28  INFO    :          WlGen - Setup new workload perf\n",
+      "06:16:28  INFO    : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n",
+      "06:16:28  INFO    :       Executor - Experiment 0/4, [base:rta] 1/1\n",
+      "06:16:28  WARNING :       Executor - FTrace events collection enabled\n",
+      "06:16:36  INFO    :          WlGen - Workload execution START:\n",
+      "06:16:36  INFO    :          WlGen -    /home/brendan/devlib-target/bin/rt-app /home/brendan/devlib-target/run_dir/rta_00.json 2>&1\n",
+      "06:16:44  INFO    :       Executor - Collected FTrace binary trace:\n",
+      "06:16:44  INFO    :       Executor -    <res_dir>/rtapp:base:rta/1/trace.dat\n",
+      "06:16:44  INFO    :       Executor - Collected FTrace function profiling:\n",
+      "06:16:44  INFO    :       Executor -    <res_dir>/rtapp:base:rta/1/trace_stat.json\n",
+      "06:16:44  INFO    : --------------------------------------------------------------------------------\n",
+      "06:16:44  INFO    : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n",
+      "06:16:44  INFO    :       Executor - Experiment 1/4, [base:perf] 1/1\n",
+      "06:16:44  WARNING :       Executor - FTrace events collection enabled\n",
+      "06:16:52  INFO    :          WlGen - Workload execution START:\n",
+      "06:16:52  INFO    :          WlGen -    /home/brendan/devlib-target/bin/perf bench sched messaging --pipe --thread --group 1 --loop 10\n",
+      "06:16:53  INFO    :      PerfBench - Completion time: 0.007000, Performance 142.857143\n",
+      "06:16:58  INFO    :       Executor - Collected FTrace binary trace:\n",
+      "06:16:58  INFO    :       Executor -    <res_dir>/perf_bench_messaging:base:perf/1/trace.dat\n",
+      "06:16:58  INFO    :       Executor - Collected FTrace function profiling:\n",
+      "06:16:58  INFO    :       Executor -    <res_dir>/perf_bench_messaging:base:perf/1/trace_stat.json\n",
+      "06:16:58  INFO    : --------------------------------------------------------------------------------\n",
+      "06:16:58  INFO    : \n",
+      "06:16:58  INFO    : ================================================================================\n",
+      "06:16:58  INFO    :   TargetConfig - configuring target for [eas] experiments\n",
+      "06:17:00  INFO    :  SchedFeatures - Set scheduler feature: ENERGY_AWARE\n",
+      "06:17:01  INFO    :        CPUFreq - Configuring all CPUs to use [performance] governor\n",
+      "06:17:02  INFO    :          WlGen - Setup new workload rta\n",
+      "06:17:02  INFO    :          RTApp - Workload duration defined by longest task\n",
+      "06:17:02  INFO    :          RTApp - Default policy: SCHED_OTHER\n",
+      "06:17:02  INFO    :          RTApp - ------------------------\n",
+      "06:17:02  INFO    :          RTApp - task [task_p200], sched: using default policy\n",
+      "06:17:02  INFO    :          RTApp -  | calibration CPU: 1\n",
+      "06:17:02  INFO    :          RTApp -  | loops count: 1\n",
+      "06:17:02  INFO    :          RTApp - + phase_000001: duration 1.000000 [s] (10 loops)\n",
+      "06:17:02  INFO    :          RTApp - |  period   100000 [us], duty_cycle  20 %\n",
+      "06:17:02  INFO    :          RTApp - |  run_time  20000 [us], sleep_time  80000 [us]\n",
+      "06:17:03  INFO    :          WlGen - Setup new workload perf\n",
+      "06:17:03  INFO    : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n",
+      "06:17:03  INFO    :       Executor - Experiment 0/4, [base:rta] 1/1\n",
+      "06:17:03  WARNING :       Executor - FTrace events collection enabled\n",
+      "06:17:11  INFO    :          WlGen - Workload execution START:\n",
+      "06:17:11  INFO    :          WlGen -    /home/brendan/devlib-target/bin/rt-app /home/brendan/devlib-target/run_dir/rta_00.json 2>&1\n",
+      "06:17:19  INFO    :       Executor - Collected FTrace binary trace:\n",
+      "06:17:19  INFO    :       Executor -    <res_dir>/rtapp:base:rta/1/trace.dat\n",
+      "06:17:19  INFO    :       Executor - Collected FTrace function profiling:\n",
+      "06:17:19  INFO    :       Executor -    <res_dir>/rtapp:base:rta/1/trace_stat.json\n",
+      "06:17:19  INFO    : --------------------------------------------------------------------------------\n",
+      "06:17:19  INFO    : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n",
+      "06:17:19  INFO    :       Executor - Experiment 1/4, [base:perf] 1/1\n",
+      "06:17:19  WARNING :       Executor - FTrace events collection enabled\n",
+      "06:17:27  INFO    :          WlGen - Workload execution START:\n",
+      "06:17:27  INFO    :          WlGen -    /home/brendan/devlib-target/bin/perf bench sched messaging --pipe --thread --group 1 --loop 10\n",
+      "06:17:28  INFO    :      PerfBench - Completion time: 0.034000, Performance 29.411765\n"
      ]
     }
    ],
@@ -353,7 +344,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "\u001b[01;34m/home/derkling/Code/lisa/results/ExecutorExample\u001b[00m\r\n",
+      "\u001b[01;34m/home/brejac01/sources/lisa/results/ExecutorExample\u001b[00m\r\n",
       "├── \u001b[01;34mperf_bench_messaging:base:perf\u001b[00m\r\n",
       "│   ├── \u001b[01;34m1\u001b[00m\r\n",
       "│   │   ├── output.log\r\n",
@@ -374,7 +365,7 @@
       "│   ├── \u001b[01;34m1\u001b[00m\r\n",
       "│   │   ├── output.log\r\n",
       "│   │   ├── rta_00.json\r\n",
-      "│   │   ├── rt-app-task_p20-0.log\r\n",
+      "│   │   ├── rt-app-task_p200-0.log\r\n",
       "│   │   └── trace.dat\r\n",
       "│   ├── kernel.config\r\n",
       "│   ├── kernel.version\r\n",
@@ -383,7 +374,7 @@
       "    ├── \u001b[01;34m1\u001b[00m\r\n",
       "    │   ├── output.log\r\n",
       "    │   ├── rta_00.json\r\n",
-      "    │   ├── rt-app-task_p20-0.log\r\n",
+      "    │   ├── rt-app-task_p200-0.log\r\n",
       "    │   └── trace.dat\r\n",
       "    ├── kernel.config\r\n",
       "    ├── kernel.version\r\n",
@@ -414,7 +405,7 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython2",
-   "version": "2.7.9"
+   "version": "2.7.6"
   }
  },
  "nbformat": 4,