|
1 | 1 | <?php
|
2 | 2 |
|
| 3 | +$runCols = array('iters', 'params', 'mean_time', 'mean_memory_diff', 'mean_rps', 'variance_time', 'deviation_min'); |
| 4 | +$subjectCols = array('iters', 'description', 'mean_time', 'mean_memory_diff', 'mean_rps', 'variance_time', 'deviation_min'); |
| 5 | + |
3 | 6 | $config->addReport(array(
|
4 | 7 | 'title' => 'Inserting Nodes',
|
5 | 8 | 'description' => 'Insert nodes into the repository as children of a single parent',
|
6 | 9 | 'name' => 'console_table',
|
7 | 10 | 'groups' => array('insert'),
|
8 | 11 | 'aggregate' => 'run',
|
9 |
| - 'cols' => array('iters', 'params', 'mean_time', 'mean_memory_diff', 'mean_rps', 'deviation_min'), |
10 |
| - 'sort' => 'time', |
| 12 | + 'cols' => $runCols, |
| 13 | + 'sort' => array('time'), |
11 | 14 | ));
|
12 | 15 |
|
13 | 16 | $config->addReport(array(
|
|
21 | 24 | 'name' => 'console_table',
|
22 | 25 | 'groups' => array('query_single_prop'),
|
23 | 26 | 'aggregate' => 'subject',
|
24 |
| - 'cols' => array('iters', 'description', 'variance_time', 'mean_time', 'mean_memory_diff', 'mean_rps', 'deviation_min'), |
25 |
| - 'sort' => 'time', |
| 27 | + 'cols' => $subjectCols, |
| 28 | + 'sort' => array('time'), |
26 | 29 | ));
|
27 | 30 |
|
28 | 31 | $config->addReport(array(
|
|
37 | 40 | 'groups' => array('query_variable_props'),
|
38 | 41 | 'aggregate' => 'run',
|
39 | 42 | 'subject_meta' => false,
|
40 |
| - 'cols' => array('params', 'iters', 'mean_time', 'variance_time', 'mean_rps', 'deviation_min'), |
| 43 | + 'cols' => $runCols, |
41 | 44 | ));
|
42 | 45 |
|
43 | 46 | $config->addReport(array(
|
|
48 | 51 | ,
|
49 | 52 | 'name' => 'console_table',
|
50 | 53 | 'groups' => array('traversal_full'),
|
51 |
| - 'cols' => array('pid', 'iter', 'time', 'rps', 'memory', 'deviation_mean'), |
| 54 | + 'cols' => array('pid', 'iter', 'time', 'rps', 'memory_diff', 'deviation_mean'), |
52 | 55 | ));
|
0 commit comments