From 1e08a1513318cd234e744f022ea971afd3fb28bc Mon Sep 17 00:00:00 2001 From: "Joseph P. White" Date: Wed, 12 Jun 2019 16:12:44 -0400 Subject: [PATCH 1/3] Update the "Per Job" statistics to support aggregate view mode. --- .../Statistics/AverageCPUHoursStatistic.php | 30 ++++++++++++------- .../Statistics/AverageNodeHoursStatistic.php | 23 +++++++------- .../AverageProcessorCountStatistic.php | 30 ++++++++++++------- ...rmalizedAverageProcessorCountStatistic.php | 26 +++++++++------- 4 files changed, 68 insertions(+), 41 deletions(-) diff --git a/classes/DataWarehouse/Query/Jobs/Statistics/AverageCPUHoursStatistic.php b/classes/DataWarehouse/Query/Jobs/Statistics/AverageCPUHoursStatistic.php index 9f500993f4..e4263e3131 100644 --- a/classes/DataWarehouse/Query/Jobs/Statistics/AverageCPUHoursStatistic.php +++ b/classes/DataWarehouse/Query/Jobs/Statistics/AverageCPUHoursStatistic.php @@ -1,23 +1,33 @@ getQueryType() == 'aggregate') { + $date_table = $query_instance->getDateTable(); + if ($date_table) { + $date_id_field = new TableField($date_table, 'id'); + $job_count = 'CASE ' . $date_id_field . ' WHEN ' . $query_instance->getMinDateId() . ' THEN jf.running_job_count ELSE jf.started_job_count END'; + } + } + + parent::__construct( + "COALESCE(SUM(jf.cpu_time) / SUM($job_count), 0) / 3600.0", + 'avg_cpu_hours', + 'CPU Hours: Per Job', + 'CPU Hour', + 2 + ); } public function getInfo() { return 'The average CPU hours (number of CPU cores x wall time hours) per ' . ORGANIZATION_NAME . ' job.
For each job, the CPU usage is aggregated. For example, if a job used 1000 CPUs for one minute, it would be aggregated as 1000 CPU minutes or 16.67 CPU hours.'; } - - /** - * @see DataWarehouse\Query\Statistic - */ - public function usesTimePeriodTablesForAggregate() - { - return false; - } } diff --git a/classes/DataWarehouse/Query/Jobs/Statistics/AverageNodeHoursStatistic.php b/classes/DataWarehouse/Query/Jobs/Statistics/AverageNodeHoursStatistic.php index f2aee83b70..cbc0b25321 100644 --- a/classes/DataWarehouse/Query/Jobs/Statistics/AverageNodeHoursStatistic.php +++ b/classes/DataWarehouse/Query/Jobs/Statistics/AverageNodeHoursStatistic.php @@ -1,12 +1,23 @@ getQueryType() == 'aggregate') { + $date_table = $query_instance->getDateTable(); + if ($date_table) { + $date_id_field = new TableField($date_table, 'id'); + $job_count = 'CASE ' . $date_id_field . ' WHEN ' . $query_instance->getMinDateId() . ' THEN jf.running_job_count ELSE jf.started_job_count END'; + } + } parent::__construct( - 'COALESCE(SUM(jf.node_time)/SUM(jf.running_job_count),0)/3600.0', + "COALESCE(SUM(jf.node_time) / SUM($job_count), 0) / 3600.0", 'avg_node_hours', 'Node Hours: Per Job', 'Node Hour', @@ -18,12 +29,4 @@ public function getInfo() { return 'The average node hours (number of nodes x wall time hours) per ' . ORGANIZATION_NAME . ' job.'; } - - /** - * @see DataWarehouse\Query\Statistic - */ - public function usesTimePeriodTablesForAggregate() - { - return false; - } } diff --git a/classes/DataWarehouse/Query/Jobs/Statistics/AverageProcessorCountStatistic.php b/classes/DataWarehouse/Query/Jobs/Statistics/AverageProcessorCountStatistic.php index da7097b0cc..c938f44c37 100644 --- a/classes/DataWarehouse/Query/Jobs/Statistics/AverageProcessorCountStatistic.php +++ b/classes/DataWarehouse/Query/Jobs/Statistics/AverageProcessorCountStatistic.php @@ -1,23 +1,33 @@ getQueryType() == 'aggregate') { + $date_table = $query_instance->getDateTable(); + if ($date_table) { + $date_id_field = new TableField($date_table, 'id'); + $job_count = 'CASE ' . $date_id_field . ' WHEN ' . $query_instance->getMinDateId() . ' THEN jf.running_job_count ELSE jf.started_job_count END'; + } + } + + parent::__construct( + "COALESCE(SUM(jf.processor_count * $job_count) / SUM($job_count), 0)", + 'avg_processors', + 'Job Size: Per Job', + 'Core Count', + 1 + ); } public function getInfo() { return 'The average job size per ' . ORGANIZATION_NAME . ' job.
Job Size: The number of processor cores used by a (parallel) job.'; } - - /** - * @see DataWarehouse\Query\Statistic - */ - public function usesTimePeriodTablesForAggregate() - { - return false; - } } diff --git a/classes/DataWarehouse/Query/Jobs/Statistics/NormalizedAverageProcessorCountStatistic.php b/classes/DataWarehouse/Query/Jobs/Statistics/NormalizedAverageProcessorCountStatistic.php index 8d5c758a9e..55dfd8972a 100644 --- a/classes/DataWarehouse/Query/Jobs/Statistics/NormalizedAverageProcessorCountStatistic.php +++ b/classes/DataWarehouse/Query/Jobs/Statistics/NormalizedAverageProcessorCountStatistic.php @@ -1,16 +1,28 @@ getQueryType() == 'aggregate') { + $date_table = $query_instance->getDateTable(); + if ($date_table) { + $date_id_field = new TableField($date_table, 'id'); + $job_count = 'CASE ' . $date_id_field . ' WHEN ' . $query_instance->getMinDateId() . ' THEN jf.running_job_count ELSE jf.started_job_count END'; + } + } + parent::__construct( '100.0 * COALESCE( - SUM(jf.processor_count * jf.running_job_count) + SUM(jf.processor_count * ' . $job_count . ') / - SUM(jf.running_job_count) + SUM(' . $job_count . ') / ( SELECT @@ -40,12 +52,4 @@ public function getInfo() { return 'The percentage average size ' . ORGANIZATION_NAME . ' job over total machine cores.
Normalized Job Size: The percentage total number of processor cores used by a (parallel) job over the total number of cores on the machine.'; } - - /** - * @see DataWarehouse\Query\Statistic - */ - public function usesTimePeriodTablesForAggregate() - { - return false; - } } From 1d549f03ae37358f09505e3848b8ef4118e9c7fa Mon Sep 17 00:00:00 2001 From: "Joseph P. White" Date: Thu, 13 Jun 2019 10:31:26 -0400 Subject: [PATCH 2/3] Update the test artifacts --- .../avg_cpu_hours/aggregate-Day-reference.csv | 61 +- .../aggregate-Month-reference.csv | 61 +- .../aggregate-Quarter-reference.csv | 61 +- .../aggregate-Year-reference.csv | 61 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 61 +- .../aggregate-Month-reference.csv | 61 +- .../aggregate-Quarter-reference.csv | 61 +- .../aggregate-Year-reference.csv | 61 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 61 +- .../aggregate-Month-reference.csv | 61 +- .../aggregate-Quarter-reference.csv | 61 +- .../aggregate-Year-reference.csv | 61 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 61 +- .../aggregate-Month-reference.csv | 61 +- .../aggregate-Quarter-reference.csv | 61 +- .../aggregate-Year-reference.csv | 61 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 31 +- .../aggregate-Month-reference.csv | 31 +- .../aggregate-Quarter-reference.csv | 31 +- .../aggregate-Year-reference.csv | 31 +- .../aggregate-Day-reference.csv | 31 +- .../aggregate-Month-reference.csv | 31 +- .../aggregate-Quarter-reference.csv | 31 +- .../aggregate-Year-reference.csv | 31 +- .../aggregate-Day-reference.csv | 31 +- .../aggregate-Month-reference.csv | 31 +- .../aggregate-Quarter-reference.csv | 31 +- .../aggregate-Year-reference.csv | 31 +- .../aggregate-Day-reference.csv | 31 +- .../aggregate-Month-reference.csv | 31 +- .../aggregate-Quarter-reference.csv | 31 +- .../aggregate-Year-reference.csv | 31 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 29 +- .../aggregate-Month-reference.csv | 29 +- .../aggregate-Quarter-reference.csv | 29 +- .../aggregate-Year-reference.csv | 29 +- .../aggregate-Day-reference.csv | 29 +- .../aggregate-Month-reference.csv | 29 +- .../aggregate-Quarter-reference.csv | 29 +- .../aggregate-Year-reference.csv | 29 +- .../aggregate-Day-reference.csv | 29 +- .../aggregate-Month-reference.csv | 29 +- .../aggregate-Quarter-reference.csv | 29 +- .../aggregate-Year-reference.csv | 29 +- .../aggregate-Day-reference.csv | 29 +- .../aggregate-Month-reference.csv | 29 +- .../aggregate-Quarter-reference.csv | 29 +- .../aggregate-Year-reference.csv | 29 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 29 +- .../aggregate-Month-reference.csv | 29 +- .../aggregate-Quarter-reference.csv | 29 +- .../aggregate-Year-reference.csv | 29 +- .../aggregate-Day-reference.csv | 29 +- .../aggregate-Month-reference.csv | 29 +- .../aggregate-Quarter-reference.csv | 29 +- .../aggregate-Year-reference.csv | 29 +- .../aggregate-Day-reference.csv | 29 +- .../aggregate-Month-reference.csv | 29 +- .../aggregate-Quarter-reference.csv | 29 +- .../aggregate-Year-reference.csv | 29 +- .../aggregate-Day-reference.csv | 29 +- .../aggregate-Month-reference.csv | 29 +- .../aggregate-Quarter-reference.csv | 29 +- .../aggregate-Year-reference.csv | 29 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 36 +- .../aggregate-Month-reference.csv | 36 +- .../aggregate-Quarter-reference.csv | 36 +- .../aggregate-Year-reference.csv | 36 +- .../timeseries-Day-reference.csv | 14 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 36 +- .../aggregate-Month-reference.csv | 36 +- .../aggregate-Quarter-reference.csv | 36 +- .../aggregate-Year-reference.csv | 36 +- .../timeseries-Day-reference.csv | 14 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 36 +- .../aggregate-Month-reference.csv | 36 +- .../aggregate-Quarter-reference.csv | 36 +- .../aggregate-Year-reference.csv | 36 +- .../aggregate-Day-reference.csv | 36 +- .../aggregate-Month-reference.csv | 36 +- .../aggregate-Quarter-reference.csv | 36 +- .../aggregate-Year-reference.csv | 36 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 22 +- .../aggregate-Month-reference.csv | 22 +- .../aggregate-Quarter-reference.csv | 22 +- .../aggregate-Year-reference.csv | 22 +- .../aggregate-Day-reference.csv | 22 +- .../aggregate-Month-reference.csv | 22 +- .../aggregate-Quarter-reference.csv | 22 +- .../aggregate-Year-reference.csv | 22 +- .../aggregate-Day-reference.csv | 22 +- .../aggregate-Month-reference.csv | 22 +- .../aggregate-Quarter-reference.csv | 22 +- .../aggregate-Year-reference.csv | 22 +- .../aggregate-Day-reference.csv | 22 +- .../aggregate-Month-reference.csv | 22 +- .../aggregate-Quarter-reference.csv | 22 +- .../aggregate-Year-reference.csv | 22 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 28 +- .../aggregate-Month-reference.csv | 28 +- .../aggregate-Quarter-reference.csv | 28 +- .../aggregate-Year-reference.csv | 28 +- .../aggregate-Day-reference.csv | 28 +- .../aggregate-Month-reference.csv | 28 +- .../aggregate-Quarter-reference.csv | 28 +- .../aggregate-Year-reference.csv | 28 +- .../aggregate-Day-reference.csv | 28 +- .../aggregate-Month-reference.csv | 28 +- .../aggregate-Quarter-reference.csv | 28 +- .../aggregate-Year-reference.csv | 28 +- .../timeseries-Day-reference.csv | 24 +- .../aggregate-Day-reference.csv | 28 +- .../aggregate-Month-reference.csv | 28 +- .../aggregate-Quarter-reference.csv | 28 +- .../aggregate-Year-reference.csv | 28 +- .../timeseries-Day-reference.csv | 24 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 39 +- .../aggregate-Month-reference.csv | 39 +- .../aggregate-Quarter-reference.csv | 39 +- .../aggregate-Year-reference.csv | 39 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 39 +- .../aggregate-Month-reference.csv | 39 +- .../aggregate-Quarter-reference.csv | 39 +- .../aggregate-Year-reference.csv | 39 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 39 +- .../aggregate-Month-reference.csv | 39 +- .../aggregate-Quarter-reference.csv | 39 +- .../aggregate-Year-reference.csv | 39 +- .../timeseries-Day-reference.csv | 24 +- .../aggregate-Day-reference.csv | 39 +- .../aggregate-Month-reference.csv | 39 +- .../aggregate-Quarter-reference.csv | 39 +- .../aggregate-Year-reference.csv | 39 +- .../timeseries-Day-reference.csv | 22 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 87 +- .../aggregate-Month-reference.csv | 87 +- .../aggregate-Quarter-reference.csv | 87 +- .../aggregate-Year-reference.csv | 87 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 87 +- .../aggregate-Month-reference.csv | 87 +- .../aggregate-Quarter-reference.csv | 87 +- .../aggregate-Year-reference.csv | 87 +- .../timeseries-Day-reference.csv | 22 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 87 +- .../aggregate-Month-reference.csv | 87 +- .../aggregate-Quarter-reference.csv | 87 +- .../aggregate-Year-reference.csv | 87 +- .../timeseries-Day-reference.csv | 24 +- .../aggregate-Day-reference.csv | 87 +- .../aggregate-Month-reference.csv | 87 +- .../aggregate-Quarter-reference.csv | 87 +- .../aggregate-Year-reference.csv | 87 +- .../timeseries-Day-reference.csv | 24 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 62 +- .../aggregate-Month-reference.csv | 62 +- .../aggregate-Quarter-reference.csv | 62 +- .../aggregate-Year-reference.csv | 62 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 62 +- .../aggregate-Month-reference.csv | 62 +- .../aggregate-Quarter-reference.csv | 62 +- .../aggregate-Year-reference.csv | 62 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 62 +- .../aggregate-Month-reference.csv | 62 +- .../aggregate-Quarter-reference.csv | 62 +- .../aggregate-Year-reference.csv | 62 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 62 +- .../aggregate-Month-reference.csv | 62 +- .../aggregate-Quarter-reference.csv | 62 +- .../aggregate-Year-reference.csv | 62 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 39 +- .../aggregate-Month-reference.csv | 39 +- .../aggregate-Quarter-reference.csv | 39 +- .../aggregate-Year-reference.csv | 39 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 39 +- .../aggregate-Month-reference.csv | 39 +- .../aggregate-Quarter-reference.csv | 39 +- .../aggregate-Year-reference.csv | 39 +- .../timeseries-Day-reference.csv | 22 +- .../timeseries-Month-reference.csv | 6 +- .../timeseries-Quarter-reference.csv | 6 +- .../timeseries-Year-reference.csv | 6 +- .../aggregate-Day-reference.csv | 39 +- .../aggregate-Month-reference.csv | 39 +- .../aggregate-Quarter-reference.csv | 39 +- .../aggregate-Year-reference.csv | 39 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 4 +- .../timeseries-Quarter-reference.csv | 4 +- .../timeseries-Year-reference.csv | 4 +- .../aggregate-Day-reference.csv | 39 +- .../aggregate-Month-reference.csv | 39 +- .../aggregate-Quarter-reference.csv | 39 +- .../aggregate-Year-reference.csv | 39 +- .../timeseries-Day-reference.csv | 24 +- .../timeseries-Month-reference.csv | 4 +- .../timeseries-Quarter-reference.csv | 4 +- .../timeseries-Year-reference.csv | 4 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 26 +- .../aggregate-Month-reference.csv | 26 +- .../aggregate-Quarter-reference.csv | 26 +- .../aggregate-Year-reference.csv | 26 +- .../timeseries-Day-reference.csv | 24 +- .../aggregate-Day-reference.csv | 26 +- .../aggregate-Month-reference.csv | 26 +- .../aggregate-Quarter-reference.csv | 26 +- .../aggregate-Year-reference.csv | 26 +- .../aggregate-Day-reference.csv | 26 +- .../aggregate-Month-reference.csv | 26 +- .../aggregate-Quarter-reference.csv | 26 +- .../aggregate-Year-reference.csv | 26 +- .../aggregate-Day-reference.csv | 26 +- .../aggregate-Month-reference.csv | 26 +- .../aggregate-Quarter-reference.csv | 26 +- .../aggregate-Year-reference.csv | 26 +- .../avg_cpu_hours/aggregate-Day-reference.csv | 22 +- .../aggregate-Month-reference.csv | 22 +- .../aggregate-Quarter-reference.csv | 22 +- .../aggregate-Year-reference.csv | 22 +- .../aggregate-Day-reference.csv | 22 +- .../aggregate-Month-reference.csv | 22 +- .../aggregate-Quarter-reference.csv | 22 +- .../aggregate-Year-reference.csv | 22 +- .../aggregate-Day-reference.csv | 22 +- .../aggregate-Month-reference.csv | 22 +- .../aggregate-Quarter-reference.csv | 22 +- .../aggregate-Year-reference.csv | 22 +- .../aggregate-Day-reference.csv | 22 +- .../aggregate-Month-reference.csv | 22 +- .../aggregate-Quarter-reference.csv | 22 +- .../aggregate-Year-reference.csv | 22 +- .../avg_cpu_hours/aggregate-Day-cd.csv | 75 ++ .../avg_cpu_hours/aggregate-Day-cs.csv | 75 ++ .../avg_cpu_hours/aggregate-Day-pi.csv | 16 + .../avg_cpu_hours/aggregate-Day-reference.csv | 4 +- .../avg_cpu_hours/aggregate-Day-usr.csv | 11 + .../avg_cpu_hours/aggregate-Month-cd.csv | 75 ++ .../avg_cpu_hours/aggregate-Month-cs.csv | 75 ++ .../avg_cpu_hours/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 4 +- .../avg_cpu_hours/aggregate-Month-usr.csv | 11 + .../avg_cpu_hours/aggregate-Quarter-cd.csv | 75 ++ .../avg_cpu_hours/aggregate-Quarter-cs.csv | 75 ++ .../avg_cpu_hours/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 4 +- .../avg_cpu_hours/aggregate-Quarter-usr.csv | 11 + .../avg_cpu_hours/aggregate-Year-cd.csv | 75 ++ .../avg_cpu_hours/aggregate-Year-cs.csv | 75 ++ .../avg_cpu_hours/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 4 +- .../avg_cpu_hours/aggregate-Year-usr.csv | 11 + .../avg_cpu_hours/timeseries-Day-cd.csv | 24 +- .../avg_cpu_hours/timeseries-Day-cs.csv | 24 +- .../avg_cpu_hours/timeseries-Month-cd.csv | 6 +- .../avg_cpu_hours/timeseries-Month-cs.csv | 6 +- .../avg_cpu_hours/timeseries-Quarter-cd.csv | 6 +- .../avg_cpu_hours/timeseries-Quarter-cs.csv | 6 +- .../avg_cpu_hours/timeseries-Year-cd.csv | 6 +- .../avg_cpu_hours/timeseries-Year-cs.csv | 6 +- .../avg_node_hours/aggregate-Day-cd.csv | 75 ++ .../avg_node_hours/aggregate-Day-cs.csv | 75 ++ .../avg_node_hours/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 4 +- .../avg_node_hours/aggregate-Day-usr.csv | 11 + .../avg_node_hours/aggregate-Month-cd.csv | 75 ++ .../avg_node_hours/aggregate-Month-cs.csv | 75 ++ .../avg_node_hours/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 4 +- .../avg_node_hours/aggregate-Month-usr.csv | 11 + .../avg_node_hours/aggregate-Quarter-cd.csv | 75 ++ .../avg_node_hours/aggregate-Quarter-cs.csv | 75 ++ .../avg_node_hours/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 4 +- .../avg_node_hours/aggregate-Quarter-usr.csv | 11 + .../avg_node_hours/aggregate-Year-cd.csv | 75 ++ .../avg_node_hours/aggregate-Year-cs.csv | 75 ++ .../avg_node_hours/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 4 +- .../avg_node_hours/aggregate-Year-usr.csv | 11 + .../avg_node_hours/timeseries-Day-cd.csv | 22 +- .../avg_node_hours/timeseries-Day-cs.csv | 22 +- .../avg_node_hours/timeseries-Day-pi.csv | 20 +- .../avg_node_hours/timeseries-Month-cd.csv | 6 +- .../avg_node_hours/timeseries-Month-cs.csv | 6 +- .../avg_node_hours/timeseries-Quarter-cd.csv | 6 +- .../avg_node_hours/timeseries-Quarter-cs.csv | 6 +- .../avg_node_hours/timeseries-Year-cd.csv | 6 +- .../avg_node_hours/timeseries-Year-cs.csv | 6 +- .../avg_processors/aggregate-Day-cd.csv | 75 ++ .../avg_processors/aggregate-Day-cs.csv | 75 ++ .../avg_processors/aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 4 +- .../avg_processors/aggregate-Day-usr.csv | 11 + .../avg_processors/aggregate-Month-cd.csv | 75 ++ .../avg_processors/aggregate-Month-cs.csv | 75 ++ .../avg_processors/aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 4 +- .../avg_processors/aggregate-Month-usr.csv | 11 + .../avg_processors/aggregate-Quarter-cd.csv | 75 ++ .../avg_processors/aggregate-Quarter-cs.csv | 75 ++ .../avg_processors/aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 4 +- .../avg_processors/aggregate-Quarter-usr.csv | 11 + .../avg_processors/aggregate-Year-cd.csv | 75 ++ .../avg_processors/aggregate-Year-cs.csv | 75 ++ .../avg_processors/aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 4 +- .../avg_processors/aggregate-Year-usr.csv | 11 + .../avg_processors/timeseries-Day-cd.csv | 24 +- .../avg_processors/timeseries-Day-cs.csv | 24 +- .../aggregate-Day-cd.csv | 75 ++ .../aggregate-Day-cs.csv | 75 ++ .../aggregate-Day-pi.csv | 16 + .../aggregate-Day-reference.csv | 4 +- .../aggregate-Day-usr.csv | 11 + .../aggregate-Month-cd.csv | 75 ++ .../aggregate-Month-cs.csv | 75 ++ .../aggregate-Month-pi.csv | 16 + .../aggregate-Month-reference.csv | 4 +- .../aggregate-Month-usr.csv | 11 + .../aggregate-Quarter-cd.csv | 75 ++ .../aggregate-Quarter-cs.csv | 75 ++ .../aggregate-Quarter-pi.csv | 16 + .../aggregate-Quarter-reference.csv | 4 +- .../aggregate-Quarter-usr.csv | 11 + .../aggregate-Year-cd.csv | 75 ++ .../aggregate-Year-cs.csv | 75 ++ .../aggregate-Year-pi.csv | 16 + .../aggregate-Year-reference.csv | 4 +- .../aggregate-Year-usr.csv | 11 + .../timeseries-Day-cd.csv | 24 +- .../timeseries-Day-cs.csv | 24 +- .../xdmod/regression/images/expected.json | 1152 ++++++++--------- 392 files changed, 9504 insertions(+), 3904 deletions(-) create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv create mode 100644 tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..749997a0bf 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Organic and Macromolecular Chemistry",4770.96515556, +"Fluid, Particulate, and Hydraulic Systems",4368.65777778,1642.1290224563402 +"Quantum Electronics, Waves, and Beams",3349.41898359, +"Metals, Ceramics, and Electronic Materials",2627.28571429, +"Structures and Building Systems",1767.64000000, +"Emerging Technologies Initiation",1217.11333333, +"Stellar Astronomy and Astrophysics",1099.78650000,28.16858688077423 +"Polar Aeronomy and Astrophysics",1006.98777778, +"Volcanology and Mantle Geochemistry",960.13333333, +"Global Atmospheric Research",722.24444444,221.86209986841982 +"Statistics and Probability",646.25423868, +"Design and Computer-Integrated Engineering",584.70172840, +"Theoretical Physics",529.63777778, +"Algebra and Number Theory",472.55000000, +Biophysics,350.97654122,92.37868584083421 +"Solid State Chemistry and Polymers",229.08605023,40.75001779915322 +"Experimental Systems",199.11258258, +Arts,188.13274411,2.041452970260724 +"Geology and Paleontology",147.58368056,100.57359969220543 +"Cell Biology",120.93180941,7.498289082723488 +"Biochemistry and Molecular Structure and Function",68.10298148,26.371499330539592 +Seismology,62.26494444,16.730860685172974 +"Operations Research and Production Systems",49.85089556, +"Design, Tools, and Test",28.14000000,0 +"Systems Prototyping and Fabrication",25.48654262, +"Polar Ocean and Climate Systems",25.28805115,0.5677021199320009 +Economics,20.97018519,8.396540327209507 +"Solid-State and Microstructures",20.18978548,2.707858002197733 +"Galactic Astronomy",18.09286078,3.3250117057748407 +"Physical Chemistry",9.96996384,0.8667729813875754 +Tectonics,8.59051583, +"Systematic and Population Biology",6.35208275,0.7295707950782502 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.412736659063767 +Sociology,2.92105820,0.019372743040016592 +Geophysics,1.60992063,0.44663758019891886 +"Law and Social Sciences",1.04000000,0 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +"Decision, Risk, and Management Science",0.44956007,0.3891122786101412 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..0e71cc91c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Organic and Macromolecular Chemistry",4770.96515556,1280.6779521962624 +"Fluid, Particulate, and Hydraulic Systems",4368.65777778,3398.832310418393 +"Quantum Electronics, Waves, and Beams",3349.41898359,483.5702375532598 +"Metals, Ceramics, and Electronic Materials",2627.28571429,173.36998095799686 +"Structures and Building Systems",1767.64000000,158.84195310837734 +"Emerging Technologies Initiation",1217.11333333,41.359060776731056 +"Stellar Astronomy and Astrophysics",1099.78650000,285.31920900832716 +"Polar Aeronomy and Astrophysics",1006.98777778,712.0416008450284 +"Volcanology and Mantle Geochemistry",960.13333333,0 +"Global Atmospheric Research",722.24444444,508.25264083286396 +"Statistics and Probability",646.25423868,51.459856675505876 +"Design and Computer-Integrated Engineering",584.70172840, +"Theoretical Physics",529.63777778,46.636532607630166 +"Algebra and Number Theory",472.55000000,42.08961460801514 +Biophysics,350.97654122,220.00497833274875 +"Solid State Chemistry and Polymers",229.08605023,76.31072359860417 +"Experimental Systems",199.11258258,23.468158632214884 +Arts,188.13274411,16.44278594480015 +"Geology and Paleontology",147.58368056,114.52976296802045 +"Cell Biology",120.93180941,23.278643251385912 +"Biochemistry and Molecular Structure and Function",68.10298148,53.28768177700803 +Seismology,62.26494444,18.726467654568296 +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Design, Tools, and Test",28.14000000,0 +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Polar Ocean and Climate Systems",25.28805115,0.5677021199320009 +Economics,20.97018519,8.396540327209507 +"Solid-State and Microstructures",20.18978548,2.814335511780527 +"Galactic Astronomy",18.09286078,5.960009068465851 +"Physical Chemistry",9.96996384,1.3696184350054212 +Tectonics,8.59051583,0.027937647321332644 +"Systematic and Population Biology",6.35208275,0.7295707950782502 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +Sociology,2.92105820,0.02265708678309858 +Geophysics,1.60992063,0.44663758019891886 +"Law and Social Sciences",1.04000000,0 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +"Decision, Risk, and Management Science",0.44956007,0.42794057709117733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..0e71cc91c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Organic and Macromolecular Chemistry",4770.96515556,1280.6779521962624 +"Fluid, Particulate, and Hydraulic Systems",4368.65777778,3398.832310418393 +"Quantum Electronics, Waves, and Beams",3349.41898359,483.5702375532598 +"Metals, Ceramics, and Electronic Materials",2627.28571429,173.36998095799686 +"Structures and Building Systems",1767.64000000,158.84195310837734 +"Emerging Technologies Initiation",1217.11333333,41.359060776731056 +"Stellar Astronomy and Astrophysics",1099.78650000,285.31920900832716 +"Polar Aeronomy and Astrophysics",1006.98777778,712.0416008450284 +"Volcanology and Mantle Geochemistry",960.13333333,0 +"Global Atmospheric Research",722.24444444,508.25264083286396 +"Statistics and Probability",646.25423868,51.459856675505876 +"Design and Computer-Integrated Engineering",584.70172840, +"Theoretical Physics",529.63777778,46.636532607630166 +"Algebra and Number Theory",472.55000000,42.08961460801514 +Biophysics,350.97654122,220.00497833274875 +"Solid State Chemistry and Polymers",229.08605023,76.31072359860417 +"Experimental Systems",199.11258258,23.468158632214884 +Arts,188.13274411,16.44278594480015 +"Geology and Paleontology",147.58368056,114.52976296802045 +"Cell Biology",120.93180941,23.278643251385912 +"Biochemistry and Molecular Structure and Function",68.10298148,53.28768177700803 +Seismology,62.26494444,18.726467654568296 +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Design, Tools, and Test",28.14000000,0 +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Polar Ocean and Climate Systems",25.28805115,0.5677021199320009 +Economics,20.97018519,8.396540327209507 +"Solid-State and Microstructures",20.18978548,2.814335511780527 +"Galactic Astronomy",18.09286078,5.960009068465851 +"Physical Chemistry",9.96996384,1.3696184350054212 +Tectonics,8.59051583,0.027937647321332644 +"Systematic and Population Biology",6.35208275,0.7295707950782502 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +Sociology,2.92105820,0.02265708678309858 +Geophysics,1.60992063,0.44663758019891886 +"Law and Social Sciences",1.04000000,0 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +"Decision, Risk, and Management Science",0.44956007,0.42794057709117733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..0e71cc91c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Organic and Macromolecular Chemistry",4770.96515556,1280.6779521962624 +"Fluid, Particulate, and Hydraulic Systems",4368.65777778,3398.832310418393 +"Quantum Electronics, Waves, and Beams",3349.41898359,483.5702375532598 +"Metals, Ceramics, and Electronic Materials",2627.28571429,173.36998095799686 +"Structures and Building Systems",1767.64000000,158.84195310837734 +"Emerging Technologies Initiation",1217.11333333,41.359060776731056 +"Stellar Astronomy and Astrophysics",1099.78650000,285.31920900832716 +"Polar Aeronomy and Astrophysics",1006.98777778,712.0416008450284 +"Volcanology and Mantle Geochemistry",960.13333333,0 +"Global Atmospheric Research",722.24444444,508.25264083286396 +"Statistics and Probability",646.25423868,51.459856675505876 +"Design and Computer-Integrated Engineering",584.70172840, +"Theoretical Physics",529.63777778,46.636532607630166 +"Algebra and Number Theory",472.55000000,42.08961460801514 +Biophysics,350.97654122,220.00497833274875 +"Solid State Chemistry and Polymers",229.08605023,76.31072359860417 +"Experimental Systems",199.11258258,23.468158632214884 +Arts,188.13274411,16.44278594480015 +"Geology and Paleontology",147.58368056,114.52976296802045 +"Cell Biology",120.93180941,23.278643251385912 +"Biochemistry and Molecular Structure and Function",68.10298148,53.28768177700803 +Seismology,62.26494444,18.726467654568296 +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Design, Tools, and Test",28.14000000,0 +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Polar Ocean and Climate Systems",25.28805115,0.5677021199320009 +Economics,20.97018519,8.396540327209507 +"Solid-State and Microstructures",20.18978548,2.814335511780527 +"Galactic Astronomy",18.09286078,5.960009068465851 +"Physical Chemistry",9.96996384,1.3696184350054212 +Tectonics,8.59051583,0.027937647321332644 +"Systematic and Population Biology",6.35208275,0.7295707950782502 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +Sociology,2.92105820,0.02265708678309858 +Geophysics,1.60992063,0.44663758019891886 +"Law and Social Sciences",1.04000000,0 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +"Decision, Risk, and Management Science",0.44956007,0.42794057709117733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv index 2ede9b7f42..268ff1d94c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Per Job","[Organic and Macromolecular Chemistry] CPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] CPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] CPU Hours: Per Job","[Structures and Building Systems] CPU Hours: Per Job","[Emerging Technologies Initiation] CPU Hours: Per Job","[Stellar Astronomy and Astrophysics] CPU Hours: Per Job","[Polar Aeronomy and Astrophysics] CPU Hours: Per Job","[Global Atmospheric Research] CPU Hours: Per Job","[Volcanology and Mantle Geochemistry] CPU Hours: Per Job","[Design and Computer-Integrated Engineering] CPU Hours: Per Job","[Biophysics] CPU Hours: Per Job","[Statistics and Probability] CPU Hours: Per Job","[Theoretical Physics] CPU Hours: Per Job","[Algebra and Number Theory] CPU Hours: Per Job","[Solid State Chemistry and Polymers] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Geology and Paleontology] CPU Hours: Per Job","[Experimental Systems] CPU Hours: Per Job","[Seismology] CPU Hours: Per Job","[Cell Biology] CPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] CPU Hours: Per Job","[Design, Tools, and Test] CPU Hours: Per Job","[Polar Ocean and Climate Systems] CPU Hours: Per Job","[Economics] CPU Hours: Per Job","[Solid-State and Microstructures] CPU Hours: Per Job","[Galactic Astronomy] CPU Hours: Per Job","[Operations Research and Production Systems] CPU Hours: Per Job","[Systems Prototyping and Fabrication] CPU Hours: Per Job","[Physical Chemistry] CPU Hours: Per Job","[Systematic and Population Biology] CPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] CPU Hours: Per Job","[Tectonics] CPU Hours: Per Job","[Computer and Computation Theory] CPU Hours: Per Job","[Sociology] CPU Hours: Per Job","[Geophysics] CPU Hours: Per Job","[Law and Social Sciences] CPU Hours: Per Job","[Mechanics and Materials] CPU Hours: Per Job","[Polar Meteorology] CPU Hours: Per Job","[Decision, Risk, and Management Science] CPU Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,116.56750000,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,288.00000000,43.26666667,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,432.00000000,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,1246.47111111,0,0,0,1487.82000000,0,0,0,0,265.59111111,320.78689815,0,0,1432.93629630,0,0,0,0,111.72266667,238.86666667,0,0,0,0,79.45703704,0,0,163.84000000,0,0,0,0,3.21666667,0,0,0,0,0 -2016-12-28,0,3274.16345679,1462.12800000,0,0,0,1170.67333333,0,0,94.01111111,0,912.00000000,137.33751634,60.47666667,37.38407407,548.99703704,0,0,70.31866667,0,141.10666667,288.00000000,0,0,0,0,324.00000000,13.35268330,5.01598392,497.74155556,0,0,0,0,24.00000000,0,0,0,0,0 -2016-12-29,0,4394.66666667,2154.62270531,831.60857143,410.97777778,611.49333333,1116.60000000,758.98888889,1038.22222222,480.00000000,0,912.00000000,365.14687831,288.00000000,288.00000000,481.66328889,46.91737374,0,84.37166667,52.00416667,35.54762993,288.00000000,0,0,0,7.24000000,107.02983796,16.60273286,13.10756221,291.44944444,0,0,0,2.01966667,7.00547635,0,0,0,0,107.90888889 -2016-12-30,2468.14222222,3044.46700855,1678.34215278,1568.46000000,1151.41444444,765.75000000,691.69761905,480.00444444,402.80000000,386.12222222,0,912.00000000,289.26650794,181.16111111,174.64030303,82.82847222,107.24694444,21.99861111,109.61282407,68.03194444,31.01048203,13.26442593,28.14000000,0,16.32947222,142.16250000,7.46168131,21.71949405,13.31263065,4.35337278,5.80186420,3.48631944,4.25015531,4.10559722,3.23608859,1.60992063,1.04000000,0.97252976,1.58977533,0.62469624 -2016-12-31,5701.54666667,816.89504274,927.25854167,1590.52000000,821.47333333,977.07428571,472.85472222,294.97777778,0,0,385.99851852,304.60111111,245.43360532,0,288.00000000,30.92378849,171.46924897,251.46666667,94.17464646,70.16857143,119.81037037,1.92791667,0,2.35937500,35.16320513,14.57163265,94.71781481,10.83064379,12.53390738,5.37641403,12.54733333,7.65398148,5.54019436,8.63138889,3.90284912,0,0,0.97299603,1.07971065,0.01479010 -2017-01-01,0,7.11888889,144.94972222,0,0,667.68761905,353.78037037,0,3.46666667,0,198.70320988,62.83434156,104.22217494,0,60.55000000,0,59.98977778,21.40555556,68.79111111,5.71666667,141.00285714,0,0,25.37236259,8.24440000,35.25833333,185.80611111,13.34534574,11.50582962,16.76606412,6.26263789,0,0,0,0.60766446,0,0,0.96969246,0.02809588,0 +Day,"[Organic and Macromolecular Chemistry] CPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] CPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] CPU Hours: Per Job","[Structures and Building Systems] CPU Hours: Per Job","[Emerging Technologies Initiation] CPU Hours: Per Job","[Stellar Astronomy and Astrophysics] CPU Hours: Per Job","[Polar Aeronomy and Astrophysics] CPU Hours: Per Job","[Volcanology and Mantle Geochemistry] CPU Hours: Per Job","[Global Atmospheric Research] CPU Hours: Per Job","[Statistics and Probability] CPU Hours: Per Job","[Design and Computer-Integrated Engineering] CPU Hours: Per Job","[Theoretical Physics] CPU Hours: Per Job","[Algebra and Number Theory] CPU Hours: Per Job","[Biophysics] CPU Hours: Per Job","[Solid State Chemistry and Polymers] CPU Hours: Per Job","[Experimental Systems] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Geology and Paleontology] CPU Hours: Per Job","[Cell Biology] CPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] CPU Hours: Per Job","[Seismology] CPU Hours: Per Job","[Operations Research and Production Systems] CPU Hours: Per Job","[Design, Tools, and Test] CPU Hours: Per Job","[Systems Prototyping and Fabrication] CPU Hours: Per Job","[Polar Ocean and Climate Systems] CPU Hours: Per Job","[Economics] CPU Hours: Per Job","[Solid-State and Microstructures] CPU Hours: Per Job","[Galactic Astronomy] CPU Hours: Per Job","[Physical Chemistry] CPU Hours: Per Job","[Tectonics] CPU Hours: Per Job","[Systematic and Population Biology] CPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] CPU Hours: Per Job","[Computer and Computation Theory] CPU Hours: Per Job","[Sociology] CPU Hours: Per Job","[Geophysics] CPU Hours: Per Job","[Law and Social Sciences] CPU Hours: Per Job","[Mechanics and Materials] CPU Hours: Per Job","[Polar Meteorology] CPU Hours: Per Job","[Decision, Risk, and Management Science] CPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,288.00000000,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,116.56750000,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,43.26666667,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,432.00000000,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,1246.47111111,0,0,0,1487.82000000,0,0,0,320.78689815,0,0,0,265.59111111,1432.93629630,0,0,0,111.72266667,238.86666667,0,0,0,0,0,0,0,79.45703704,163.84000000,0,0,0,0,3.21666667,0,0,0,0,0 +2016-12-28,3274.16345679,0,1462.12800000,0,0,0,1170.67333333,0,94.01111111,0,137.33751634,0,60.47666667,37.38407407,912.00000000,548.99703704,70.31866667,0,0,141.10666667,288.00000000,0,13.35268330,0,5.01598392,0,0,0,324.00000000,497.74155556,0,0,0,0,24.00000000,0,0,0,0,0 +2016-12-29,4394.66666667,0,2154.62270531,831.60857143,410.97777778,611.49333333,1116.60000000,758.98888889,480.00000000,1038.22222222,365.14687831,0,288.00000000,288.00000000,912.00000000,481.66328889,84.37166667,46.91737374,0,35.54762993,288.00000000,52.00416667,16.60273286,0,13.10756221,0,0,7.24000000,107.02983796,291.44944444,0,0,0,2.01966667,7.00547635,0,0,0,0,107.90888889 +2016-12-30,3044.46700855,2468.14222222,1678.34215278,1568.46000000,1151.41444444,765.75000000,691.69761905,480.00444444,386.12222222,402.80000000,289.26650794,0,181.16111111,174.64030303,912.00000000,82.82847222,109.61282407,107.24694444,21.99861111,31.01048203,13.26442593,68.03194444,21.71949405,28.14000000,13.31263065,0,16.32947222,142.16250000,7.46168131,4.35337278,4.25015531,5.80186420,3.48631944,4.10559722,3.23608859,1.60992063,1.04000000,0.97252976,1.58977533,0.62469624 +2016-12-31,816.89504274,5701.54666667,927.25854167,1590.52000000,821.47333333,977.07428571,472.85472222,294.97777778,0,0,245.43360532,385.99851852,0,288.00000000,304.60111111,30.92378849,94.17464646,171.46924897,251.46666667,119.81037037,1.92791667,70.16857143,10.83064379,0,12.53390738,2.35937500,35.16320513,14.57163265,94.71781481,5.37641403,5.54019436,12.54733333,7.65398148,8.63138889,3.90284912,0,0,0.97299603,1.07971065,0.01479010 +2017-01-01,7.11888889,0,144.94972222,0,0,667.68761905,353.78037037,0,0,3.46666667,104.22217494,198.70320988,0,60.55000000,62.83434156,0,68.79111111,59.98977778,21.40555556,141.00285714,0,5.71666667,13.34534574,0,11.50582962,25.37236259,8.24440000,35.25833333,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv index 2310ef47ef..a6971df01b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Organic and Macromolecular Chemistry] CPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] CPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] CPU Hours: Per Job","[Structures and Building Systems] CPU Hours: Per Job","[Emerging Technologies Initiation] CPU Hours: Per Job","[Polar Aeronomy and Astrophysics] CPU Hours: Per Job","[Volcanology and Mantle Geochemistry] CPU Hours: Per Job","[Stellar Astronomy and Astrophysics] CPU Hours: Per Job","[Global Atmospheric Research] CPU Hours: Per Job","[Theoretical Physics] CPU Hours: Per Job","[Algebra and Number Theory] CPU Hours: Per Job","[Statistics and Probability] CPU Hours: Per Job","[Biophysics] CPU Hours: Per Job","[Design and Computer-Integrated Engineering] CPU Hours: Per Job","[Solid State Chemistry and Polymers] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Experimental Systems] CPU Hours: Per Job","[Geology and Paleontology] CPU Hours: Per Job","[Cell Biology] CPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] CPU Hours: Per Job","[Seismology] CPU Hours: Per Job","[Operations Research and Production Systems] CPU Hours: Per Job","[Design, Tools, and Test] CPU Hours: Per Job","[Polar Ocean and Climate Systems] CPU Hours: Per Job","[Economics] CPU Hours: Per Job","[Solid-State and Microstructures] CPU Hours: Per Job","[Systems Prototyping and Fabrication] CPU Hours: Per Job","[Galactic Astronomy] CPU Hours: Per Job","[Physical Chemistry] CPU Hours: Per Job","[Tectonics] CPU Hours: Per Job","[Systematic and Population Biology] CPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] CPU Hours: Per Job","[Computer and Computation Theory] CPU Hours: Per Job","[Sociology] CPU Hours: Per Job","[Geophysics] CPU Hours: Per Job","[Law and Social Sciences] CPU Hours: Per Job","[Mechanics and Materials] CPU Hours: Per Job","[Polar Meteorology] CPU Hours: Per Job","[Decision, Risk, and Management Science] CPU Hours: Per Job" -2016-12,7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1006.98777778,960.13333333,1254.11377778,1441.02222222,529.63777778,467.04545455,555.54234568,1530.62425926,385.99851852,229.08605023,183.58806397,220.83068966,189.64305556,107.22319830,68.10298148,76.40201389,48.78758939,28.14000000,2.35937500,26.97462560,19.84069307,23.01874399,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 -2017-01,7.11888889,0,144.94972222,0,0,667.68761905,0,0,353.78037037,3.46666667,0,60.55000000,104.22217494,62.83434156,198.70320988,0,59.98977778,68.79111111,21.40555556,141.00285714,0,5.71666667,13.34534574,0,25.37236259,8.24440000,35.25833333,11.50582962,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 +Month,"[Organic and Macromolecular Chemistry] CPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] CPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] CPU Hours: Per Job","[Structures and Building Systems] CPU Hours: Per Job","[Emerging Technologies Initiation] CPU Hours: Per Job","[Stellar Astronomy and Astrophysics] CPU Hours: Per Job","[Polar Aeronomy and Astrophysics] CPU Hours: Per Job","[Volcanology and Mantle Geochemistry] CPU Hours: Per Job","[Global Atmospheric Research] CPU Hours: Per Job","[Statistics and Probability] CPU Hours: Per Job","[Design and Computer-Integrated Engineering] CPU Hours: Per Job","[Theoretical Physics] CPU Hours: Per Job","[Algebra and Number Theory] CPU Hours: Per Job","[Biophysics] CPU Hours: Per Job","[Solid State Chemistry and Polymers] CPU Hours: Per Job","[Experimental Systems] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Geology and Paleontology] CPU Hours: Per Job","[Cell Biology] CPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] CPU Hours: Per Job","[Seismology] CPU Hours: Per Job","[Operations Research and Production Systems] CPU Hours: Per Job","[Design, Tools, and Test] CPU Hours: Per Job","[Systems Prototyping and Fabrication] CPU Hours: Per Job","[Polar Ocean and Climate Systems] CPU Hours: Per Job","[Economics] CPU Hours: Per Job","[Solid-State and Microstructures] CPU Hours: Per Job","[Galactic Astronomy] CPU Hours: Per Job","[Physical Chemistry] CPU Hours: Per Job","[Tectonics] CPU Hours: Per Job","[Systematic and Population Biology] CPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] CPU Hours: Per Job","[Computer and Computation Theory] CPU Hours: Per Job","[Sociology] CPU Hours: Per Job","[Geophysics] CPU Hours: Per Job","[Law and Social Sciences] CPU Hours: Per Job","[Mechanics and Materials] CPU Hours: Per Job","[Polar Meteorology] CPU Hours: Per Job","[Decision, Risk, and Management Science] CPU Hours: Per Job" +2016-12,7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1254.11377778,1006.98777778,960.13333333,1441.02222222,555.54234568,385.99851852,529.63777778,467.04545455,1530.62425926,229.08605023,220.83068966,183.58806397,189.64305556,107.22319830,68.10298148,76.40201389,48.78758939,28.14000000,23.01874399,2.35937500,26.97462560,19.84069307,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 +2017-01,7.11888889,0,144.94972222,0,0,667.68761905,353.78037037,0,0,3.46666667,104.22217494,198.70320988,0,60.55000000,62.83434156,0,68.79111111,59.98977778,21.40555556,141.00285714,0,5.71666667,13.34534574,0,11.50582962,25.37236259,8.24440000,35.25833333,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv index 25e4fbff7d..08cf3cd832 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Organic and Macromolecular Chemistry] CPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] CPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] CPU Hours: Per Job","[Structures and Building Systems] CPU Hours: Per Job","[Emerging Technologies Initiation] CPU Hours: Per Job","[Polar Aeronomy and Astrophysics] CPU Hours: Per Job","[Volcanology and Mantle Geochemistry] CPU Hours: Per Job","[Stellar Astronomy and Astrophysics] CPU Hours: Per Job","[Global Atmospheric Research] CPU Hours: Per Job","[Theoretical Physics] CPU Hours: Per Job","[Algebra and Number Theory] CPU Hours: Per Job","[Statistics and Probability] CPU Hours: Per Job","[Biophysics] CPU Hours: Per Job","[Design and Computer-Integrated Engineering] CPU Hours: Per Job","[Solid State Chemistry and Polymers] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Experimental Systems] CPU Hours: Per Job","[Geology and Paleontology] CPU Hours: Per Job","[Cell Biology] CPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] CPU Hours: Per Job","[Seismology] CPU Hours: Per Job","[Operations Research and Production Systems] CPU Hours: Per Job","[Design, Tools, and Test] CPU Hours: Per Job","[Polar Ocean and Climate Systems] CPU Hours: Per Job","[Economics] CPU Hours: Per Job","[Solid-State and Microstructures] CPU Hours: Per Job","[Systems Prototyping and Fabrication] CPU Hours: Per Job","[Galactic Astronomy] CPU Hours: Per Job","[Physical Chemistry] CPU Hours: Per Job","[Tectonics] CPU Hours: Per Job","[Systematic and Population Biology] CPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] CPU Hours: Per Job","[Computer and Computation Theory] CPU Hours: Per Job","[Sociology] CPU Hours: Per Job","[Geophysics] CPU Hours: Per Job","[Law and Social Sciences] CPU Hours: Per Job","[Mechanics and Materials] CPU Hours: Per Job","[Polar Meteorology] CPU Hours: Per Job","[Decision, Risk, and Management Science] CPU Hours: Per Job" -"2016 Q4",7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1006.98777778,960.13333333,1254.11377778,1441.02222222,529.63777778,467.04545455,555.54234568,1530.62425926,385.99851852,229.08605023,183.58806397,220.83068966,189.64305556,107.22319830,68.10298148,76.40201389,48.78758939,28.14000000,2.35937500,26.97462560,19.84069307,23.01874399,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 -"2017 Q1",7.11888889,0,144.94972222,0,0,667.68761905,0,0,353.78037037,3.46666667,0,60.55000000,104.22217494,62.83434156,198.70320988,0,59.98977778,68.79111111,21.40555556,141.00285714,0,5.71666667,13.34534574,0,25.37236259,8.24440000,35.25833333,11.50582962,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 +Quarter,"[Organic and Macromolecular Chemistry] CPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] CPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] CPU Hours: Per Job","[Structures and Building Systems] CPU Hours: Per Job","[Emerging Technologies Initiation] CPU Hours: Per Job","[Stellar Astronomy and Astrophysics] CPU Hours: Per Job","[Polar Aeronomy and Astrophysics] CPU Hours: Per Job","[Volcanology and Mantle Geochemistry] CPU Hours: Per Job","[Global Atmospheric Research] CPU Hours: Per Job","[Statistics and Probability] CPU Hours: Per Job","[Design and Computer-Integrated Engineering] CPU Hours: Per Job","[Theoretical Physics] CPU Hours: Per Job","[Algebra and Number Theory] CPU Hours: Per Job","[Biophysics] CPU Hours: Per Job","[Solid State Chemistry and Polymers] CPU Hours: Per Job","[Experimental Systems] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Geology and Paleontology] CPU Hours: Per Job","[Cell Biology] CPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] CPU Hours: Per Job","[Seismology] CPU Hours: Per Job","[Operations Research and Production Systems] CPU Hours: Per Job","[Design, Tools, and Test] CPU Hours: Per Job","[Systems Prototyping and Fabrication] CPU Hours: Per Job","[Polar Ocean and Climate Systems] CPU Hours: Per Job","[Economics] CPU Hours: Per Job","[Solid-State and Microstructures] CPU Hours: Per Job","[Galactic Astronomy] CPU Hours: Per Job","[Physical Chemistry] CPU Hours: Per Job","[Tectonics] CPU Hours: Per Job","[Systematic and Population Biology] CPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] CPU Hours: Per Job","[Computer and Computation Theory] CPU Hours: Per Job","[Sociology] CPU Hours: Per Job","[Geophysics] CPU Hours: Per Job","[Law and Social Sciences] CPU Hours: Per Job","[Mechanics and Materials] CPU Hours: Per Job","[Polar Meteorology] CPU Hours: Per Job","[Decision, Risk, and Management Science] CPU Hours: Per Job" +"2016 Q4",7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1254.11377778,1006.98777778,960.13333333,1441.02222222,555.54234568,385.99851852,529.63777778,467.04545455,1530.62425926,229.08605023,220.83068966,183.58806397,189.64305556,107.22319830,68.10298148,76.40201389,48.78758939,28.14000000,23.01874399,2.35937500,26.97462560,19.84069307,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 +"2017 Q1",7.11888889,0,144.94972222,0,0,667.68761905,353.78037037,0,0,3.46666667,104.22217494,198.70320988,0,60.55000000,62.83434156,0,68.79111111,59.98977778,21.40555556,141.00285714,0,5.71666667,13.34534574,0,11.50582962,25.37236259,8.24440000,35.25833333,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv index 4eb0c25eec..db939918e6 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_cpu_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Organic and Macromolecular Chemistry] CPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] CPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] CPU Hours: Per Job","[Structures and Building Systems] CPU Hours: Per Job","[Emerging Technologies Initiation] CPU Hours: Per Job","[Polar Aeronomy and Astrophysics] CPU Hours: Per Job","[Volcanology and Mantle Geochemistry] CPU Hours: Per Job","[Stellar Astronomy and Astrophysics] CPU Hours: Per Job","[Global Atmospheric Research] CPU Hours: Per Job","[Theoretical Physics] CPU Hours: Per Job","[Algebra and Number Theory] CPU Hours: Per Job","[Statistics and Probability] CPU Hours: Per Job","[Biophysics] CPU Hours: Per Job","[Design and Computer-Integrated Engineering] CPU Hours: Per Job","[Solid State Chemistry and Polymers] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Experimental Systems] CPU Hours: Per Job","[Geology and Paleontology] CPU Hours: Per Job","[Cell Biology] CPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] CPU Hours: Per Job","[Seismology] CPU Hours: Per Job","[Operations Research and Production Systems] CPU Hours: Per Job","[Design, Tools, and Test] CPU Hours: Per Job","[Polar Ocean and Climate Systems] CPU Hours: Per Job","[Economics] CPU Hours: Per Job","[Solid-State and Microstructures] CPU Hours: Per Job","[Systems Prototyping and Fabrication] CPU Hours: Per Job","[Galactic Astronomy] CPU Hours: Per Job","[Physical Chemistry] CPU Hours: Per Job","[Tectonics] CPU Hours: Per Job","[Systematic and Population Biology] CPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] CPU Hours: Per Job","[Computer and Computation Theory] CPU Hours: Per Job","[Sociology] CPU Hours: Per Job","[Geophysics] CPU Hours: Per Job","[Law and Social Sciences] CPU Hours: Per Job","[Mechanics and Materials] CPU Hours: Per Job","[Polar Meteorology] CPU Hours: Per Job","[Decision, Risk, and Management Science] CPU Hours: Per Job" -2016,7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1006.98777778,960.13333333,1254.11377778,1441.02222222,529.63777778,467.04545455,555.54234568,1530.62425926,385.99851852,229.08605023,183.58806397,220.83068966,189.64305556,107.22319830,68.10298148,76.40201389,48.78758939,28.14000000,2.35937500,26.97462560,19.84069307,23.01874399,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 -2017,7.11888889,0,144.94972222,0,0,667.68761905,0,0,353.78037037,3.46666667,0,60.55000000,104.22217494,62.83434156,198.70320988,0,59.98977778,68.79111111,21.40555556,141.00285714,0,5.71666667,13.34534574,0,25.37236259,8.24440000,35.25833333,11.50582962,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 +Year,"[Organic and Macromolecular Chemistry] CPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] CPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] CPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] CPU Hours: Per Job","[Structures and Building Systems] CPU Hours: Per Job","[Emerging Technologies Initiation] CPU Hours: Per Job","[Stellar Astronomy and Astrophysics] CPU Hours: Per Job","[Polar Aeronomy and Astrophysics] CPU Hours: Per Job","[Volcanology and Mantle Geochemistry] CPU Hours: Per Job","[Global Atmospheric Research] CPU Hours: Per Job","[Statistics and Probability] CPU Hours: Per Job","[Design and Computer-Integrated Engineering] CPU Hours: Per Job","[Theoretical Physics] CPU Hours: Per Job","[Algebra and Number Theory] CPU Hours: Per Job","[Biophysics] CPU Hours: Per Job","[Solid State Chemistry and Polymers] CPU Hours: Per Job","[Experimental Systems] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Geology and Paleontology] CPU Hours: Per Job","[Cell Biology] CPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] CPU Hours: Per Job","[Seismology] CPU Hours: Per Job","[Operations Research and Production Systems] CPU Hours: Per Job","[Design, Tools, and Test] CPU Hours: Per Job","[Systems Prototyping and Fabrication] CPU Hours: Per Job","[Polar Ocean and Climate Systems] CPU Hours: Per Job","[Economics] CPU Hours: Per Job","[Solid-State and Microstructures] CPU Hours: Per Job","[Galactic Astronomy] CPU Hours: Per Job","[Physical Chemistry] CPU Hours: Per Job","[Tectonics] CPU Hours: Per Job","[Systematic and Population Biology] CPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] CPU Hours: Per Job","[Computer and Computation Theory] CPU Hours: Per Job","[Sociology] CPU Hours: Per Job","[Geophysics] CPU Hours: Per Job","[Law and Social Sciences] CPU Hours: Per Job","[Mechanics and Materials] CPU Hours: Per Job","[Polar Meteorology] CPU Hours: Per Job","[Decision, Risk, and Management Science] CPU Hours: Per Job" +2016,7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1254.11377778,1006.98777778,960.13333333,1441.02222222,555.54234568,385.99851852,529.63777778,467.04545455,1530.62425926,229.08605023,220.83068966,183.58806397,189.64305556,107.22319830,68.10298148,76.40201389,48.78758939,28.14000000,23.01874399,2.35937500,26.97462560,19.84069307,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 +2017,7.11888889,0,144.94972222,0,0,667.68761905,353.78037037,0,0,3.46666667,104.22217494,198.70320988,0,60.55000000,62.83434156,0,68.79111111,59.98977778,21.40555556,141.00285714,0,5.71666667,13.34534574,0,11.50582962,25.37236259,8.24440000,35.25833333,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..1436d72d1c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Fluid, Particulate, and Hydraulic Systems",364.05481481,136.8440852046951 +"Organic and Macromolecular Chemistry",299.71225556, +"Quantum Electronics, Waves, and Beams",280.53725379, +"Metals, Ceramics, and Electronic Materials",218.94047619, +"Structures and Building Systems",110.47750000, +"Emerging Technologies Initiation",101.42611111, +"Stellar Astronomy and Astrophysics",98.65240278,2.9866256009801653 +"Global Atmospheric Research",90.28055556,27.732762483552477 +"Statistics and Probability",52.69561728, +"Design and Computer-Integrated Engineering",50.98981481, +"Polar Aeronomy and Astrophysics",50.34944444, +"Operations Research and Production Systems",49.85089556, +"Volcanology and Mantle Geochemistry",48.00666667, +"Theoretical Physics",44.13648148, +Biophysics,39.80336022,11.690025361774948 +"Algebra and Number Theory",39.37916667, +"Systems Prototyping and Fabrication",25.48654262, +"Experimental Systems",24.23206456, +"Cell Biology",21.20512731, +Arts,17.27322391, +"Biochemistry and Molecular Structure and Function",16.76537037, +"Solid State Chemistry and Polymers",16.21672374,3.307407725278887 +"Geology and Paleontology",13.65055556,7.948466682221146 +Tectonics,8.59051583, +"Solid-State and Microstructures",7.94699670,0.252707620848999 +Seismology,7.02769444,1.7557857088278381 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.412736659063767 +"Design, Tools, and Test",2.34500000,0 +"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 +"Galactic Astronomy",1.80356997,0.22623042445517075 +Economics,1.74795089,0.6996960905360882 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +"Physical Chemistry",0.77948613,0.07725239052059997 +"Systematic and Population Biology",0.62984891,0.07224051664061484 +Sociology,0.29997993,0.003221245083552797 +"Decision, Risk, and Management Science",0.12795354,0.097273556348267 +Geophysics,0.08049603,0.022331879009996006 +"Law and Social Sciences",0.06500000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..9dfae15f9e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Fluid, Particulate, and Hydraulic Systems",364.05481481,283.2360258681995 +"Organic and Macromolecular Chemistry",299.71225556,79.82382338004409 +"Quantum Electronics, Waves, and Beams",280.53725379,40.08967968847617 +"Metals, Ceramics, and Electronic Materials",218.94047619,14.44749841316656 +"Structures and Building Systems",110.47750000,9.927622069273584 +"Emerging Technologies Initiation",101.42611111,3.4465883980609213 +"Stellar Astronomy and Astrophysics",98.65240278,27.275167014617164 +"Global Atmospheric Research",90.28055556,63.531580104107995 +"Statistics and Probability",52.69561728, +"Design and Computer-Integrated Engineering",50.98981481, +"Polar Aeronomy and Astrophysics",50.34944444,35.60204075854135 +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Volcanology and Mantle Geochemistry",48.00666667,0 +"Theoretical Physics",44.13648148,3.8863777173028686 +Biophysics,39.80336022,26.386475830697922 +"Algebra and Number Theory",39.37916667,3.5074678840012607 +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Experimental Systems",24.23206456,3.046402847031802 +"Cell Biology",21.20512731,2.519094985257857 +Arts,17.27322391,1.2812633375632778 +"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 +"Solid State Chemistry and Polymers",16.21672374,6.170931378438703 +"Geology and Paleontology",13.65055556,9.195084663741797 +Tectonics,8.59051583,0.027937647321332644 +"Solid-State and Microstructures",7.94699670,0.4591933087881705 +Seismology,7.02769444,2.431694700689441 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +"Design, Tools, and Test",2.34500000,0 +"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 +"Galactic Astronomy",1.80356997,0.4327483645961316 +Economics,1.74795089,0.6996960905360882 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +"Physical Chemistry",0.77948613,0.10397217424885151 +"Systematic and Population Biology",0.62984891,0.07224051664061484 +Sociology,0.29997993,0.00460726351698731 +"Decision, Risk, and Management Science",0.12795354,0.10698104049029705 +Geophysics,0.08049603,0.022331879009996006 +"Law and Social Sciences",0.06500000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..9dfae15f9e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Fluid, Particulate, and Hydraulic Systems",364.05481481,283.2360258681995 +"Organic and Macromolecular Chemistry",299.71225556,79.82382338004409 +"Quantum Electronics, Waves, and Beams",280.53725379,40.08967968847617 +"Metals, Ceramics, and Electronic Materials",218.94047619,14.44749841316656 +"Structures and Building Systems",110.47750000,9.927622069273584 +"Emerging Technologies Initiation",101.42611111,3.4465883980609213 +"Stellar Astronomy and Astrophysics",98.65240278,27.275167014617164 +"Global Atmospheric Research",90.28055556,63.531580104107995 +"Statistics and Probability",52.69561728, +"Design and Computer-Integrated Engineering",50.98981481, +"Polar Aeronomy and Astrophysics",50.34944444,35.60204075854135 +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Volcanology and Mantle Geochemistry",48.00666667,0 +"Theoretical Physics",44.13648148,3.8863777173028686 +Biophysics,39.80336022,26.386475830697922 +"Algebra and Number Theory",39.37916667,3.5074678840012607 +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Experimental Systems",24.23206456,3.046402847031802 +"Cell Biology",21.20512731,2.519094985257857 +Arts,17.27322391,1.2812633375632778 +"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 +"Solid State Chemistry and Polymers",16.21672374,6.170931378438703 +"Geology and Paleontology",13.65055556,9.195084663741797 +Tectonics,8.59051583,0.027937647321332644 +"Solid-State and Microstructures",7.94699670,0.4591933087881705 +Seismology,7.02769444,2.431694700689441 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +"Design, Tools, and Test",2.34500000,0 +"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 +"Galactic Astronomy",1.80356997,0.4327483645961316 +Economics,1.74795089,0.6996960905360882 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +"Physical Chemistry",0.77948613,0.10397217424885151 +"Systematic and Population Biology",0.62984891,0.07224051664061484 +Sociology,0.29997993,0.00460726351698731 +"Decision, Risk, and Management Science",0.12795354,0.10698104049029705 +Geophysics,0.08049603,0.022331879009996006 +"Law and Social Sciences",0.06500000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..9dfae15f9e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Fluid, Particulate, and Hydraulic Systems",364.05481481,283.2360258681995 +"Organic and Macromolecular Chemistry",299.71225556,79.82382338004409 +"Quantum Electronics, Waves, and Beams",280.53725379,40.08967968847617 +"Metals, Ceramics, and Electronic Materials",218.94047619,14.44749841316656 +"Structures and Building Systems",110.47750000,9.927622069273584 +"Emerging Technologies Initiation",101.42611111,3.4465883980609213 +"Stellar Astronomy and Astrophysics",98.65240278,27.275167014617164 +"Global Atmospheric Research",90.28055556,63.531580104107995 +"Statistics and Probability",52.69561728, +"Design and Computer-Integrated Engineering",50.98981481, +"Polar Aeronomy and Astrophysics",50.34944444,35.60204075854135 +"Operations Research and Production Systems",49.85089556,1.1100595034642202 +"Volcanology and Mantle Geochemistry",48.00666667,0 +"Theoretical Physics",44.13648148,3.8863777173028686 +Biophysics,39.80336022,26.386475830697922 +"Algebra and Number Theory",39.37916667,3.5074678840012607 +"Systems Prototyping and Fabrication",25.48654262,0.09521527865289223 +"Experimental Systems",24.23206456,3.046402847031802 +"Cell Biology",21.20512731,2.519094985257857 +Arts,17.27322391,1.2812633375632778 +"Biochemistry and Molecular Structure and Function",16.76537037,3.911305555603074 +"Solid State Chemistry and Polymers",16.21672374,6.170931378438703 +"Geology and Paleontology",13.65055556,9.195084663741797 +Tectonics,8.59051583,0.027937647321332644 +"Solid-State and Microstructures",7.94699670,0.4591933087881705 +Seismology,7.02769444,2.431694700689441 +"Extragalactic Astronomy and Cosmology",5.98691667,0.9781127830854605 +"Computer and Computation Theory",5.04208333,1.9381499596292342 +"Design, Tools, and Test",2.34500000,0 +"Polar Ocean and Climate Systems",2.10733760,0.04730850999433886 +"Galactic Astronomy",1.80356997,0.4327483645961316 +Economics,1.74795089,0.6996960905360882 +"Mechanics and Materials",0.97173942,0.00025764463006399947 +"Polar Meteorology",0.88155664,0.09909785167735996 +"Physical Chemistry",0.77948613,0.10397217424885151 +"Systematic and Population Biology",0.62984891,0.07224051664061484 +Sociology,0.29997993,0.00460726351698731 +"Decision, Risk, and Management Science",0.12795354,0.10698104049029705 +Geophysics,0.08049603,0.022331879009996006 +"Law and Social Sciences",0.06500000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv index 2efe51668a..81f31d2b8b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Fluid, Particulate, and Hydraulic Systems] Node Hours: Per Job","[Organic and Macromolecular Chemistry] Node Hours: Per Job","[Quantum Electronics, Waves, and Beams] Node Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Node Hours: Per Job","[Emerging Technologies Initiation] Node Hours: Per Job","[Global Atmospheric Research] Node Hours: Per Job","[Stellar Astronomy and Astrophysics] Node Hours: Per Job","[Structures and Building Systems] Node Hours: Per Job","[Biophysics] Node Hours: Per Job","[Design and Computer-Integrated Engineering] Node Hours: Per Job","[Polar Aeronomy and Astrophysics] Node Hours: Per Job","[Statistics and Probability] Node Hours: Per Job","[Volcanology and Mantle Geochemistry] Node Hours: Per Job","[Operations Research and Production Systems] Node Hours: Per Job","[Theoretical Physics] Node Hours: Per Job","[Algebra and Number Theory] Node Hours: Per Job","[Systems Prototyping and Fabrication] Node Hours: Per Job","[Biochemistry and Molecular Structure and Function] Node Hours: Per Job","[Experimental Systems] Node Hours: Per Job","[Solid State Chemistry and Polymers] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Cell Biology] Node Hours: Per Job","[Geology and Paleontology] Node Hours: Per Job","[Solid-State and Microstructures] Node Hours: Per Job","[Seismology] Node Hours: Per Job","[Extragalactic Astronomy and Cosmology] Node Hours: Per Job","[Tectonics] Node Hours: Per Job","[Computer and Computation Theory] Node Hours: Per Job","[Design, Tools, and Test] Node Hours: Per Job","[Polar Ocean and Climate Systems] Node Hours: Per Job","[Economics] Node Hours: Per Job","[Galactic Astronomy] Node Hours: Per Job","[Mechanics and Materials] Node Hours: Per Job","[Polar Meteorology] Node Hours: Per Job","[Physical Chemistry] Node Hours: Per Job","[Systematic and Population Biology] Node Hours: Per Job","[Sociology] Node Hours: Per Job","[Decision, Risk, and Management Science] Node Hours: Per Job","[Geophysics] Node Hours: Per Job","[Law and Social Sciences] Node Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,24.00000000,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,24.00000000,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,8.12694444,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,24.00000000,0,0,2.70416667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,24.00000000,0,0,0,0,0 -2016-12-27,0,0,103.87259259,0,0,0,123.98500000,0,27.19888889,0,0,20.78689815,0,0,0,0,0,19.90555556,0,110.37185185,0,13.96533333,0,0,0,0,0,0,0,0,0,8.71606481,0,0,8.23638889,0,3.21666667,0,0,0 -2016-12-28,0,204.63521605,121.84400000,0,0,0,110.33416667,0,108.00000000,0,0,9.90712418,4.70055556,13.35268330,5.03972222,3.11533951,5.01598392,24.00000000,8.78983333,41.89046296,0,17.63833333,0,0,0,0,0,0,0,0,0,24.00000000,0,0,23.06965278,0,24.00000000,0,0,0 -2016-12-29,0,274.66666667,180.43835749,69.30071429,50.95777778,129.77777778,105.05000000,25.68611111,108.00000000,0,37.94944444,23.89310847,24.00000000,16.60273286,24.00000000,24.00000000,13.10756221,24.00000000,10.54645833,33.92898889,4.34454545,7.73178763,0,3.62000000,10.40083333,0,0,2.01966667,0,0,0,8.69373843,0,0,17.28543724,0,1.17898003,26.97722222,0,0 -2016-12-30,205.67851852,190.40452991,141.05838294,130.70500000,63.81250000,50.35000000,64.49861111,71.96340278,108.00000000,0,24.00027778,18.94011905,19.30611111,21.71949405,15.09675926,14.55335859,13.31263065,11.72422222,13.41648148,5.43139178,9.68358547,7.32493056,2.52592593,16.84687500,13.60638889,3.48631944,4.25015531,4.10559722,2.34500000,0,1.36229167,0.89853754,0.97252976,1.58977533,0.37156165,0.56942901,0.34371670,0.17419134,0.08049603,0.06500000 -2016-12-31,475.12888889,53.59320513,77.97748843,132.54333333,81.42285714,0,40.94743056,51.34208333,36.07513889,33.22259259,14.74888889,23.17923611,0,10.83064379,0,24.00000000,12.53390738,1.92791667,10.97790404,1.97834003,15.93161523,14.97629630,21.37166667,7.28581633,6.47384921,7.65398148,5.54019436,8.63138889,0,0.19661458,2.93026709,6.74688889,0.97299603,1.07971065,0.59342052,1.04561111,0.38194742,0.01479010,0,0 -2017-01-01,0,0.88986111,11.65923611,0,55.64063492,0.43333333,29.48169753,0,7.49293210,17.76722222,0,11.20848700,0,13.34534574,0,5.04583333,11.50582962,0,8.59888889,0,6.53122222,17.62535714,4.28111111,17.62916667,0.47638889,0,0,0,0,2.11436355,0.68703333,11.62486111,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 +Day,"[Fluid, Particulate, and Hydraulic Systems] Node Hours: Per Job","[Organic and Macromolecular Chemistry] Node Hours: Per Job","[Quantum Electronics, Waves, and Beams] Node Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Node Hours: Per Job","[Structures and Building Systems] Node Hours: Per Job","[Emerging Technologies Initiation] Node Hours: Per Job","[Stellar Astronomy and Astrophysics] Node Hours: Per Job","[Global Atmospheric Research] Node Hours: Per Job","[Statistics and Probability] Node Hours: Per Job","[Design and Computer-Integrated Engineering] Node Hours: Per Job","[Polar Aeronomy and Astrophysics] Node Hours: Per Job","[Operations Research and Production Systems] Node Hours: Per Job","[Volcanology and Mantle Geochemistry] Node Hours: Per Job","[Theoretical Physics] Node Hours: Per Job","[Biophysics] Node Hours: Per Job","[Algebra and Number Theory] Node Hours: Per Job","[Systems Prototyping and Fabrication] Node Hours: Per Job","[Experimental Systems] Node Hours: Per Job","[Cell Biology] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Biochemistry and Molecular Structure and Function] Node Hours: Per Job","[Solid State Chemistry and Polymers] Node Hours: Per Job","[Geology and Paleontology] Node Hours: Per Job","[Tectonics] Node Hours: Per Job","[Solid-State and Microstructures] Node Hours: Per Job","[Seismology] Node Hours: Per Job","[Extragalactic Astronomy and Cosmology] Node Hours: Per Job","[Computer and Computation Theory] Node Hours: Per Job","[Design, Tools, and Test] Node Hours: Per Job","[Polar Ocean and Climate Systems] Node Hours: Per Job","[Galactic Astronomy] Node Hours: Per Job","[Economics] Node Hours: Per Job","[Mechanics and Materials] Node Hours: Per Job","[Polar Meteorology] Node Hours: Per Job","[Physical Chemistry] Node Hours: Per Job","[Systematic and Population Biology] Node Hours: Per Job","[Sociology] Node Hours: Per Job","[Decision, Risk, and Management Science] Node Hours: Per Job","[Geophysics] Node Hours: Per Job","[Law and Social Sciences] Node Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,24.00000000,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,8.12694444,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,2.70416667,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-27,0,0,103.87259259,0,0,0,123.98500000,0,20.78689815,0,0,0,0,0,27.19888889,0,0,0,13.96533333,0,19.90555556,110.37185185,0,0,0,0,0,0,0,0,8.71606481,0,0,0,8.23638889,0,3.21666667,0,0,0 +2016-12-28,0,204.63521605,121.84400000,0,0,0,110.33416667,0,9.90712418,0,0,13.35268330,4.70055556,5.03972222,108.00000000,3.11533951,5.01598392,8.78983333,17.63833333,0,24.00000000,41.89046296,0,0,0,0,0,0,0,0,24.00000000,0,0,0,23.06965278,0,24.00000000,0,0,0 +2016-12-29,0,274.66666667,180.43835749,69.30071429,25.68611111,50.95777778,105.05000000,129.77777778,23.89310847,0,37.94944444,16.60273286,24.00000000,24.00000000,108.00000000,24.00000000,13.10756221,10.54645833,7.73178763,4.34454545,24.00000000,33.92898889,0,0,3.62000000,10.40083333,0,2.01966667,0,0,8.69373843,0,0,0,17.28543724,0,1.17898003,26.97722222,0,0 +2016-12-30,205.67851852,190.40452991,141.05838294,130.70500000,71.96340278,63.81250000,64.49861111,50.35000000,18.94011905,0,24.00027778,21.71949405,19.30611111,15.09675926,108.00000000,14.55335859,13.31263065,13.41648148,7.32493056,9.68358547,11.72422222,5.43139178,2.52592593,4.25015531,16.84687500,13.60638889,3.48631944,4.10559722,2.34500000,0,0.89853754,1.36229167,0.97252976,1.58977533,0.37156165,0.56942901,0.34371670,0.17419134,0.08049603,0.06500000 +2016-12-31,475.12888889,53.59320513,77.97748843,132.54333333,51.34208333,81.42285714,40.94743056,0,23.17923611,33.22259259,14.74888889,10.83064379,0,0,36.07513889,24.00000000,12.53390738,10.97790404,14.97629630,15.93161523,1.92791667,1.97834003,21.37166667,5.54019436,7.28581633,6.47384921,7.65398148,8.63138889,0,0.19661458,6.74688889,2.93026709,0.97299603,1.07971065,0.59342052,1.04561111,0.38194742,0.01479010,0,0 +2017-01-01,0,0.88986111,11.65923611,0,0,55.64063492,29.48169753,0.43333333,11.20848700,17.76722222,0,13.34534574,0,0,7.49293210,5.04583333,11.50582962,8.59888889,17.62535714,6.53122222,0,0,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv index 81cb006bf1..3553c085c4 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Fluid, Particulate, and Hydraulic Systems] Node Hours: Per Job","[Organic and Macromolecular Chemistry] Node Hours: Per Job","[Quantum Electronics, Waves, and Beams] Node Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Node Hours: Per Job","[Structures and Building Systems] Node Hours: Per Job","[Global Atmospheric Research] Node Hours: Per Job","[Emerging Technologies Initiation] Node Hours: Per Job","[Stellar Astronomy and Astrophysics] Node Hours: Per Job","[Polar Aeronomy and Astrophysics] Node Hours: Per Job","[Volcanology and Mantle Geochemistry] Node Hours: Per Job","[Theoretical Physics] Node Hours: Per Job","[Operations Research and Production Systems] Node Hours: Per Job","[Biophysics] Node Hours: Per Job","[Algebra and Number Theory] Node Hours: Per Job","[Statistics and Probability] Node Hours: Per Job","[Design and Computer-Integrated Engineering] Node Hours: Per Job","[Experimental Systems] Node Hours: Per Job","[Systems Prototyping and Fabrication] Node Hours: Per Job","[Cell Biology] Node Hours: Per Job","[Biochemistry and Molecular Structure and Function] Node Hours: Per Job","[Solid State Chemistry and Polymers] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Geology and Paleontology] Node Hours: Per Job","[Tectonics] Node Hours: Per Job","[Solid-State and Microstructures] Node Hours: Per Job","[Seismology] Node Hours: Per Job","[Extragalactic Astronomy and Cosmology] Node Hours: Per Job","[Computer and Computation Theory] Node Hours: Per Job","[Design, Tools, and Test] Node Hours: Per Job","[Polar Ocean and Climate Systems] Node Hours: Per Job","[Galactic Astronomy] Node Hours: Per Job","[Economics] Node Hours: Per Job","[Mechanics and Materials] Node Hours: Per Job","[Polar Meteorology] Node Hours: Per Job","[Physical Chemistry] Node Hours: Per Job","[Systematic and Population Biology] Node Hours: Per Job","[Sociology] Node Hours: Per Job","[Decision, Risk, and Management Science] Node Hours: Per Job","[Geophysics] Node Hours: Per Job","[Law and Social Sciences] Node Hours: Per Job" -2016-12,364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,180.12777778,102.77777778,113.84751852,50.34944444,48.00666667,44.13648148,48.78758939,171.93250000,38.92045455,42.94008230,33.22259259,26.76558429,23.01874399,19.49155093,16.76537037,16.21672374,16.77843434,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 -2017-01,0,0.88986111,11.65923611,0,0,0.43333333,55.64063492,29.48169753,0,0,0,13.34534574,7.49293210,5.04583333,11.20848700,17.76722222,8.59888889,11.50582962,17.62535714,0,0,6.53122222,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 +Month,"[Fluid, Particulate, and Hydraulic Systems] Node Hours: Per Job","[Organic and Macromolecular Chemistry] Node Hours: Per Job","[Quantum Electronics, Waves, and Beams] Node Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Node Hours: Per Job","[Structures and Building Systems] Node Hours: Per Job","[Emerging Technologies Initiation] Node Hours: Per Job","[Stellar Astronomy and Astrophysics] Node Hours: Per Job","[Global Atmospheric Research] Node Hours: Per Job","[Statistics and Probability] Node Hours: Per Job","[Design and Computer-Integrated Engineering] Node Hours: Per Job","[Polar Aeronomy and Astrophysics] Node Hours: Per Job","[Operations Research and Production Systems] Node Hours: Per Job","[Volcanology and Mantle Geochemistry] Node Hours: Per Job","[Theoretical Physics] Node Hours: Per Job","[Biophysics] Node Hours: Per Job","[Algebra and Number Theory] Node Hours: Per Job","[Systems Prototyping and Fabrication] Node Hours: Per Job","[Experimental Systems] Node Hours: Per Job","[Cell Biology] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Biochemistry and Molecular Structure and Function] Node Hours: Per Job","[Solid State Chemistry and Polymers] Node Hours: Per Job","[Geology and Paleontology] Node Hours: Per Job","[Tectonics] Node Hours: Per Job","[Solid-State and Microstructures] Node Hours: Per Job","[Seismology] Node Hours: Per Job","[Extragalactic Astronomy and Cosmology] Node Hours: Per Job","[Computer and Computation Theory] Node Hours: Per Job","[Design, Tools, and Test] Node Hours: Per Job","[Polar Ocean and Climate Systems] Node Hours: Per Job","[Galactic Astronomy] Node Hours: Per Job","[Economics] Node Hours: Per Job","[Mechanics and Materials] Node Hours: Per Job","[Polar Meteorology] Node Hours: Per Job","[Physical Chemistry] Node Hours: Per Job","[Systematic and Population Biology] Node Hours: Per Job","[Sociology] Node Hours: Per Job","[Decision, Risk, and Management Science] Node Hours: Per Job","[Geophysics] Node Hours: Per Job","[Law and Social Sciences] Node Hours: Per Job" +2016-12,364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,102.77777778,113.84751852,180.12777778,42.94008230,33.22259259,50.34944444,48.78758939,48.00666667,44.13648148,171.93250000,38.92045455,23.01874399,26.76558429,19.49155093,16.77843434,16.76537037,16.21672374,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 +2017-01,0,0.88986111,11.65923611,0,0,55.64063492,29.48169753,0.43333333,11.20848700,17.76722222,0,13.34534574,0,0,7.49293210,5.04583333,11.50582962,8.59888889,17.62535714,6.53122222,0,0,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv index f94e8e5462..9de203e4da 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Fluid, Particulate, and Hydraulic Systems] Node Hours: Per Job","[Organic and Macromolecular Chemistry] Node Hours: Per Job","[Quantum Electronics, Waves, and Beams] Node Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Node Hours: Per Job","[Structures and Building Systems] Node Hours: Per Job","[Global Atmospheric Research] Node Hours: Per Job","[Emerging Technologies Initiation] Node Hours: Per Job","[Stellar Astronomy and Astrophysics] Node Hours: Per Job","[Polar Aeronomy and Astrophysics] Node Hours: Per Job","[Volcanology and Mantle Geochemistry] Node Hours: Per Job","[Theoretical Physics] Node Hours: Per Job","[Operations Research and Production Systems] Node Hours: Per Job","[Biophysics] Node Hours: Per Job","[Algebra and Number Theory] Node Hours: Per Job","[Statistics and Probability] Node Hours: Per Job","[Design and Computer-Integrated Engineering] Node Hours: Per Job","[Experimental Systems] Node Hours: Per Job","[Systems Prototyping and Fabrication] Node Hours: Per Job","[Cell Biology] Node Hours: Per Job","[Biochemistry and Molecular Structure and Function] Node Hours: Per Job","[Solid State Chemistry and Polymers] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Geology and Paleontology] Node Hours: Per Job","[Tectonics] Node Hours: Per Job","[Solid-State and Microstructures] Node Hours: Per Job","[Seismology] Node Hours: Per Job","[Extragalactic Astronomy and Cosmology] Node Hours: Per Job","[Computer and Computation Theory] Node Hours: Per Job","[Design, Tools, and Test] Node Hours: Per Job","[Polar Ocean and Climate Systems] Node Hours: Per Job","[Galactic Astronomy] Node Hours: Per Job","[Economics] Node Hours: Per Job","[Mechanics and Materials] Node Hours: Per Job","[Polar Meteorology] Node Hours: Per Job","[Physical Chemistry] Node Hours: Per Job","[Systematic and Population Biology] Node Hours: Per Job","[Sociology] Node Hours: Per Job","[Decision, Risk, and Management Science] Node Hours: Per Job","[Geophysics] Node Hours: Per Job","[Law and Social Sciences] Node Hours: Per Job" -"2016 Q4",364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,180.12777778,102.77777778,113.84751852,50.34944444,48.00666667,44.13648148,48.78758939,171.93250000,38.92045455,42.94008230,33.22259259,26.76558429,23.01874399,19.49155093,16.76537037,16.21672374,16.77843434,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 -"2017 Q1",0,0.88986111,11.65923611,0,0,0.43333333,55.64063492,29.48169753,0,0,0,13.34534574,7.49293210,5.04583333,11.20848700,17.76722222,8.59888889,11.50582962,17.62535714,0,0,6.53122222,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 +Quarter,"[Fluid, Particulate, and Hydraulic Systems] Node Hours: Per Job","[Organic and Macromolecular Chemistry] Node Hours: Per Job","[Quantum Electronics, Waves, and Beams] Node Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Node Hours: Per Job","[Structures and Building Systems] Node Hours: Per Job","[Emerging Technologies Initiation] Node Hours: Per Job","[Stellar Astronomy and Astrophysics] Node Hours: Per Job","[Global Atmospheric Research] Node Hours: Per Job","[Statistics and Probability] Node Hours: Per Job","[Design and Computer-Integrated Engineering] Node Hours: Per Job","[Polar Aeronomy and Astrophysics] Node Hours: Per Job","[Operations Research and Production Systems] Node Hours: Per Job","[Volcanology and Mantle Geochemistry] Node Hours: Per Job","[Theoretical Physics] Node Hours: Per Job","[Biophysics] Node Hours: Per Job","[Algebra and Number Theory] Node Hours: Per Job","[Systems Prototyping and Fabrication] Node Hours: Per Job","[Experimental Systems] Node Hours: Per Job","[Cell Biology] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Biochemistry and Molecular Structure and Function] Node Hours: Per Job","[Solid State Chemistry and Polymers] Node Hours: Per Job","[Geology and Paleontology] Node Hours: Per Job","[Tectonics] Node Hours: Per Job","[Solid-State and Microstructures] Node Hours: Per Job","[Seismology] Node Hours: Per Job","[Extragalactic Astronomy and Cosmology] Node Hours: Per Job","[Computer and Computation Theory] Node Hours: Per Job","[Design, Tools, and Test] Node Hours: Per Job","[Polar Ocean and Climate Systems] Node Hours: Per Job","[Galactic Astronomy] Node Hours: Per Job","[Economics] Node Hours: Per Job","[Mechanics and Materials] Node Hours: Per Job","[Polar Meteorology] Node Hours: Per Job","[Physical Chemistry] Node Hours: Per Job","[Systematic and Population Biology] Node Hours: Per Job","[Sociology] Node Hours: Per Job","[Decision, Risk, and Management Science] Node Hours: Per Job","[Geophysics] Node Hours: Per Job","[Law and Social Sciences] Node Hours: Per Job" +"2016 Q4",364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,102.77777778,113.84751852,180.12777778,42.94008230,33.22259259,50.34944444,48.78758939,48.00666667,44.13648148,171.93250000,38.92045455,23.01874399,26.76558429,19.49155093,16.77843434,16.76537037,16.21672374,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 +"2017 Q1",0,0.88986111,11.65923611,0,0,55.64063492,29.48169753,0.43333333,11.20848700,17.76722222,0,13.34534574,0,0,7.49293210,5.04583333,11.50582962,8.59888889,17.62535714,6.53122222,0,0,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv index aa815019cb..a70b30110d 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Fluid, Particulate, and Hydraulic Systems] Node Hours: Per Job","[Organic and Macromolecular Chemistry] Node Hours: Per Job","[Quantum Electronics, Waves, and Beams] Node Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Node Hours: Per Job","[Structures and Building Systems] Node Hours: Per Job","[Global Atmospheric Research] Node Hours: Per Job","[Emerging Technologies Initiation] Node Hours: Per Job","[Stellar Astronomy and Astrophysics] Node Hours: Per Job","[Polar Aeronomy and Astrophysics] Node Hours: Per Job","[Volcanology and Mantle Geochemistry] Node Hours: Per Job","[Theoretical Physics] Node Hours: Per Job","[Operations Research and Production Systems] Node Hours: Per Job","[Biophysics] Node Hours: Per Job","[Algebra and Number Theory] Node Hours: Per Job","[Statistics and Probability] Node Hours: Per Job","[Design and Computer-Integrated Engineering] Node Hours: Per Job","[Experimental Systems] Node Hours: Per Job","[Systems Prototyping and Fabrication] Node Hours: Per Job","[Cell Biology] Node Hours: Per Job","[Biochemistry and Molecular Structure and Function] Node Hours: Per Job","[Solid State Chemistry and Polymers] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Geology and Paleontology] Node Hours: Per Job","[Tectonics] Node Hours: Per Job","[Solid-State and Microstructures] Node Hours: Per Job","[Seismology] Node Hours: Per Job","[Extragalactic Astronomy and Cosmology] Node Hours: Per Job","[Computer and Computation Theory] Node Hours: Per Job","[Design, Tools, and Test] Node Hours: Per Job","[Polar Ocean and Climate Systems] Node Hours: Per Job","[Galactic Astronomy] Node Hours: Per Job","[Economics] Node Hours: Per Job","[Mechanics and Materials] Node Hours: Per Job","[Polar Meteorology] Node Hours: Per Job","[Physical Chemistry] Node Hours: Per Job","[Systematic and Population Biology] Node Hours: Per Job","[Sociology] Node Hours: Per Job","[Decision, Risk, and Management Science] Node Hours: Per Job","[Geophysics] Node Hours: Per Job","[Law and Social Sciences] Node Hours: Per Job" -2016,364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,180.12777778,102.77777778,113.84751852,50.34944444,48.00666667,44.13648148,48.78758939,171.93250000,38.92045455,42.94008230,33.22259259,26.76558429,23.01874399,19.49155093,16.76537037,16.21672374,16.77843434,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 -2017,0,0.88986111,11.65923611,0,0,0.43333333,55.64063492,29.48169753,0,0,0,13.34534574,7.49293210,5.04583333,11.20848700,17.76722222,8.59888889,11.50582962,17.62535714,0,0,6.53122222,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 +Year,"[Fluid, Particulate, and Hydraulic Systems] Node Hours: Per Job","[Organic and Macromolecular Chemistry] Node Hours: Per Job","[Quantum Electronics, Waves, and Beams] Node Hours: Per Job","[Metals, Ceramics, and Electronic Materials] Node Hours: Per Job","[Structures and Building Systems] Node Hours: Per Job","[Emerging Technologies Initiation] Node Hours: Per Job","[Stellar Astronomy and Astrophysics] Node Hours: Per Job","[Global Atmospheric Research] Node Hours: Per Job","[Statistics and Probability] Node Hours: Per Job","[Design and Computer-Integrated Engineering] Node Hours: Per Job","[Polar Aeronomy and Astrophysics] Node Hours: Per Job","[Operations Research and Production Systems] Node Hours: Per Job","[Volcanology and Mantle Geochemistry] Node Hours: Per Job","[Theoretical Physics] Node Hours: Per Job","[Biophysics] Node Hours: Per Job","[Algebra and Number Theory] Node Hours: Per Job","[Systems Prototyping and Fabrication] Node Hours: Per Job","[Experimental Systems] Node Hours: Per Job","[Cell Biology] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Biochemistry and Molecular Structure and Function] Node Hours: Per Job","[Solid State Chemistry and Polymers] Node Hours: Per Job","[Geology and Paleontology] Node Hours: Per Job","[Tectonics] Node Hours: Per Job","[Solid-State and Microstructures] Node Hours: Per Job","[Seismology] Node Hours: Per Job","[Extragalactic Astronomy and Cosmology] Node Hours: Per Job","[Computer and Computation Theory] Node Hours: Per Job","[Design, Tools, and Test] Node Hours: Per Job","[Polar Ocean and Climate Systems] Node Hours: Per Job","[Galactic Astronomy] Node Hours: Per Job","[Economics] Node Hours: Per Job","[Mechanics and Materials] Node Hours: Per Job","[Polar Meteorology] Node Hours: Per Job","[Physical Chemistry] Node Hours: Per Job","[Systematic and Population Biology] Node Hours: Per Job","[Sociology] Node Hours: Per Job","[Decision, Risk, and Management Science] Node Hours: Per Job","[Geophysics] Node Hours: Per Job","[Law and Social Sciences] Node Hours: Per Job" +2016,364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,102.77777778,113.84751852,180.12777778,42.94008230,33.22259259,50.34944444,48.78758939,48.00666667,44.13648148,171.93250000,38.92045455,23.01874399,26.76558429,19.49155093,16.77843434,16.76537037,16.21672374,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 +2017,0,0.88986111,11.65923611,0,0,55.64063492,29.48169753,0.43333333,11.20848700,17.76722222,0,13.34534574,0,0,7.49293210,5.04583333,11.50582962,8.59888889,17.62535714,6.53122222,0,0,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv index 68ce959394..0b7d8ef8fe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",224.0000,72.73696905059123 +"Global Atmospheric Research",160.0000,0 +"Structures and Building Systems",112.0000,0 +"Design, Tools, and Test",108.0000,0 +"Emerging Technologies Initiation",96.0000,0 +"Organic and Macromolecular Chemistry",94.0800,13.913782519502021 +"Metals, Ceramics, and Electronic Materials",72.0000,0 +"Quantum Electronics, Waves, and Beams",59.3409,6.100056156105137 +"Stellar Astronomy and Astrophysics",52.2000,3.5267548823245414 +"Systematic and Population Biology",42.4937,2.1967513051929584 +"Polar Aeronomy and Astrophysics",28.0000,8.48528137423857 +Economics,24.0145,1.2257293401539964 +"Design and Computer-Integrated Engineering",23.1111,0.8380524817467393 +Geophysics,20.0000,0 +"Volcanology and Mantle Geochemistry",20.0000,0 +"Solid State Chemistry and Polymers",18.9315,1.0384183998010423 +"Geology and Paleontology",18.7500,11.90784930203603 +"Law and Social Sciences",16.0000,0 +"Algebra and Number Theory",12.0000,0 +"Polar Ocean and Climate Systems",12.0000,0 +"Theoretical Physics",12.0000,0 +Arts,11.0909,0.35773447517085943 +Seismology,10.9000,0.7273238618387268 +"Statistics and Probability",10.7037,0.5806845388269148 +Biophysics,10.4839,2.317589156067726 +Sociology,9.4136,0.00817111972673608 +"Experimental Systems",9.1892,0.3005663947224767 +"Physical Chemistry",8.3335,0.03265027676775671 +"Galactic Astronomy",4.2359,0.10099005099930815 +"Cell Biology",3.0833,0.5345869237466392 +"Solid-State and Microstructures",2.2970,0.1689240965440023 +"Biochemistry and Molecular Structure and Function",1.7333,0.7084673076458524 +"Decision, Risk, and Management Science",1.0418,0.029529889560875294 +"Computer and Computation Theory",1.0000,0 +"Extragalactic Astronomy and Cosmology",1.0000,0 +"Mechanics and Materials",1.0000,0 +"Operations Research and Production Systems",1.0000,0 +"Polar Meteorology",1.0000,0 +"Systems Prototyping and Fabrication",1.0000,0 +Tectonics,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv index 68ce959394..0b7d8ef8fe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",224.0000,72.73696905059123 +"Global Atmospheric Research",160.0000,0 +"Structures and Building Systems",112.0000,0 +"Design, Tools, and Test",108.0000,0 +"Emerging Technologies Initiation",96.0000,0 +"Organic and Macromolecular Chemistry",94.0800,13.913782519502021 +"Metals, Ceramics, and Electronic Materials",72.0000,0 +"Quantum Electronics, Waves, and Beams",59.3409,6.100056156105137 +"Stellar Astronomy and Astrophysics",52.2000,3.5267548823245414 +"Systematic and Population Biology",42.4937,2.1967513051929584 +"Polar Aeronomy and Astrophysics",28.0000,8.48528137423857 +Economics,24.0145,1.2257293401539964 +"Design and Computer-Integrated Engineering",23.1111,0.8380524817467393 +Geophysics,20.0000,0 +"Volcanology and Mantle Geochemistry",20.0000,0 +"Solid State Chemistry and Polymers",18.9315,1.0384183998010423 +"Geology and Paleontology",18.7500,11.90784930203603 +"Law and Social Sciences",16.0000,0 +"Algebra and Number Theory",12.0000,0 +"Polar Ocean and Climate Systems",12.0000,0 +"Theoretical Physics",12.0000,0 +Arts,11.0909,0.35773447517085943 +Seismology,10.9000,0.7273238618387268 +"Statistics and Probability",10.7037,0.5806845388269148 +Biophysics,10.4839,2.317589156067726 +Sociology,9.4136,0.00817111972673608 +"Experimental Systems",9.1892,0.3005663947224767 +"Physical Chemistry",8.3335,0.03265027676775671 +"Galactic Astronomy",4.2359,0.10099005099930815 +"Cell Biology",3.0833,0.5345869237466392 +"Solid-State and Microstructures",2.2970,0.1689240965440023 +"Biochemistry and Molecular Structure and Function",1.7333,0.7084673076458524 +"Decision, Risk, and Management Science",1.0418,0.029529889560875294 +"Computer and Computation Theory",1.0000,0 +"Extragalactic Astronomy and Cosmology",1.0000,0 +"Mechanics and Materials",1.0000,0 +"Operations Research and Production Systems",1.0000,0 +"Polar Meteorology",1.0000,0 +"Systems Prototyping and Fabrication",1.0000,0 +Tectonics,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..0b7d8ef8fe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",224.0000,72.73696905059123 +"Global Atmospheric Research",160.0000,0 +"Structures and Building Systems",112.0000,0 +"Design, Tools, and Test",108.0000,0 +"Emerging Technologies Initiation",96.0000,0 +"Organic and Macromolecular Chemistry",94.0800,13.913782519502021 +"Metals, Ceramics, and Electronic Materials",72.0000,0 +"Quantum Electronics, Waves, and Beams",59.3409,6.100056156105137 +"Stellar Astronomy and Astrophysics",52.2000,3.5267548823245414 +"Systematic and Population Biology",42.4937,2.1967513051929584 +"Polar Aeronomy and Astrophysics",28.0000,8.48528137423857 +Economics,24.0145,1.2257293401539964 +"Design and Computer-Integrated Engineering",23.1111,0.8380524817467393 +Geophysics,20.0000,0 +"Volcanology and Mantle Geochemistry",20.0000,0 +"Solid State Chemistry and Polymers",18.9315,1.0384183998010423 +"Geology and Paleontology",18.7500,11.90784930203603 +"Law and Social Sciences",16.0000,0 +"Algebra and Number Theory",12.0000,0 +"Polar Ocean and Climate Systems",12.0000,0 +"Theoretical Physics",12.0000,0 +Arts,11.0909,0.35773447517085943 +Seismology,10.9000,0.7273238618387268 +"Statistics and Probability",10.7037,0.5806845388269148 +Biophysics,10.4839,2.317589156067726 +Sociology,9.4136,0.00817111972673608 +"Experimental Systems",9.1892,0.3005663947224767 +"Physical Chemistry",8.3335,0.03265027676775671 +"Galactic Astronomy",4.2359,0.10099005099930815 +"Cell Biology",3.0833,0.5345869237466392 +"Solid-State and Microstructures",2.2970,0.1689240965440023 +"Biochemistry and Molecular Structure and Function",1.7333,0.7084673076458524 +"Decision, Risk, and Management Science",1.0418,0.029529889560875294 +"Computer and Computation Theory",1.0000,0 +"Extragalactic Astronomy and Cosmology",1.0000,0 +"Mechanics and Materials",1.0000,0 +"Operations Research and Production Systems",1.0000,0 +"Polar Meteorology",1.0000,0 +"Systems Prototyping and Fabrication",1.0000,0 +Tectonics,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv index 68ce959394..0b7d8ef8fe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Fluid, Particulate, and Hydraulic Systems",224.0000,72.73696905059123 +"Global Atmospheric Research",160.0000,0 +"Structures and Building Systems",112.0000,0 +"Design, Tools, and Test",108.0000,0 +"Emerging Technologies Initiation",96.0000,0 +"Organic and Macromolecular Chemistry",94.0800,13.913782519502021 +"Metals, Ceramics, and Electronic Materials",72.0000,0 +"Quantum Electronics, Waves, and Beams",59.3409,6.100056156105137 +"Stellar Astronomy and Astrophysics",52.2000,3.5267548823245414 +"Systematic and Population Biology",42.4937,2.1967513051929584 +"Polar Aeronomy and Astrophysics",28.0000,8.48528137423857 +Economics,24.0145,1.2257293401539964 +"Design and Computer-Integrated Engineering",23.1111,0.8380524817467393 +Geophysics,20.0000,0 +"Volcanology and Mantle Geochemistry",20.0000,0 +"Solid State Chemistry and Polymers",18.9315,1.0384183998010423 +"Geology and Paleontology",18.7500,11.90784930203603 +"Law and Social Sciences",16.0000,0 +"Algebra and Number Theory",12.0000,0 +"Polar Ocean and Climate Systems",12.0000,0 +"Theoretical Physics",12.0000,0 +Arts,11.0909,0.35773447517085943 +Seismology,10.9000,0.7273238618387268 +"Statistics and Probability",10.7037,0.5806845388269148 +Biophysics,10.4839,2.317589156067726 +Sociology,9.4136,0.00817111972673608 +"Experimental Systems",9.1892,0.3005663947224767 +"Physical Chemistry",8.3335,0.03265027676775671 +"Galactic Astronomy",4.2359,0.10099005099930815 +"Cell Biology",3.0833,0.5345869237466392 +"Solid-State and Microstructures",2.2970,0.1689240965440023 +"Biochemistry and Molecular Structure and Function",1.7333,0.7084673076458524 +"Decision, Risk, and Management Science",1.0418,0.029529889560875294 +"Computer and Computation Theory",1.0000,0 +"Extragalactic Astronomy and Cosmology",1.0000,0 +"Mechanics and Materials",1.0000,0 +"Operations Research and Production Systems",1.0000,0 +"Polar Meteorology",1.0000,0 +"Systems Prototyping and Fabrication",1.0000,0 +Tectonics,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv index 333762ee8f..7c354f6ea7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Per Job (Core Count)","[Global Atmospheric Research] Job Size: Per Job (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Per Job (Core Count)","[Structures and Building Systems] Job Size: Per Job (Core Count)","[Design, Tools, and Test] Job Size: Per Job (Core Count)","[Emerging Technologies Initiation] Job Size: Per Job (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Per Job (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Per Job (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Per Job (Core Count)","[Systematic and Population Biology] Job Size: Per Job (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Per Job (Core Count)","[Economics] Job Size: Per Job (Core Count)","[Geology and Paleontology] Job Size: Per Job (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Per Job (Core Count)","[Solid State Chemistry and Polymers] Job Size: Per Job (Core Count)","[Geophysics] Job Size: Per Job (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Per Job (Core Count)","[Biophysics] Job Size: Per Job (Core Count)","[Law and Social Sciences] Job Size: Per Job (Core Count)","[Statistics and Probability] Job Size: Per Job (Core Count)","[Algebra and Number Theory] Job Size: Per Job (Core Count)","[Polar Ocean and Climate Systems] Job Size: Per Job (Core Count)","[Theoretical Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Seismology] Job Size: Per Job (Core Count)","[Sociology] Job Size: Per Job (Core Count)","[Experimental Systems] Job Size: Per Job (Core Count)","[Physical Chemistry] Job Size: Per Job (Core Count)","[Galactic Astronomy] Job Size: Per Job (Core Count)","[Cell Biology] Job Size: Per Job (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Per Job (Core Count)","[Solid-State and Microstructures] Job Size: Per Job (Core Count)","[Decision, Risk, and Management Science] Job Size: Per Job (Core Count)","[Computer and Computation Theory] Job Size: Per Job (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Per Job (Core Count)","[Mechanics and Materials] Job Size: Per Job (Core Count)","[Operations Research and Production Systems] Job Size: Per Job (Core Count)","[Polar Meteorology] Job Size: Per Job (Core Count)","[Systems Prototyping and Fabrication] Job Size: Per Job (Core Count)","[Tectonics] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,12.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,12.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,18.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,16.0000,0,0,0,0,0,0,0,18.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,96.0000,0,72.0000,0,0,0,0,0,69.3333,0,0,38.0000,0,13.5000,0,0,0,0,0,1.0000,0,25.7143,13.5000,8.0000,12.0000,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,183.1111,0,0,0,96.0000,0,60.0000,0,0,0,0,0,34.6667,0,20.0000,38.0000,0,15.1176,12.0000,0,12.0000,0,0,1.0000,8.0000,26.6000,13.5000,8.0000,12.0000,0,0,0,0,0,1.0000,0,1.0000,0 -2016-12-29,0,160.0000,183.1111,112.0000,0,96.0000,91.8696,72.0000,60.0000,0,40.0000,0,0,0,27.0400,0,20.0000,38.0000,0,15.2857,12.0000,0,12.0000,11.2727,5.0000,9.3672,8.0000,17.9259,9.4167,2.3548,12.0000,2.0000,56.0000,1.0000,0,0,1.0000,0,1.0000,0 -2016-12-30,224.0000,160.0000,141.5385,112.0000,108.0000,96.0000,77.9286,72.0000,61.7143,44.0444,28.0000,24.6500,23.3333,0,20.1250,20.0000,20.0000,38.0000,16.0000,15.2857,12.0000,0,12.0000,11.2000,5.0000,9.0887,9.0000,8.2788,4.2351,2.7941,1.7333,9.5000,1.0647,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,336.0000,0,146.4615,112.0000,0,96.0000,78.0833,72.0000,53.0000,92.4000,40.0000,24.4615,32.5000,23.1111,16.4337,0,0,30.0000,0,10.3542,12.0000,12.0000,0,10.8889,11.4286,9.8789,10.0000,8.2365,8.3000,8.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01-01,0,160.0000,32.0000,0,0,96.0000,53.0000,0,49.3333,37.8993,0,24.0000,5.0000,23.1111,0,0,0,8.1852,0,10.5532,12.0000,12.0000,0,10.4000,12.0000,9.1352,8.0000,10.4080,8.5000,8.0000,0,2.0000,0,0,0,1.0000,1.0000,1.0000,1.0000,0 +Day,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Per Job (Core Count)","[Global Atmospheric Research] Job Size: Per Job (Core Count)","[Structures and Building Systems] Job Size: Per Job (Core Count)","[Design, Tools, and Test] Job Size: Per Job (Core Count)","[Emerging Technologies Initiation] Job Size: Per Job (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Per Job (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Per Job (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Per Job (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Per Job (Core Count)","[Systematic and Population Biology] Job Size: Per Job (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Per Job (Core Count)","[Economics] Job Size: Per Job (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Per Job (Core Count)","[Geophysics] Job Size: Per Job (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Per Job (Core Count)","[Solid State Chemistry and Polymers] Job Size: Per Job (Core Count)","[Geology and Paleontology] Job Size: Per Job (Core Count)","[Law and Social Sciences] Job Size: Per Job (Core Count)","[Algebra and Number Theory] Job Size: Per Job (Core Count)","[Polar Ocean and Climate Systems] Job Size: Per Job (Core Count)","[Theoretical Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Seismology] Job Size: Per Job (Core Count)","[Statistics and Probability] Job Size: Per Job (Core Count)","[Biophysics] Job Size: Per Job (Core Count)","[Sociology] Job Size: Per Job (Core Count)","[Experimental Systems] Job Size: Per Job (Core Count)","[Physical Chemistry] Job Size: Per Job (Core Count)","[Galactic Astronomy] Job Size: Per Job (Core Count)","[Cell Biology] Job Size: Per Job (Core Count)","[Solid-State and Microstructures] Job Size: Per Job (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Per Job (Core Count)","[Decision, Risk, and Management Science] Job Size: Per Job (Core Count)","[Computer and Computation Theory] Job Size: Per Job (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Per Job (Core Count)","[Mechanics and Materials] Job Size: Per Job (Core Count)","[Operations Research and Production Systems] Job Size: Per Job (Core Count)","[Polar Meteorology] Job Size: Per Job (Core Count)","[Systems Prototyping and Fabrication] Job Size: Per Job (Core Count)","[Tectonics] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,12.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,12.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,18.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.0000,12.0000,0,0,18.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,96.0000,72.0000,0,0,0,0,0,0,69.3333,0,0,0,0,0,0,0,13.5000,38.0000,1.0000,0,25.7143,13.5000,8.0000,0,12.0000,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,183.1111,0,96.0000,60.0000,0,0,0,0,0,20.0000,34.6667,0,0,12.0000,0,12.0000,0,0,15.1176,38.0000,1.0000,8.0000,26.6000,13.5000,8.0000,0,12.0000,0,0,0,0,1.0000,0,1.0000,0 +2016-12-29,0,160.0000,112.0000,0,96.0000,183.1111,72.0000,91.8696,60.0000,0,40.0000,0,0,0,20.0000,27.0400,0,0,12.0000,0,12.0000,11.2727,5.0000,15.2857,38.0000,9.3672,8.0000,17.9259,9.4167,2.3548,2.0000,12.0000,56.0000,1.0000,0,0,1.0000,0,1.0000,0 +2016-12-30,224.0000,160.0000,112.0000,108.0000,96.0000,141.5385,72.0000,77.9286,61.7143,44.0444,28.0000,24.6500,0,20.0000,20.0000,20.1250,23.3333,16.0000,12.0000,0,12.0000,11.2000,5.0000,15.2857,38.0000,9.0887,9.0000,8.2788,4.2351,2.7941,9.5000,1.7333,1.0647,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,336.0000,0,112.0000,0,96.0000,146.4615,72.0000,78.0833,53.0000,92.4000,40.0000,24.4615,23.1111,0,0,16.4337,32.5000,0,12.0000,12.0000,0,10.8889,11.4286,10.3542,30.0000,9.8789,10.0000,8.2365,8.3000,8.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01-01,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,12.0000,12.0000,0,10.4000,12.0000,10.5532,8.1852,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,0,0,1.0000,1.0000,1.0000,1.0000,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv index 1c8b3490db..c8c93c43c1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Per Job (Core Count)","[Global Atmospheric Research] Job Size: Per Job (Core Count)","[Structures and Building Systems] Job Size: Per Job (Core Count)","[Design, Tools, and Test] Job Size: Per Job (Core Count)","[Emerging Technologies Initiation] Job Size: Per Job (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Per Job (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Per Job (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Per Job (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Per Job (Core Count)","[Systematic and Population Biology] Job Size: Per Job (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Per Job (Core Count)","[Economics] Job Size: Per Job (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Per Job (Core Count)","[Geophysics] Job Size: Per Job (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Per Job (Core Count)","[Solid State Chemistry and Polymers] Job Size: Per Job (Core Count)","[Geology and Paleontology] Job Size: Per Job (Core Count)","[Law and Social Sciences] Job Size: Per Job (Core Count)","[Biophysics] Job Size: Per Job (Core Count)","[Algebra and Number Theory] Job Size: Per Job (Core Count)","[Polar Ocean and Climate Systems] Job Size: Per Job (Core Count)","[Theoretical Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Seismology] Job Size: Per Job (Core Count)","[Statistics and Probability] Job Size: Per Job (Core Count)","[Sociology] Job Size: Per Job (Core Count)","[Experimental Systems] Job Size: Per Job (Core Count)","[Physical Chemistry] Job Size: Per Job (Core Count)","[Galactic Astronomy] Job Size: Per Job (Core Count)","[Cell Biology] Job Size: Per Job (Core Count)","[Solid-State and Microstructures] Job Size: Per Job (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Per Job (Core Count)","[Decision, Risk, and Management Science] Job Size: Per Job (Core Count)","[Computer and Computation Theory] Job Size: Per Job (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Per Job (Core Count)","[Mechanics and Materials] Job Size: Per Job (Core Count)","[Operations Research and Production Systems] Job Size: Per Job (Core Count)","[Polar Meteorology] Job Size: Per Job (Core Count)","[Systems Prototyping and Fabrication] Job Size: Per Job (Core Count)","[Tectonics] Job Size: Per Job (Core Count)" -2016-12,224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,30.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.7037,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,8.1852,12.0000,12.0000,0,10.4000,12.0000,10.5532,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,0,0,1.0000,1.0000,1.0000,1.0000,0 +Month,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Per Job (Core Count)","[Global Atmospheric Research] Job Size: Per Job (Core Count)","[Structures and Building Systems] Job Size: Per Job (Core Count)","[Design, Tools, and Test] Job Size: Per Job (Core Count)","[Emerging Technologies Initiation] Job Size: Per Job (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Per Job (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Per Job (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Per Job (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Per Job (Core Count)","[Systematic and Population Biology] Job Size: Per Job (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Per Job (Core Count)","[Economics] Job Size: Per Job (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Per Job (Core Count)","[Geophysics] Job Size: Per Job (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Per Job (Core Count)","[Solid State Chemistry and Polymers] Job Size: Per Job (Core Count)","[Geology and Paleontology] Job Size: Per Job (Core Count)","[Law and Social Sciences] Job Size: Per Job (Core Count)","[Algebra and Number Theory] Job Size: Per Job (Core Count)","[Polar Ocean and Climate Systems] Job Size: Per Job (Core Count)","[Theoretical Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Seismology] Job Size: Per Job (Core Count)","[Statistics and Probability] Job Size: Per Job (Core Count)","[Biophysics] Job Size: Per Job (Core Count)","[Sociology] Job Size: Per Job (Core Count)","[Experimental Systems] Job Size: Per Job (Core Count)","[Physical Chemistry] Job Size: Per Job (Core Count)","[Galactic Astronomy] Job Size: Per Job (Core Count)","[Cell Biology] Job Size: Per Job (Core Count)","[Solid-State and Microstructures] Job Size: Per Job (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Per Job (Core Count)","[Decision, Risk, and Management Science] Job Size: Per Job (Core Count)","[Computer and Computation Theory] Job Size: Per Job (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Per Job (Core Count)","[Mechanics and Materials] Job Size: Per Job (Core Count)","[Operations Research and Production Systems] Job Size: Per Job (Core Count)","[Polar Meteorology] Job Size: Per Job (Core Count)","[Systems Prototyping and Fabrication] Job Size: Per Job (Core Count)","[Tectonics] Job Size: Per Job (Core Count)" +2016-12,224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.7037,30.0000,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,12.0000,12.0000,0,10.4000,12.0000,10.5532,8.1852,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,0,0,1.0000,1.0000,1.0000,1.0000,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv index a697c726b9..63d3f65d97 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Per Job (Core Count)","[Global Atmospheric Research] Job Size: Per Job (Core Count)","[Structures and Building Systems] Job Size: Per Job (Core Count)","[Design, Tools, and Test] Job Size: Per Job (Core Count)","[Emerging Technologies Initiation] Job Size: Per Job (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Per Job (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Per Job (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Per Job (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Per Job (Core Count)","[Systematic and Population Biology] Job Size: Per Job (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Per Job (Core Count)","[Economics] Job Size: Per Job (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Per Job (Core Count)","[Geophysics] Job Size: Per Job (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Per Job (Core Count)","[Solid State Chemistry and Polymers] Job Size: Per Job (Core Count)","[Geology and Paleontology] Job Size: Per Job (Core Count)","[Law and Social Sciences] Job Size: Per Job (Core Count)","[Biophysics] Job Size: Per Job (Core Count)","[Algebra and Number Theory] Job Size: Per Job (Core Count)","[Polar Ocean and Climate Systems] Job Size: Per Job (Core Count)","[Theoretical Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Seismology] Job Size: Per Job (Core Count)","[Statistics and Probability] Job Size: Per Job (Core Count)","[Sociology] Job Size: Per Job (Core Count)","[Experimental Systems] Job Size: Per Job (Core Count)","[Physical Chemistry] Job Size: Per Job (Core Count)","[Galactic Astronomy] Job Size: Per Job (Core Count)","[Cell Biology] Job Size: Per Job (Core Count)","[Solid-State and Microstructures] Job Size: Per Job (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Per Job (Core Count)","[Decision, Risk, and Management Science] Job Size: Per Job (Core Count)","[Computer and Computation Theory] Job Size: Per Job (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Per Job (Core Count)","[Mechanics and Materials] Job Size: Per Job (Core Count)","[Operations Research and Production Systems] Job Size: Per Job (Core Count)","[Polar Meteorology] Job Size: Per Job (Core Count)","[Systems Prototyping and Fabrication] Job Size: Per Job (Core Count)","[Tectonics] Job Size: Per Job (Core Count)" -"2016 Q4",224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,30.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.7037,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,8.1852,12.0000,12.0000,0,10.4000,12.0000,10.5532,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,0,0,1.0000,1.0000,1.0000,1.0000,0 +Quarter,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Per Job (Core Count)","[Global Atmospheric Research] Job Size: Per Job (Core Count)","[Structures and Building Systems] Job Size: Per Job (Core Count)","[Design, Tools, and Test] Job Size: Per Job (Core Count)","[Emerging Technologies Initiation] Job Size: Per Job (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Per Job (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Per Job (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Per Job (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Per Job (Core Count)","[Systematic and Population Biology] Job Size: Per Job (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Per Job (Core Count)","[Economics] Job Size: Per Job (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Per Job (Core Count)","[Geophysics] Job Size: Per Job (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Per Job (Core Count)","[Solid State Chemistry and Polymers] Job Size: Per Job (Core Count)","[Geology and Paleontology] Job Size: Per Job (Core Count)","[Law and Social Sciences] Job Size: Per Job (Core Count)","[Algebra and Number Theory] Job Size: Per Job (Core Count)","[Polar Ocean and Climate Systems] Job Size: Per Job (Core Count)","[Theoretical Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Seismology] Job Size: Per Job (Core Count)","[Statistics and Probability] Job Size: Per Job (Core Count)","[Biophysics] Job Size: Per Job (Core Count)","[Sociology] Job Size: Per Job (Core Count)","[Experimental Systems] Job Size: Per Job (Core Count)","[Physical Chemistry] Job Size: Per Job (Core Count)","[Galactic Astronomy] Job Size: Per Job (Core Count)","[Cell Biology] Job Size: Per Job (Core Count)","[Solid-State and Microstructures] Job Size: Per Job (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Per Job (Core Count)","[Decision, Risk, and Management Science] Job Size: Per Job (Core Count)","[Computer and Computation Theory] Job Size: Per Job (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Per Job (Core Count)","[Mechanics and Materials] Job Size: Per Job (Core Count)","[Operations Research and Production Systems] Job Size: Per Job (Core Count)","[Polar Meteorology] Job Size: Per Job (Core Count)","[Systems Prototyping and Fabrication] Job Size: Per Job (Core Count)","[Tectonics] Job Size: Per Job (Core Count)" +"2016 Q4",224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.7037,30.0000,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,12.0000,12.0000,0,10.4000,12.0000,10.5532,8.1852,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,0,0,1.0000,1.0000,1.0000,1.0000,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv index 3078453c98..b65a34c209 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_processors/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Per Job (Core Count)","[Global Atmospheric Research] Job Size: Per Job (Core Count)","[Structures and Building Systems] Job Size: Per Job (Core Count)","[Design, Tools, and Test] Job Size: Per Job (Core Count)","[Emerging Technologies Initiation] Job Size: Per Job (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Per Job (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Per Job (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Per Job (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Per Job (Core Count)","[Systematic and Population Biology] Job Size: Per Job (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Per Job (Core Count)","[Economics] Job Size: Per Job (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Per Job (Core Count)","[Geophysics] Job Size: Per Job (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Per Job (Core Count)","[Solid State Chemistry and Polymers] Job Size: Per Job (Core Count)","[Geology and Paleontology] Job Size: Per Job (Core Count)","[Law and Social Sciences] Job Size: Per Job (Core Count)","[Biophysics] Job Size: Per Job (Core Count)","[Algebra and Number Theory] Job Size: Per Job (Core Count)","[Polar Ocean and Climate Systems] Job Size: Per Job (Core Count)","[Theoretical Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Seismology] Job Size: Per Job (Core Count)","[Statistics and Probability] Job Size: Per Job (Core Count)","[Sociology] Job Size: Per Job (Core Count)","[Experimental Systems] Job Size: Per Job (Core Count)","[Physical Chemistry] Job Size: Per Job (Core Count)","[Galactic Astronomy] Job Size: Per Job (Core Count)","[Cell Biology] Job Size: Per Job (Core Count)","[Solid-State and Microstructures] Job Size: Per Job (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Per Job (Core Count)","[Decision, Risk, and Management Science] Job Size: Per Job (Core Count)","[Computer and Computation Theory] Job Size: Per Job (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Per Job (Core Count)","[Mechanics and Materials] Job Size: Per Job (Core Count)","[Operations Research and Production Systems] Job Size: Per Job (Core Count)","[Polar Meteorology] Job Size: Per Job (Core Count)","[Systems Prototyping and Fabrication] Job Size: Per Job (Core Count)","[Tectonics] Job Size: Per Job (Core Count)" -2016,224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,30.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.7037,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,8.1852,12.0000,12.0000,0,10.4000,12.0000,10.5532,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,0,0,1.0000,1.0000,1.0000,1.0000,0 +Year,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Per Job (Core Count)","[Global Atmospheric Research] Job Size: Per Job (Core Count)","[Structures and Building Systems] Job Size: Per Job (Core Count)","[Design, Tools, and Test] Job Size: Per Job (Core Count)","[Emerging Technologies Initiation] Job Size: Per Job (Core Count)","[Organic and Macromolecular Chemistry] Job Size: Per Job (Core Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Per Job (Core Count)","[Quantum Electronics, Waves, and Beams] Job Size: Per Job (Core Count)","[Stellar Astronomy and Astrophysics] Job Size: Per Job (Core Count)","[Systematic and Population Biology] Job Size: Per Job (Core Count)","[Polar Aeronomy and Astrophysics] Job Size: Per Job (Core Count)","[Economics] Job Size: Per Job (Core Count)","[Design and Computer-Integrated Engineering] Job Size: Per Job (Core Count)","[Geophysics] Job Size: Per Job (Core Count)","[Volcanology and Mantle Geochemistry] Job Size: Per Job (Core Count)","[Solid State Chemistry and Polymers] Job Size: Per Job (Core Count)","[Geology and Paleontology] Job Size: Per Job (Core Count)","[Law and Social Sciences] Job Size: Per Job (Core Count)","[Algebra and Number Theory] Job Size: Per Job (Core Count)","[Polar Ocean and Climate Systems] Job Size: Per Job (Core Count)","[Theoretical Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Seismology] Job Size: Per Job (Core Count)","[Statistics and Probability] Job Size: Per Job (Core Count)","[Biophysics] Job Size: Per Job (Core Count)","[Sociology] Job Size: Per Job (Core Count)","[Experimental Systems] Job Size: Per Job (Core Count)","[Physical Chemistry] Job Size: Per Job (Core Count)","[Galactic Astronomy] Job Size: Per Job (Core Count)","[Cell Biology] Job Size: Per Job (Core Count)","[Solid-State and Microstructures] Job Size: Per Job (Core Count)","[Biochemistry and Molecular Structure and Function] Job Size: Per Job (Core Count)","[Decision, Risk, and Management Science] Job Size: Per Job (Core Count)","[Computer and Computation Theory] Job Size: Per Job (Core Count)","[Extragalactic Astronomy and Cosmology] Job Size: Per Job (Core Count)","[Mechanics and Materials] Job Size: Per Job (Core Count)","[Operations Research and Production Systems] Job Size: Per Job (Core Count)","[Polar Meteorology] Job Size: Per Job (Core Count)","[Systems Prototyping and Fabrication] Job Size: Per Job (Core Count)","[Tectonics] Job Size: Per Job (Core Count)" +2016,224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.7037,30.0000,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,12.0000,12.0000,0,10.4000,12.0000,10.5532,8.1852,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,0,0,1.0000,1.0000,1.0000,1.0000,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..72f7c36935 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Normalized (% of Total Cores)" +"Fluid, Particulate, and Hydraulic Systems",5.600000000 +"Global Atmospheric Research",4.000000000 +"Structures and Building Systems",2.800000000 +"Design, Tools, and Test",2.700000000 +"Emerging Technologies Initiation",2.400000000 +"Metals, Ceramics, and Electronic Materials",1.800000000 +"Stellar Astronomy and Astrophysics",1.305000000 +"Organic and Macromolecular Chemistry",1.176000000 +"Systematic and Population Biology",1.062343096 +"Quantum Electronics, Waves, and Beams",0.741761364 +Economics,0.600362319 +"Design and Computer-Integrated Engineering",0.577777778 +Geophysics,0.500000000 +"Volcanology and Mantle Geochemistry",0.500000000 +"Geology and Paleontology",0.468750000 +"Law and Social Sciences",0.400000000 +"Polar Aeronomy and Astrophysics",0.350000000 +"Algebra and Number Theory",0.300000000 +"Theoretical Physics",0.300000000 +Seismology,0.272500000 +Biophysics,0.262096774 +"Experimental Systems",0.229729730 +"Solid State Chemistry and Polymers",0.157762557 +"Polar Ocean and Climate Systems",0.150000000 +Arts,0.138636364 +"Statistics and Probability",0.133796296 +"Cell Biology",0.077083333 +"Physical Chemistry",0.069446045 +Sociology,0.047068235 +"Biochemistry and Molecular Structure and Function",0.043333333 +"Galactic Astronomy",0.035299257 +"Solid-State and Microstructures",0.028712871 +"Decision, Risk, and Management Science",0.026044436 +"Computer and Computation Theory",0.025000000 +"Extragalactic Astronomy and Cosmology",0.025000000 +"Mechanics and Materials",0.025000000 +"Operations Research and Production Systems",0.025000000 +"Polar Meteorology",0.025000000 +"Systems Prototyping and Fabrication",0.025000000 +Tectonics,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..72f7c36935 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Normalized (% of Total Cores)" +"Fluid, Particulate, and Hydraulic Systems",5.600000000 +"Global Atmospheric Research",4.000000000 +"Structures and Building Systems",2.800000000 +"Design, Tools, and Test",2.700000000 +"Emerging Technologies Initiation",2.400000000 +"Metals, Ceramics, and Electronic Materials",1.800000000 +"Stellar Astronomy and Astrophysics",1.305000000 +"Organic and Macromolecular Chemistry",1.176000000 +"Systematic and Population Biology",1.062343096 +"Quantum Electronics, Waves, and Beams",0.741761364 +Economics,0.600362319 +"Design and Computer-Integrated Engineering",0.577777778 +Geophysics,0.500000000 +"Volcanology and Mantle Geochemistry",0.500000000 +"Geology and Paleontology",0.468750000 +"Law and Social Sciences",0.400000000 +"Polar Aeronomy and Astrophysics",0.350000000 +"Algebra and Number Theory",0.300000000 +"Theoretical Physics",0.300000000 +Seismology,0.272500000 +Biophysics,0.262096774 +"Experimental Systems",0.229729730 +"Solid State Chemistry and Polymers",0.157762557 +"Polar Ocean and Climate Systems",0.150000000 +Arts,0.138636364 +"Statistics and Probability",0.133796296 +"Cell Biology",0.077083333 +"Physical Chemistry",0.069446045 +Sociology,0.047068235 +"Biochemistry and Molecular Structure and Function",0.043333333 +"Galactic Astronomy",0.035299257 +"Solid-State and Microstructures",0.028712871 +"Decision, Risk, and Management Science",0.026044436 +"Computer and Computation Theory",0.025000000 +"Extragalactic Astronomy and Cosmology",0.025000000 +"Mechanics and Materials",0.025000000 +"Operations Research and Production Systems",0.025000000 +"Polar Meteorology",0.025000000 +"Systems Prototyping and Fabrication",0.025000000 +Tectonics,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..72f7c36935 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Normalized (% of Total Cores)" +"Fluid, Particulate, and Hydraulic Systems",5.600000000 +"Global Atmospheric Research",4.000000000 +"Structures and Building Systems",2.800000000 +"Design, Tools, and Test",2.700000000 +"Emerging Technologies Initiation",2.400000000 +"Metals, Ceramics, and Electronic Materials",1.800000000 +"Stellar Astronomy and Astrophysics",1.305000000 +"Organic and Macromolecular Chemistry",1.176000000 +"Systematic and Population Biology",1.062343096 +"Quantum Electronics, Waves, and Beams",0.741761364 +Economics,0.600362319 +"Design and Computer-Integrated Engineering",0.577777778 +Geophysics,0.500000000 +"Volcanology and Mantle Geochemistry",0.500000000 +"Geology and Paleontology",0.468750000 +"Law and Social Sciences",0.400000000 +"Polar Aeronomy and Astrophysics",0.350000000 +"Algebra and Number Theory",0.300000000 +"Theoretical Physics",0.300000000 +Seismology,0.272500000 +Biophysics,0.262096774 +"Experimental Systems",0.229729730 +"Solid State Chemistry and Polymers",0.157762557 +"Polar Ocean and Climate Systems",0.150000000 +Arts,0.138636364 +"Statistics and Probability",0.133796296 +"Cell Biology",0.077083333 +"Physical Chemistry",0.069446045 +Sociology,0.047068235 +"Biochemistry and Molecular Structure and Function",0.043333333 +"Galactic Astronomy",0.035299257 +"Solid-State and Microstructures",0.028712871 +"Decision, Risk, and Management Science",0.026044436 +"Computer and Computation Theory",0.025000000 +"Extragalactic Astronomy and Cosmology",0.025000000 +"Mechanics and Materials",0.025000000 +"Operations Research and Production Systems",0.025000000 +"Polar Meteorology",0.025000000 +"Systems Prototyping and Fabrication",0.025000000 +Tectonics,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..72f7c36935 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,49 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by PI Group" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Normalized (% of Total Cores)" +"Fluid, Particulate, and Hydraulic Systems",5.600000000 +"Global Atmospheric Research",4.000000000 +"Structures and Building Systems",2.800000000 +"Design, Tools, and Test",2.700000000 +"Emerging Technologies Initiation",2.400000000 +"Metals, Ceramics, and Electronic Materials",1.800000000 +"Stellar Astronomy and Astrophysics",1.305000000 +"Organic and Macromolecular Chemistry",1.176000000 +"Systematic and Population Biology",1.062343096 +"Quantum Electronics, Waves, and Beams",0.741761364 +Economics,0.600362319 +"Design and Computer-Integrated Engineering",0.577777778 +Geophysics,0.500000000 +"Volcanology and Mantle Geochemistry",0.500000000 +"Geology and Paleontology",0.468750000 +"Law and Social Sciences",0.400000000 +"Polar Aeronomy and Astrophysics",0.350000000 +"Algebra and Number Theory",0.300000000 +"Theoretical Physics",0.300000000 +Seismology,0.272500000 +Biophysics,0.262096774 +"Experimental Systems",0.229729730 +"Solid State Chemistry and Polymers",0.157762557 +"Polar Ocean and Climate Systems",0.150000000 +Arts,0.138636364 +"Statistics and Probability",0.133796296 +"Cell Biology",0.077083333 +"Physical Chemistry",0.069446045 +Sociology,0.047068235 +"Biochemistry and Molecular Structure and Function",0.043333333 +"Galactic Astronomy",0.035299257 +"Solid-State and Microstructures",0.028712871 +"Decision, Risk, and Management Science",0.026044436 +"Computer and Computation Theory",0.025000000 +"Extragalactic Astronomy and Cosmology",0.025000000 +"Mechanics and Materials",0.025000000 +"Operations Research and Production Systems",0.025000000 +"Polar Meteorology",0.025000000 +"Systems Prototyping and Fabrication",0.025000000 +Tectonics,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv index fe4b5aedfc..208e666633 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Normalized (% of Total Cores)","[Global Atmospheric Research] Job Size: Normalized (% of Total Cores)","[Structures and Building Systems] Job Size: Normalized (% of Total Cores)","[Design, Tools, and Test] Job Size: Normalized (% of Total Cores)","[Emerging Technologies Initiation] Job Size: Normalized (% of Total Cores)","[Metals, Ceramics, and Electronic Materials] Job Size: Normalized (% of Total Cores)","[Organic and Macromolecular Chemistry] Job Size: Normalized (% of Total Cores)","[Stellar Astronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Systematic and Population Biology] Job Size: Normalized (% of Total Cores)","[Quantum Electronics, Waves, and Beams] Job Size: Normalized (% of Total Cores)","[Economics] Job Size: Normalized (% of Total Cores)","[Geology and Paleontology] Job Size: Normalized (% of Total Cores)","[Design and Computer-Integrated Engineering] Job Size: Normalized (% of Total Cores)","[Geophysics] Job Size: Normalized (% of Total Cores)","[Volcanology and Mantle Geochemistry] Job Size: Normalized (% of Total Cores)","[Polar Aeronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Biophysics] Job Size: Normalized (% of Total Cores)","[Law and Social Sciences] Job Size: Normalized (% of Total Cores)","[Algebra and Number Theory] Job Size: Normalized (% of Total Cores)","[Theoretical Physics] Job Size: Normalized (% of Total Cores)","[Seismology] Job Size: Normalized (% of Total Cores)","[Experimental Systems] Job Size: Normalized (% of Total Cores)","[Solid State Chemistry and Polymers] Job Size: Normalized (% of Total Cores)","[Statistics and Probability] Job Size: Normalized (% of Total Cores)","[Polar Ocean and Climate Systems] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Cell Biology] Job Size: Normalized (% of Total Cores)","[Biochemistry and Molecular Structure and Function] Job Size: Normalized (% of Total Cores)","[Physical Chemistry] Job Size: Normalized (% of Total Cores)","[Sociology] Job Size: Normalized (% of Total Cores)","[Galactic Astronomy] Job Size: Normalized (% of Total Cores)","[Solid-State and Microstructures] Job Size: Normalized (% of Total Cores)","[Decision, Risk, and Management Science] Job Size: Normalized (% of Total Cores)","[Computer and Computation Theory] Job Size: Normalized (% of Total Cores)","[Extragalactic Astronomy and Cosmology] Job Size: Normalized (% of Total Cores)","[Mechanics and Materials] Job Size: Normalized (% of Total Cores)","[Operations Research and Production Systems] Job Size: Normalized (% of Total Cores)","[Polar Meteorology] Job Size: Normalized (% of Total Cores)","[Systems Prototyping and Fabrication] Job Size: Normalized (% of Total Cores)","[Tectonics] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0.025000000,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0.025000000,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.450000000,0,0.025000000,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0.400000000,0,0,0,0,0.450000000,0,0.025000000,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,1.800000000,0,2.400000000,0,0,0,0,0,0,0.950000000,0,0,0,0,0,1.733333333,0.168750000,0,0,0.200000000,0.300000000,0.321428571,0.025000000,0.168750000,0,0,0,0,0,0,0,0,0 -2016-12-28,0,0,0,0,0,0,4.577777778,1.500000000,0,2.400000000,0,0,0,0,0.500000000,0,0.950000000,0,0.300000000,0.300000000,0,0.200000000,0.433333333,0.188970588,0,0,0.200000000,0.300000000,0.332500000,0.025000000,0.168750000,0,0,0,0,0,0.025000000,0,0.025000000,0 -2016-12-29,0,4.000000000,2.800000000,0,2.400000000,1.800000000,4.577777778,1.500000000,0,2.296739130,0,0,0,0,0.500000000,1.000000000,0.950000000,0,0.300000000,0.300000000,0.125000000,0.200000000,0.225333333,0.191071429,0,0.140909091,0.058870968,0.300000000,0.149382716,0.058544922,0.078472222,0.050000000,1.400000000,0.025000000,0,0,0.025000000,0,0.025000000,0 -2016-12-30,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.769230769,1.542857143,1.101111111,0.974107143,0.616250000,0.583333333,0,0.500000000,0.500000000,0.350000000,0.950000000,0.400000000,0.300000000,0.300000000,0.125000000,0.225000000,0.167708333,0.191071429,0,0.140000000,0.069852941,0.043333333,0.068990239,0.045443743,0.035292793,0.118750000,0.026617647,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2016-12-31,8.400000000,0,2.800000000,0,2.400000000,1.800000000,1.830769231,1.325000000,2.310000000,0.976041667,0.611538462,0.812500000,0.577777778,0,0,1.000000000,0.750000000,0,0.300000000,0,0.285714286,0.250000000,0.205421687,0.258854167,0.300000000,0.136111111,0.200000000,0.025000000,0.068637470,0.049394653,0.207500000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2017-01-01,0,4.000000000,0,0,2.400000000,0,0.800000000,1.233333333,0.947482014,0.662500000,0.600000000,0.125000000,0.577777778,0,0,0,0.204629630,0,0.300000000,0,0.300000000,0.200000000,0,0.263829787,0.150000000,0.130000000,0.200000000,0,0.086733002,0.045675831,0.212500000,0.050000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0 +Day,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Normalized (% of Total Cores)","[Global Atmospheric Research] Job Size: Normalized (% of Total Cores)","[Structures and Building Systems] Job Size: Normalized (% of Total Cores)","[Design, Tools, and Test] Job Size: Normalized (% of Total Cores)","[Emerging Technologies Initiation] Job Size: Normalized (% of Total Cores)","[Metals, Ceramics, and Electronic Materials] Job Size: Normalized (% of Total Cores)","[Stellar Astronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Organic and Macromolecular Chemistry] Job Size: Normalized (% of Total Cores)","[Systematic and Population Biology] Job Size: Normalized (% of Total Cores)","[Quantum Electronics, Waves, and Beams] Job Size: Normalized (% of Total Cores)","[Economics] Job Size: Normalized (% of Total Cores)","[Design and Computer-Integrated Engineering] Job Size: Normalized (% of Total Cores)","[Geophysics] Job Size: Normalized (% of Total Cores)","[Volcanology and Mantle Geochemistry] Job Size: Normalized (% of Total Cores)","[Geology and Paleontology] Job Size: Normalized (% of Total Cores)","[Law and Social Sciences] Job Size: Normalized (% of Total Cores)","[Polar Aeronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Algebra and Number Theory] Job Size: Normalized (% of Total Cores)","[Theoretical Physics] Job Size: Normalized (% of Total Cores)","[Seismology] Job Size: Normalized (% of Total Cores)","[Biophysics] Job Size: Normalized (% of Total Cores)","[Experimental Systems] Job Size: Normalized (% of Total Cores)","[Solid State Chemistry and Polymers] Job Size: Normalized (% of Total Cores)","[Polar Ocean and Climate Systems] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Statistics and Probability] Job Size: Normalized (% of Total Cores)","[Cell Biology] Job Size: Normalized (% of Total Cores)","[Physical Chemistry] Job Size: Normalized (% of Total Cores)","[Sociology] Job Size: Normalized (% of Total Cores)","[Biochemistry and Molecular Structure and Function] Job Size: Normalized (% of Total Cores)","[Galactic Astronomy] Job Size: Normalized (% of Total Cores)","[Solid-State and Microstructures] Job Size: Normalized (% of Total Cores)","[Decision, Risk, and Management Science] Job Size: Normalized (% of Total Cores)","[Computer and Computation Theory] Job Size: Normalized (% of Total Cores)","[Extragalactic Astronomy and Cosmology] Job Size: Normalized (% of Total Cores)","[Mechanics and Materials] Job Size: Normalized (% of Total Cores)","[Operations Research and Production Systems] Job Size: Normalized (% of Total Cores)","[Polar Meteorology] Job Size: Normalized (% of Total Cores)","[Systems Prototyping and Fabrication] Job Size: Normalized (% of Total Cores)","[Tectonics] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0.300000000,0,0,0.025000000,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0.300000000,0,0,0.025000000,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0.450000000,0,0,0.025000000,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0.400000000,0,0.450000000,0,0,0.025000000,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,1.800000000,0,0,2.400000000,0,0,0,0,0,0,0,0,0,0,0.950000000,0,1.733333333,0,0,0.168750000,0.200000000,0.321428571,0.025000000,0.300000000,0.168750000,0,0,0,0,0,0,0,0,0 +2016-12-28,0,0,0,0,0,0,1.500000000,4.577777778,0,2.400000000,0,0,0,0.500000000,0,0,0,0.300000000,0.300000000,0,0.950000000,0.200000000,0.433333333,0,0,0.188970588,0.200000000,0.332500000,0.025000000,0.300000000,0.168750000,0,0,0,0,0,0.025000000,0,0.025000000,0 +2016-12-29,0,4.000000000,2.800000000,0,2.400000000,1.800000000,1.500000000,4.577777778,0,2.296739130,0,0,0,0.500000000,0,0,1.000000000,0.300000000,0.300000000,0.125000000,0.950000000,0.200000000,0.225333333,0,0.140909091,0.191071429,0.058870968,0.149382716,0.058544922,0.300000000,0.078472222,0.050000000,1.400000000,0.025000000,0,0,0.025000000,0,0.025000000,0 +2016-12-30,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.542857143,1.769230769,1.101111111,0.974107143,0.616250000,0,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.300000000,0.300000000,0.125000000,0.950000000,0.225000000,0.167708333,0,0.140000000,0.191071429,0.069852941,0.068990239,0.045443743,0.043333333,0.035292793,0.118750000,0.026617647,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2016-12-31,8.400000000,0,2.800000000,0,2.400000000,1.800000000,1.325000000,1.830769231,2.310000000,0.976041667,0.611538462,0.577777778,0,0,0.812500000,0,1.000000000,0.300000000,0,0.285714286,0.750000000,0.250000000,0.205421687,0.300000000,0.136111111,0.258854167,0.200000000,0.068637470,0.049394653,0.025000000,0.207500000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2017-01-01,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.300000000,0,0.300000000,0.204629630,0.200000000,0,0.150000000,0.130000000,0.263829787,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv index 65c55c788a..68de651767 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Normalized (% of Total Cores)","[Global Atmospheric Research] Job Size: Normalized (% of Total Cores)","[Structures and Building Systems] Job Size: Normalized (% of Total Cores)","[Design, Tools, and Test] Job Size: Normalized (% of Total Cores)","[Emerging Technologies Initiation] Job Size: Normalized (% of Total Cores)","[Metals, Ceramics, and Electronic Materials] Job Size: Normalized (% of Total Cores)","[Stellar Astronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Organic and Macromolecular Chemistry] Job Size: Normalized (% of Total Cores)","[Systematic and Population Biology] Job Size: Normalized (% of Total Cores)","[Quantum Electronics, Waves, and Beams] Job Size: Normalized (% of Total Cores)","[Economics] Job Size: Normalized (% of Total Cores)","[Design and Computer-Integrated Engineering] Job Size: Normalized (% of Total Cores)","[Geophysics] Job Size: Normalized (% of Total Cores)","[Volcanology and Mantle Geochemistry] Job Size: Normalized (% of Total Cores)","[Geology and Paleontology] Job Size: Normalized (% of Total Cores)","[Law and Social Sciences] Job Size: Normalized (% of Total Cores)","[Polar Aeronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Biophysics] Job Size: Normalized (% of Total Cores)","[Algebra and Number Theory] Job Size: Normalized (% of Total Cores)","[Theoretical Physics] Job Size: Normalized (% of Total Cores)","[Seismology] Job Size: Normalized (% of Total Cores)","[Experimental Systems] Job Size: Normalized (% of Total Cores)","[Solid State Chemistry and Polymers] Job Size: Normalized (% of Total Cores)","[Polar Ocean and Climate Systems] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Statistics and Probability] Job Size: Normalized (% of Total Cores)","[Cell Biology] Job Size: Normalized (% of Total Cores)","[Physical Chemistry] Job Size: Normalized (% of Total Cores)","[Sociology] Job Size: Normalized (% of Total Cores)","[Biochemistry and Molecular Structure and Function] Job Size: Normalized (% of Total Cores)","[Galactic Astronomy] Job Size: Normalized (% of Total Cores)","[Solid-State and Microstructures] Job Size: Normalized (% of Total Cores)","[Decision, Risk, and Management Science] Job Size: Normalized (% of Total Cores)","[Computer and Computation Theory] Job Size: Normalized (% of Total Cores)","[Extragalactic Astronomy and Cosmology] Job Size: Normalized (% of Total Cores)","[Mechanics and Materials] Job Size: Normalized (% of Total Cores)","[Operations Research and Production Systems] Job Size: Normalized (% of Total Cores)","[Polar Meteorology] Job Size: Normalized (% of Total Cores)","[Systems Prototyping and Fabrication] Job Size: Normalized (% of Total Cores)","[Tectonics] Job Size: Normalized (% of Total Cores)" -2016-12,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.750000000,0.300000000,0.300000000,0.265625000,0.237931034,0.157762557,0.300000000,0.138636364,0.133796296,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2017-01,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.204629630,0.300000000,0,0.300000000,0.200000000,0,0.150000000,0.130000000,0.263829787,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0 +Month,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Normalized (% of Total Cores)","[Global Atmospheric Research] Job Size: Normalized (% of Total Cores)","[Structures and Building Systems] Job Size: Normalized (% of Total Cores)","[Design, Tools, and Test] Job Size: Normalized (% of Total Cores)","[Emerging Technologies Initiation] Job Size: Normalized (% of Total Cores)","[Metals, Ceramics, and Electronic Materials] Job Size: Normalized (% of Total Cores)","[Stellar Astronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Organic and Macromolecular Chemistry] Job Size: Normalized (% of Total Cores)","[Systematic and Population Biology] Job Size: Normalized (% of Total Cores)","[Quantum Electronics, Waves, and Beams] Job Size: Normalized (% of Total Cores)","[Economics] Job Size: Normalized (% of Total Cores)","[Design and Computer-Integrated Engineering] Job Size: Normalized (% of Total Cores)","[Geophysics] Job Size: Normalized (% of Total Cores)","[Volcanology and Mantle Geochemistry] Job Size: Normalized (% of Total Cores)","[Geology and Paleontology] Job Size: Normalized (% of Total Cores)","[Law and Social Sciences] Job Size: Normalized (% of Total Cores)","[Polar Aeronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Algebra and Number Theory] Job Size: Normalized (% of Total Cores)","[Theoretical Physics] Job Size: Normalized (% of Total Cores)","[Seismology] Job Size: Normalized (% of Total Cores)","[Biophysics] Job Size: Normalized (% of Total Cores)","[Experimental Systems] Job Size: Normalized (% of Total Cores)","[Solid State Chemistry and Polymers] Job Size: Normalized (% of Total Cores)","[Polar Ocean and Climate Systems] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Statistics and Probability] Job Size: Normalized (% of Total Cores)","[Cell Biology] Job Size: Normalized (% of Total Cores)","[Physical Chemistry] Job Size: Normalized (% of Total Cores)","[Sociology] Job Size: Normalized (% of Total Cores)","[Biochemistry and Molecular Structure and Function] Job Size: Normalized (% of Total Cores)","[Galactic Astronomy] Job Size: Normalized (% of Total Cores)","[Solid-State and Microstructures] Job Size: Normalized (% of Total Cores)","[Decision, Risk, and Management Science] Job Size: Normalized (% of Total Cores)","[Computer and Computation Theory] Job Size: Normalized (% of Total Cores)","[Extragalactic Astronomy and Cosmology] Job Size: Normalized (% of Total Cores)","[Mechanics and Materials] Job Size: Normalized (% of Total Cores)","[Operations Research and Production Systems] Job Size: Normalized (% of Total Cores)","[Polar Meteorology] Job Size: Normalized (% of Total Cores)","[Systems Prototyping and Fabrication] Job Size: Normalized (% of Total Cores)","[Tectonics] Job Size: Normalized (% of Total Cores)" +2016-12,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.300000000,0.300000000,0.265625000,0.750000000,0.237931034,0.157762557,0.300000000,0.138636364,0.133796296,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2017-01,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.300000000,0,0.300000000,0.204629630,0.200000000,0,0.150000000,0.130000000,0.263829787,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv index 9abeab4e7f..167ebb42c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Normalized (% of Total Cores)","[Global Atmospheric Research] Job Size: Normalized (% of Total Cores)","[Structures and Building Systems] Job Size: Normalized (% of Total Cores)","[Design, Tools, and Test] Job Size: Normalized (% of Total Cores)","[Emerging Technologies Initiation] Job Size: Normalized (% of Total Cores)","[Metals, Ceramics, and Electronic Materials] Job Size: Normalized (% of Total Cores)","[Stellar Astronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Organic and Macromolecular Chemistry] Job Size: Normalized (% of Total Cores)","[Systematic and Population Biology] Job Size: Normalized (% of Total Cores)","[Quantum Electronics, Waves, and Beams] Job Size: Normalized (% of Total Cores)","[Economics] Job Size: Normalized (% of Total Cores)","[Design and Computer-Integrated Engineering] Job Size: Normalized (% of Total Cores)","[Geophysics] Job Size: Normalized (% of Total Cores)","[Volcanology and Mantle Geochemistry] Job Size: Normalized (% of Total Cores)","[Geology and Paleontology] Job Size: Normalized (% of Total Cores)","[Law and Social Sciences] Job Size: Normalized (% of Total Cores)","[Polar Aeronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Biophysics] Job Size: Normalized (% of Total Cores)","[Algebra and Number Theory] Job Size: Normalized (% of Total Cores)","[Theoretical Physics] Job Size: Normalized (% of Total Cores)","[Seismology] Job Size: Normalized (% of Total Cores)","[Experimental Systems] Job Size: Normalized (% of Total Cores)","[Solid State Chemistry and Polymers] Job Size: Normalized (% of Total Cores)","[Polar Ocean and Climate Systems] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Statistics and Probability] Job Size: Normalized (% of Total Cores)","[Cell Biology] Job Size: Normalized (% of Total Cores)","[Physical Chemistry] Job Size: Normalized (% of Total Cores)","[Sociology] Job Size: Normalized (% of Total Cores)","[Biochemistry and Molecular Structure and Function] Job Size: Normalized (% of Total Cores)","[Galactic Astronomy] Job Size: Normalized (% of Total Cores)","[Solid-State and Microstructures] Job Size: Normalized (% of Total Cores)","[Decision, Risk, and Management Science] Job Size: Normalized (% of Total Cores)","[Computer and Computation Theory] Job Size: Normalized (% of Total Cores)","[Extragalactic Astronomy and Cosmology] Job Size: Normalized (% of Total Cores)","[Mechanics and Materials] Job Size: Normalized (% of Total Cores)","[Operations Research and Production Systems] Job Size: Normalized (% of Total Cores)","[Polar Meteorology] Job Size: Normalized (% of Total Cores)","[Systems Prototyping and Fabrication] Job Size: Normalized (% of Total Cores)","[Tectonics] Job Size: Normalized (% of Total Cores)" -"2016 Q4",5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.750000000,0.300000000,0.300000000,0.265625000,0.237931034,0.157762557,0.300000000,0.138636364,0.133796296,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -"2017 Q1",0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.204629630,0.300000000,0,0.300000000,0.200000000,0,0.150000000,0.130000000,0.263829787,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0 +Quarter,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Normalized (% of Total Cores)","[Global Atmospheric Research] Job Size: Normalized (% of Total Cores)","[Structures and Building Systems] Job Size: Normalized (% of Total Cores)","[Design, Tools, and Test] Job Size: Normalized (% of Total Cores)","[Emerging Technologies Initiation] Job Size: Normalized (% of Total Cores)","[Metals, Ceramics, and Electronic Materials] Job Size: Normalized (% of Total Cores)","[Stellar Astronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Organic and Macromolecular Chemistry] Job Size: Normalized (% of Total Cores)","[Systematic and Population Biology] Job Size: Normalized (% of Total Cores)","[Quantum Electronics, Waves, and Beams] Job Size: Normalized (% of Total Cores)","[Economics] Job Size: Normalized (% of Total Cores)","[Design and Computer-Integrated Engineering] Job Size: Normalized (% of Total Cores)","[Geophysics] Job Size: Normalized (% of Total Cores)","[Volcanology and Mantle Geochemistry] Job Size: Normalized (% of Total Cores)","[Geology and Paleontology] Job Size: Normalized (% of Total Cores)","[Law and Social Sciences] Job Size: Normalized (% of Total Cores)","[Polar Aeronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Algebra and Number Theory] Job Size: Normalized (% of Total Cores)","[Theoretical Physics] Job Size: Normalized (% of Total Cores)","[Seismology] Job Size: Normalized (% of Total Cores)","[Biophysics] Job Size: Normalized (% of Total Cores)","[Experimental Systems] Job Size: Normalized (% of Total Cores)","[Solid State Chemistry and Polymers] Job Size: Normalized (% of Total Cores)","[Polar Ocean and Climate Systems] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Statistics and Probability] Job Size: Normalized (% of Total Cores)","[Cell Biology] Job Size: Normalized (% of Total Cores)","[Physical Chemistry] Job Size: Normalized (% of Total Cores)","[Sociology] Job Size: Normalized (% of Total Cores)","[Biochemistry and Molecular Structure and Function] Job Size: Normalized (% of Total Cores)","[Galactic Astronomy] Job Size: Normalized (% of Total Cores)","[Solid-State and Microstructures] Job Size: Normalized (% of Total Cores)","[Decision, Risk, and Management Science] Job Size: Normalized (% of Total Cores)","[Computer and Computation Theory] Job Size: Normalized (% of Total Cores)","[Extragalactic Astronomy and Cosmology] Job Size: Normalized (% of Total Cores)","[Mechanics and Materials] Job Size: Normalized (% of Total Cores)","[Operations Research and Production Systems] Job Size: Normalized (% of Total Cores)","[Polar Meteorology] Job Size: Normalized (% of Total Cores)","[Systems Prototyping and Fabrication] Job Size: Normalized (% of Total Cores)","[Tectonics] Job Size: Normalized (% of Total Cores)" +"2016 Q4",5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.300000000,0.300000000,0.265625000,0.750000000,0.237931034,0.157762557,0.300000000,0.138636364,0.133796296,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +"2017 Q1",0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.300000000,0,0.300000000,0.204629630,0.200000000,0,0.150000000,0.130000000,0.263829787,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv index 052c88bbb4..93b968fe7d 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/normalized_avg_processors/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Normalized (% of Total Cores)","[Global Atmospheric Research] Job Size: Normalized (% of Total Cores)","[Structures and Building Systems] Job Size: Normalized (% of Total Cores)","[Design, Tools, and Test] Job Size: Normalized (% of Total Cores)","[Emerging Technologies Initiation] Job Size: Normalized (% of Total Cores)","[Metals, Ceramics, and Electronic Materials] Job Size: Normalized (% of Total Cores)","[Stellar Astronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Organic and Macromolecular Chemistry] Job Size: Normalized (% of Total Cores)","[Systematic and Population Biology] Job Size: Normalized (% of Total Cores)","[Quantum Electronics, Waves, and Beams] Job Size: Normalized (% of Total Cores)","[Economics] Job Size: Normalized (% of Total Cores)","[Design and Computer-Integrated Engineering] Job Size: Normalized (% of Total Cores)","[Geophysics] Job Size: Normalized (% of Total Cores)","[Volcanology and Mantle Geochemistry] Job Size: Normalized (% of Total Cores)","[Geology and Paleontology] Job Size: Normalized (% of Total Cores)","[Law and Social Sciences] Job Size: Normalized (% of Total Cores)","[Polar Aeronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Biophysics] Job Size: Normalized (% of Total Cores)","[Algebra and Number Theory] Job Size: Normalized (% of Total Cores)","[Theoretical Physics] Job Size: Normalized (% of Total Cores)","[Seismology] Job Size: Normalized (% of Total Cores)","[Experimental Systems] Job Size: Normalized (% of Total Cores)","[Solid State Chemistry and Polymers] Job Size: Normalized (% of Total Cores)","[Polar Ocean and Climate Systems] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Statistics and Probability] Job Size: Normalized (% of Total Cores)","[Cell Biology] Job Size: Normalized (% of Total Cores)","[Physical Chemistry] Job Size: Normalized (% of Total Cores)","[Sociology] Job Size: Normalized (% of Total Cores)","[Biochemistry and Molecular Structure and Function] Job Size: Normalized (% of Total Cores)","[Galactic Astronomy] Job Size: Normalized (% of Total Cores)","[Solid-State and Microstructures] Job Size: Normalized (% of Total Cores)","[Decision, Risk, and Management Science] Job Size: Normalized (% of Total Cores)","[Computer and Computation Theory] Job Size: Normalized (% of Total Cores)","[Extragalactic Astronomy and Cosmology] Job Size: Normalized (% of Total Cores)","[Mechanics and Materials] Job Size: Normalized (% of Total Cores)","[Operations Research and Production Systems] Job Size: Normalized (% of Total Cores)","[Polar Meteorology] Job Size: Normalized (% of Total Cores)","[Systems Prototyping and Fabrication] Job Size: Normalized (% of Total Cores)","[Tectonics] Job Size: Normalized (% of Total Cores)" -2016,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.750000000,0.300000000,0.300000000,0.265625000,0.237931034,0.157762557,0.300000000,0.138636364,0.133796296,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2017,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.204629630,0.300000000,0,0.300000000,0.200000000,0,0.150000000,0.130000000,0.263829787,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0 +Year,"[Fluid, Particulate, and Hydraulic Systems] Job Size: Normalized (% of Total Cores)","[Global Atmospheric Research] Job Size: Normalized (% of Total Cores)","[Structures and Building Systems] Job Size: Normalized (% of Total Cores)","[Design, Tools, and Test] Job Size: Normalized (% of Total Cores)","[Emerging Technologies Initiation] Job Size: Normalized (% of Total Cores)","[Metals, Ceramics, and Electronic Materials] Job Size: Normalized (% of Total Cores)","[Stellar Astronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Organic and Macromolecular Chemistry] Job Size: Normalized (% of Total Cores)","[Systematic and Population Biology] Job Size: Normalized (% of Total Cores)","[Quantum Electronics, Waves, and Beams] Job Size: Normalized (% of Total Cores)","[Economics] Job Size: Normalized (% of Total Cores)","[Design and Computer-Integrated Engineering] Job Size: Normalized (% of Total Cores)","[Geophysics] Job Size: Normalized (% of Total Cores)","[Volcanology and Mantle Geochemistry] Job Size: Normalized (% of Total Cores)","[Geology and Paleontology] Job Size: Normalized (% of Total Cores)","[Law and Social Sciences] Job Size: Normalized (% of Total Cores)","[Polar Aeronomy and Astrophysics] Job Size: Normalized (% of Total Cores)","[Algebra and Number Theory] Job Size: Normalized (% of Total Cores)","[Theoretical Physics] Job Size: Normalized (% of Total Cores)","[Seismology] Job Size: Normalized (% of Total Cores)","[Biophysics] Job Size: Normalized (% of Total Cores)","[Experimental Systems] Job Size: Normalized (% of Total Cores)","[Solid State Chemistry and Polymers] Job Size: Normalized (% of Total Cores)","[Polar Ocean and Climate Systems] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Statistics and Probability] Job Size: Normalized (% of Total Cores)","[Cell Biology] Job Size: Normalized (% of Total Cores)","[Physical Chemistry] Job Size: Normalized (% of Total Cores)","[Sociology] Job Size: Normalized (% of Total Cores)","[Biochemistry and Molecular Structure and Function] Job Size: Normalized (% of Total Cores)","[Galactic Astronomy] Job Size: Normalized (% of Total Cores)","[Solid-State and Microstructures] Job Size: Normalized (% of Total Cores)","[Decision, Risk, and Management Science] Job Size: Normalized (% of Total Cores)","[Computer and Computation Theory] Job Size: Normalized (% of Total Cores)","[Extragalactic Astronomy and Cosmology] Job Size: Normalized (% of Total Cores)","[Mechanics and Materials] Job Size: Normalized (% of Total Cores)","[Operations Research and Production Systems] Job Size: Normalized (% of Total Cores)","[Polar Meteorology] Job Size: Normalized (% of Total Cores)","[Systems Prototyping and Fabrication] Job Size: Normalized (% of Total Cores)","[Tectonics] Job Size: Normalized (% of Total Cores)" +2016,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.300000000,0.300000000,0.265625000,0.750000000,0.237931034,0.157762557,0.300000000,0.138636364,0.133796296,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2017,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.300000000,0,0.300000000,0.204629630,0.200000000,0,0.150000000,0.130000000,0.263829787,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..8936ed96d3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +1,13.31620066,0.07932011778295477 +2,15.49508503,0.4654643138248252 +"3 - 4",7.05127808,0.7019917456908048 +"5 - 8",2.29717241,0.053155321057996224 +"9 - 16",9.44197911,0.21436533606163743 +"17 - 32",240.41447863,16.979025324781684 +"33 - 64",294.11531353,47.85451668657768 +"65 - 128",2150.19939590, +"129 - 256",8746.51015873, +"257 - 512",6348.48666667,433.2882879407966 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..c0e6d67029 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +1,13.31620066,0.17903135000802123 +2,15.49508503,0.917167815908368 +"3 - 4",7.05127808,1.1088877784090556 +"5 - 8",2.29717241,0.07224662559906908 +"9 - 16",9.44197911,0.394840617525021 +"17 - 32",240.41447863,33.20692875908851 +"33 - 64",294.11531353,87.5371337954103 +"65 - 128",2150.19939590,253.1545358207834 +"129 - 256",8746.51015873,1701.739132076106 +"257 - 512",6348.48666667,4484.7021945002725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..c0e6d67029 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +1,13.31620066,0.17903135000802123 +2,15.49508503,0.917167815908368 +"3 - 4",7.05127808,1.1088877784090556 +"5 - 8",2.29717241,0.07224662559906908 +"9 - 16",9.44197911,0.394840617525021 +"17 - 32",240.41447863,33.20692875908851 +"33 - 64",294.11531353,87.5371337954103 +"65 - 128",2150.19939590,253.1545358207834 +"129 - 256",8746.51015873,1701.739132076106 +"257 - 512",6348.48666667,4484.7021945002725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..c0e6d67029 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +1,13.31620066,0.17903135000802123 +2,15.49508503,0.917167815908368 +"3 - 4",7.05127808,1.1088877784090556 +"5 - 8",2.29717241,0.07224662559906908 +"9 - 16",9.44197911,0.394840617525021 +"17 - 32",240.41447863,33.20692875908851 +"33 - 64",294.11531353,87.5371337954103 +"65 - 128",2150.19939590,253.1545358207834 +"129 - 256",8746.51015873,1701.739132076106 +"257 - 512",6348.48666667,4484.7021945002725 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..8e30061803 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +1,13.31620066,0.07932011778295477 +2,7.74754252,0.2327321569124126 +"3 - 4",1.76281952,0.1754979364227012 +"5 - 8",0.28744094,0.006652437573048864 +"9 - 16",0.74635573,0.015336188426172804 +"17 - 32",14.49213462,1.1742521773769417 +"33 - 64",29.99184268,5.400957690681392 +"65 - 128",176.90854099, +"129 - 256",568.59277778, +"257 - 512",529.04055556,36.107357328399715 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..2eba5956e5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +1,13.31620066,0.17903135000802123 +2,7.74754252,0.458583907954184 +"3 - 4",1.76281952,0.2772219446022639 +"5 - 8",0.28744094,0.009042231829515059 +"9 - 16",0.74635573,0.0282612425514622 +"17 - 32",14.49213462,1.9002947837570658 +"33 - 64",29.99184268,9.918478915099703 +"65 - 128",176.90854099,20.97765959788404 +"129 - 256",568.59277778,106.56252185196783 +"257 - 512",529.04055556,373.72518287502265 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..2eba5956e5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +1,13.31620066,0.17903135000802123 +2,7.74754252,0.458583907954184 +"3 - 4",1.76281952,0.2772219446022639 +"5 - 8",0.28744094,0.009042231829515059 +"9 - 16",0.74635573,0.0282612425514622 +"17 - 32",14.49213462,1.9002947837570658 +"33 - 64",29.99184268,9.918478915099703 +"65 - 128",176.90854099,20.97765959788404 +"129 - 256",568.59277778,106.56252185196783 +"257 - 512",529.04055556,373.72518287502265 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..2eba5956e5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +1,13.31620066,0.17903135000802123 +2,7.74754252,0.458583907954184 +"3 - 4",1.76281952,0.2772219446022639 +"5 - 8",0.28744094,0.009042231829515059 +"9 - 16",0.74635573,0.0282612425514622 +"17 - 32",14.49213462,1.9002947837570658 +"33 - 64",29.99184268,9.918478915099703 +"65 - 128",176.90854099,20.97765959788404 +"129 - 256",568.59277778,106.56252185196783 +"257 - 512",529.04055556,373.72518287502265 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv index 68ce959394..88b53ed8c3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +1,1.0000,0 +2,2.0000,0 +"3 - 4",4.0000,0 +"5 - 8",7.9997,0.0001415366272206137 +"9 - 16",12.0469,0.002994474507764085 +"17 - 32",25.2000,0.29214570410333923 +"33 - 64",52.5149,0.890276181683717 +"65 - 128",94.9515,1.0691413291600116 +"129 - 256",184.0000,4.1991252733426085 +"257 - 512",312.0000,16.97056274847714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv index 68ce959394..88b53ed8c3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +1,1.0000,0 +2,2.0000,0 +"3 - 4",4.0000,0 +"5 - 8",7.9997,0.0001415366272206137 +"9 - 16",12.0469,0.002994474507764085 +"17 - 32",25.2000,0.29214570410333923 +"33 - 64",52.5149,0.890276181683717 +"65 - 128",94.9515,1.0691413291600116 +"129 - 256",184.0000,4.1991252733426085 +"257 - 512",312.0000,16.97056274847714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..88b53ed8c3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +1,1.0000,0 +2,2.0000,0 +"3 - 4",4.0000,0 +"5 - 8",7.9997,0.0001415366272206137 +"9 - 16",12.0469,0.002994474507764085 +"17 - 32",25.2000,0.29214570410333923 +"33 - 64",52.5149,0.890276181683717 +"65 - 128",94.9515,1.0691413291600116 +"129 - 256",184.0000,4.1991252733426085 +"257 - 512",312.0000,16.97056274847714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv index 68ce959394..88b53ed8c3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +1,1.0000,0 +2,2.0000,0 +"3 - 4",4.0000,0 +"5 - 8",7.9997,0.0001415366272206137 +"9 - 16",12.0469,0.002994474507764085 +"17 - 32",25.2000,0.29214570410333923 +"33 - 64",52.5149,0.890276181683717 +"65 - 128",94.9515,1.0691413291600116 +"129 - 256",184.0000,4.1991252733426085 +"257 - 512",312.0000,16.97056274847714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..a78f3ada1c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Normalized (% of Total Cores)" +1,0.005000000 +2,0.025000000 +"3 - 4",0.033333333 +"5 - 8",0.049998231 +"9 - 16",0.060234292 +"17 - 32",0.157500000 +"33 - 64",0.437623762 +"65 - 128",0.791262136 +"129 - 256",2.300000000 +"257 - 512",7.800000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..a78f3ada1c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Normalized (% of Total Cores)" +1,0.005000000 +2,0.025000000 +"3 - 4",0.033333333 +"5 - 8",0.049998231 +"9 - 16",0.060234292 +"17 - 32",0.157500000 +"33 - 64",0.437623762 +"65 - 128",0.791262136 +"129 - 256",2.300000000 +"257 - 512",7.800000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..a78f3ada1c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Normalized (% of Total Cores)" +1,0.005000000 +2,0.025000000 +"3 - 4",0.033333333 +"5 - 8",0.049998231 +"9 - 16",0.060234292 +"17 - 32",0.157500000 +"33 - 64",0.437623762 +"65 - 128",0.791262136 +"129 - 256",2.300000000 +"257 - 512",7.800000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..a78f3ada1c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,19 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Size" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Normalized (% of Total Cores)" +1,0.005000000 +2,0.025000000 +"3 - 4",0.033333333 +"5 - 8",0.049998231 +"9 - 16",0.060234292 +"17 - 32",0.157500000 +"33 - 64",0.437623762 +"65 - 128",0.791262136 +"129 - 256",2.300000000 +"257 - 512",7.800000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..219450bfe7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"0 - 1s",9.30792642,1.1134794968096293 +"1 - 30s",10.79112748,0.9931598322969462 +"30s - 30min",7.33605372,0.3048493267848329 +"30 - 60min",2.62126326,0.5193562886542531 +"1 - 5hr",8.71891050,0.8336924491591556 +"5 - 10hr",8.64869500,1.0175877551623453 +"10 - 18hr",20.61959391,4.3118238711155445 +18+hr,88.88410428,7.124655724228779 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..da5f4d6f4a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"0 - 1s",9.30792642,2.0599663777836197 +"1 - 30s",10.79112748,1.819715858503851 +"30s - 30min",7.33605372,0.38751767300854256 +"30 - 60min",2.62126326,0.6285384136113866 +"1 - 5hr",8.71891050,1.1682995952692328 +"5 - 10hr",8.64869500,1.4145533962722754 +"10 - 18hr",20.61959391,5.220125574719083 +18+hr,88.88410428,12.921376255919107 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..da5f4d6f4a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"0 - 1s",9.30792642,2.0599663777836197 +"1 - 30s",10.79112748,1.819715858503851 +"30s - 30min",7.33605372,0.38751767300854256 +"30 - 60min",2.62126326,0.6285384136113866 +"1 - 5hr",8.71891050,1.1682995952692328 +"5 - 10hr",8.64869500,1.4145533962722754 +"10 - 18hr",20.61959391,5.220125574719083 +18+hr,88.88410428,12.921376255919107 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..da5f4d6f4a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"0 - 1s",9.30792642,2.0599663777836197 +"1 - 30s",10.79112748,1.819715858503851 +"30s - 30min",7.33605372,0.38751767300854256 +"30 - 60min",2.62126326,0.6285384136113866 +"1 - 5hr",8.71891050,1.1682995952692328 +"5 - 10hr",8.64869500,1.4145533962722754 +"10 - 18hr",20.61959391,5.220125574719083 +18+hr,88.88410428,12.921376255919107 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..cb9a3aa100 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"0 - 1s",0.76837495,0.075246069816645 +"1 - 30s",1.21292643,0.06540317334738192 +"30s - 30min",4.44552783,0.06003285322119457 +"30 - 60min",0.48648517,0.10582095400574301 +"1 - 5hr",1.15780209,0.07367355077361466 +"5 - 10hr",1.79883069,0.1114038135870238 +"10 - 18hr",1.63558799,0.3446792176910765 +18+hr,7.94787675,0.5907802207441184 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..4f9045cc7a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"0 - 1s",0.76837495,0.14036468691702456 +"1 - 30s",1.21292643,0.11718564819947835 +"30s - 30min",4.44552783,0.08598441769287898 +"30 - 60min",0.48648517,0.12103437242471125 +"1 - 5hr",1.15780209,0.10113775618547809 +"5 - 10hr",1.79883069,0.1432522769590482 +"10 - 18hr",1.63558799,0.41102934339956176 +18+hr,7.94787675,1.0741978283853542 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..4f9045cc7a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"0 - 1s",0.76837495,0.14036468691702456 +"1 - 30s",1.21292643,0.11718564819947835 +"30s - 30min",4.44552783,0.08598441769287898 +"30 - 60min",0.48648517,0.12103437242471125 +"1 - 5hr",1.15780209,0.10113775618547809 +"5 - 10hr",1.79883069,0.1432522769590482 +"10 - 18hr",1.63558799,0.41102934339956176 +18+hr,7.94787675,1.0741978283853542 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..4f9045cc7a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"0 - 1s",0.76837495,0.14036468691702456 +"1 - 30s",1.21292643,0.11718564819947835 +"30s - 30min",4.44552783,0.08598441769287898 +"30 - 60min",0.48648517,0.12103437242471125 +"1 - 5hr",1.15780209,0.10113775618547809 +"5 - 10hr",1.79883069,0.1432522769590482 +"10 - 18hr",1.63558799,0.41102934339956176 +18+hr,7.94787675,1.0741978283853542 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv index 68ce959394..6ce39c2097 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"0 - 1s",10.5420,0.03629478540827314 +"1 - 30s",9.7539,0.034361815865037997 +"30s - 30min",6.7929,0.031129165197921423 +"30 - 60min",5.4662,0.13124014108310847 +"1 - 5hr",8.6117,0.05383875091010273 +"5 - 10hr",9.0963,0.1243649472830689 +"10 - 18hr",13.0761,0.4770600686209722 +18+hr,8.8613,0.22926837811614564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv index 68ce959394..6ce39c2097 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"0 - 1s",10.5420,0.03629478540827314 +"1 - 30s",9.7539,0.034361815865037997 +"30s - 30min",6.7929,0.031129165197921423 +"30 - 60min",5.4662,0.13124014108310847 +"1 - 5hr",8.6117,0.05383875091010273 +"5 - 10hr",9.0963,0.1243649472830689 +"10 - 18hr",13.0761,0.4770600686209722 +18+hr,8.8613,0.22926837811614564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..6ce39c2097 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"0 - 1s",10.5420,0.03629478540827314 +"1 - 30s",9.7539,0.034361815865037997 +"30s - 30min",6.7929,0.031129165197921423 +"30 - 60min",5.4662,0.13124014108310847 +"1 - 5hr",8.6117,0.05383875091010273 +"5 - 10hr",9.0963,0.1243649472830689 +"10 - 18hr",13.0761,0.4770600686209722 +18+hr,8.8613,0.22926837811614564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv index 68ce959394..6ce39c2097 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"0 - 1s",10.5420,0.03629478540827314 +"1 - 30s",9.7539,0.034361815865037997 +"30s - 30min",6.7929,0.031129165197921423 +"30 - 60min",5.4662,0.13124014108310847 +"1 - 5hr",8.6117,0.05383875091010273 +"5 - 10hr",9.0963,0.1243649472830689 +"10 - 18hr",13.0761,0.4770600686209722 +18+hr,8.8613,0.22926837811614564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..5244ebc993 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Normalized (% of Total Cores)" +"0 - 1s",0.052710045 +"1 - 30s",0.048769260 +"30s - 30min",0.033964477 +"30 - 60min",0.034163534 +"1 - 5hr",0.053822880 +"5 - 10hr",0.056851782 +"10 - 18hr",0.081725888 +18+hr,0.073844376 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..5244ebc993 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Normalized (% of Total Cores)" +"0 - 1s",0.052710045 +"1 - 30s",0.048769260 +"30s - 30min",0.033964477 +"30 - 60min",0.034163534 +"1 - 5hr",0.053822880 +"5 - 10hr",0.056851782 +"10 - 18hr",0.081725888 +18+hr,0.073844376 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..5244ebc993 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Normalized (% of Total Cores)" +"0 - 1s",0.052710045 +"1 - 30s",0.048769260 +"30s - 30min",0.033964477 +"30 - 60min",0.034163534 +"1 - 5hr",0.053822880 +"5 - 10hr",0.056851782 +"10 - 18hr",0.081725888 +18+hr,0.073844376 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..5244ebc993 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Wait Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Normalized (% of Total Cores)" +"0 - 1s",0.052710045 +"1 - 30s",0.048769260 +"30s - 30min",0.033964477 +"30 - 60min",0.034163534 +"1 - 5hr",0.053822880 +"5 - 10hr",0.056851782 +"10 - 18hr",0.081725888 +18+hr,0.073844376 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..1b78156c88 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.03442930,0.00016722448604316987 +"30s - 30min",1.54650917,0.01227538007694648 +"30 - 60min",6.91086052,0.01743281443698246 +"1 - 5hr",15.35199200,0.14055187769510497 +"5 - 10hr",15.64643256,1.3567541768245959 +"10 - 18hr",146.57418184,16.68786432652335 +18+hr,219.97624222,11.381246695013605 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..dc9d1b8bb1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.03442930,0.00016724131861215643 +"30s - 30min",1.54650917,0.012294163371689416 +"30 - 60min",6.91086052,0.018580158606972392 +"1 - 5hr",15.35199200,0.14828397955629916 +"5 - 10hr",15.64643256,1.6155090784877295 +"10 - 18hr",146.57418184,19.833940313987615 +18+hr,219.97624222,21.001641212085453 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..dc9d1b8bb1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.03442930,0.00016724131861215643 +"30s - 30min",1.54650917,0.012294163371689416 +"30 - 60min",6.91086052,0.018580158606972392 +"1 - 5hr",15.35199200,0.14828397955629916 +"5 - 10hr",15.64643256,1.6155090784877295 +"10 - 18hr",146.57418184,19.833940313987615 +18+hr,219.97624222,21.001641212085453 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..dc9d1b8bb1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.03442930,0.00016724131861215643 +"30s - 30min",1.54650917,0.012294163371689416 +"30 - 60min",6.91086052,0.018580158606972392 +"1 - 5hr",15.35199200,0.14828397955629916 +"5 - 10hr",15.64643256,1.6155090784877295 +"10 - 18hr",146.57418184,19.833940313987615 +18+hr,219.97624222,21.001641212085453 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..c11ba137c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00426141,0.000020773995634172495 +"30s - 30min",0.14354484,0.00105605497065804 +"30 - 60min",0.61823751,0.0016193288534702775 +"1 - 5hr",1.81597059,0.011819467803331178 +"5 - 10hr",8.39439843,0.057984949790861606 +"10 - 18hr",20.96583997,1.0684218603675948 +18+hr,45.23259757,0.5236229868795492 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..cc106ed217 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00426141,0.000020776112776185586 +"30s - 30min",0.14354484,0.001057864201687461 +"30 - 60min",0.61823751,0.0017207621865128577 +"1 - 5hr",1.81597059,0.012498055360163518 +"5 - 10hr",8.39439843,0.15359682084405404 +"10 - 18hr",20.96583997,1.3597145358406444 +18+hr,45.23259757,1.4593435081413741 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..cc106ed217 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00426141,0.000020776112776185586 +"30s - 30min",0.14354484,0.001057864201687461 +"30 - 60min",0.61823751,0.0017207621865128577 +"1 - 5hr",1.81597059,0.012498055360163518 +"5 - 10hr",8.39439843,0.15359682084405404 +"10 - 18hr",20.96583997,1.3597145358406444 +18+hr,45.23259757,1.4593435081413741 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..cc106ed217 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"0 - 1s",0.00000000,0 +"1 - 30s",0.00426141,0.000020776112776185586 +"30s - 30min",0.14354484,0.001057864201687461 +"30 - 60min",0.61823751,0.0017207621865128577 +"1 - 5hr",1.81597059,0.012498055360163518 +"5 - 10hr",8.39439843,0.15359682084405404 +"10 - 18hr",20.96583997,1.3597145358406444 +18+hr,45.23259757,1.4593435081413741 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv index 68ce959394..a4d68d65b0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"0 - 1s",10.1859,0.04616067300325258 +"1 - 30s",8.3404,0.01350448178099736 +"30s - 30min",8.7342,0.028705627224351306 +"30 - 60min",11.4321,0.0282116667395198 +"1 - 5hr",8.5747,0.0471213615584051 +"5 - 10hr",2.0261,0.2037037229932941 +"10 - 18hr",10.8362,1.4990907117572208 +18+hr,4.2651,0.3366915376978096 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv index 68ce959394..a4d68d65b0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"0 - 1s",10.1859,0.04616067300325258 +"1 - 30s",8.3404,0.01350448178099736 +"30s - 30min",8.7342,0.028705627224351306 +"30 - 60min",11.4321,0.0282116667395198 +"1 - 5hr",8.5747,0.0471213615584051 +"5 - 10hr",2.0261,0.2037037229932941 +"10 - 18hr",10.8362,1.4990907117572208 +18+hr,4.2651,0.3366915376978096 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..a4d68d65b0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"0 - 1s",10.1859,0.04616067300325258 +"1 - 30s",8.3404,0.01350448178099736 +"30s - 30min",8.7342,0.028705627224351306 +"30 - 60min",11.4321,0.0282116667395198 +"1 - 5hr",8.5747,0.0471213615584051 +"5 - 10hr",2.0261,0.2037037229932941 +"10 - 18hr",10.8362,1.4990907117572208 +18+hr,4.2651,0.3366915376978096 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv index 68ce959394..a4d68d65b0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"0 - 1s",10.1859,0.04616067300325258 +"1 - 30s",8.3404,0.01350448178099736 +"30s - 30min",8.7342,0.028705627224351306 +"30 - 60min",11.4321,0.0282116667395198 +"1 - 5hr",8.5747,0.0471213615584051 +"5 - 10hr",2.0261,0.2037037229932941 +"10 - 18hr",10.8362,1.4990907117572208 +18+hr,4.2651,0.3366915376978096 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..06e921eca5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Normalized (% of Total Cores)" +"0 - 1s",0.050929608 +"1 - 30s",0.041701773 +"30s - 30min",0.043670923 +"30 - 60min",0.057160507 +"1 - 5hr",0.042873394 +"5 - 10hr",0.016883947 +"10 - 18hr",0.067726109 +18+hr,0.021325714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..06e921eca5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Normalized (% of Total Cores)" +"0 - 1s",0.050929608 +"1 - 30s",0.041701773 +"30s - 30min",0.043670923 +"30 - 60min",0.057160507 +"1 - 5hr",0.042873394 +"5 - 10hr",0.016883947 +"10 - 18hr",0.067726109 +18+hr,0.021325714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..06e921eca5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Normalized (% of Total Cores)" +"0 - 1s",0.050929608 +"1 - 30s",0.041701773 +"30s - 30min",0.043670923 +"30 - 60min",0.057160507 +"1 - 5hr",0.042873394 +"5 - 10hr",0.016883947 +"10 - 18hr",0.067726109 +18+hr,0.021325714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..06e921eca5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,17 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Job Wall Time" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Normalized (% of Total Cores)" +"0 - 1s",0.050929608 +"1 - 30s",0.041701773 +"30s - 30min",0.043670923 +"30 - 60min",0.057160507 +"1 - 5hr",0.042873394 +"5 - 10hr",0.016883947 +"10 - 18hr",0.067726109 +18+hr,0.021325714 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..eb995b4923 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +28,12690.81333333, +12,11508.07878788, +7,2467.25283951, +5,1843.41000000, +8,1664.92808466,58.55903978032156 +6,1526.75633333, +20,722.24444444,221.86209986841982 +14,564.52666667,321.25321884345993 +2,151.17171580,20.51779867806838 +4,147.67825888,27.087898165273018 +3,145.32333333,14.635485372845189 +9,28.14000000,0 +16,9.60000000,3.8977582160917974 +24,6.16000000,0 +1,5.98028816,0.09435627313037417 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..cc28d3116c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +28,12690.81333333,0 +12,11508.07878788,1273.1593168011718 +7,2467.25283951,674.5437785428696 +5,1843.41000000,167.2738902120312 +8,1664.92808466,255.8876329512214 +6,1526.75633333,325.29611773359665 +20,722.24444444,508.25264083286396 +14,564.52666667,397.72870823660134 +2,151.17171580,33.2718028392892 +4,147.67825888,41.51942223431663 +3,145.32333333,14.635485372845189 +9,28.14000000,0 +16,9.60000000,3.8977582160917974 +24,6.16000000,0 +1,5.98028816,0.16498028210584764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..cc28d3116c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +28,12690.81333333,0 +12,11508.07878788,1273.1593168011718 +7,2467.25283951,674.5437785428696 +5,1843.41000000,167.2738902120312 +8,1664.92808466,255.8876329512214 +6,1526.75633333,325.29611773359665 +20,722.24444444,508.25264083286396 +14,564.52666667,397.72870823660134 +2,151.17171580,33.2718028392892 +4,147.67825888,41.51942223431663 +3,145.32333333,14.635485372845189 +9,28.14000000,0 +16,9.60000000,3.8977582160917974 +24,6.16000000,0 +1,5.98028816,0.16498028210584764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..cc28d3116c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +28,12690.81333333,0 +12,11508.07878788,1273.1593168011718 +7,2467.25283951,674.5437785428696 +5,1843.41000000,167.2738902120312 +8,1664.92808466,255.8876329512214 +6,1526.75633333,325.29611773359665 +20,722.24444444,508.25264083286396 +14,564.52666667,397.72870823660134 +2,151.17171580,33.2718028392892 +4,147.67825888,41.51942223431663 +3,145.32333333,14.635485372845189 +9,28.14000000,0 +16,9.60000000,3.8977582160917974 +24,6.16000000,0 +1,5.98028816,0.16498028210584764 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv index e1494ecb99..6b1f78e986 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[28] CPU Hours: Per Job","[12] CPU Hours: Per Job","[7] CPU Hours: Per Job","[8] CPU Hours: Per Job","[6] CPU Hours: Per Job","[5] CPU Hours: Per Job","[20] CPU Hours: Per Job","[14] CPU Hours: Per Job","[3] CPU Hours: Per Job","[4] CPU Hours: Per Job","[2] CPU Hours: Per Job","[9] CPU Hours: Per Job","[16] CPU Hours: Per Job","[24] CPU Hours: Per Job","[1] CPU Hours: Per Job" +Day,"[28] CPU Hours: Per Job","[12] CPU Hours: Per Job","[7] CPU Hours: Per Job","[5] CPU Hours: Per Job","[8] CPU Hours: Per Job","[6] CPU Hours: Per Job","[20] CPU Hours: Per Job","[14] CPU Hours: Per Job","[2] CPU Hours: Per Job","[4] CPU Hours: Per Job","[3] CPU Hours: Per Job","[9] CPU Hours: Per Job","[16] CPU Hours: Per Job","[24] CPU Hours: Per Job","[1] CPU Hours: Per Job" 2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202.12833333 2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194.86787037 2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.00000000 2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129.71166667 2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205.12121212 -2016-12-27,0,2997.12000000,0,995.64888889,1487.82000000,0,0,0,0,0,650.84444444,0,0,0,170.11530229 -2016-12-28,0,3440.36148148,1960.21777778,1466.74500000,1170.67333333,0,0,0,0,266.54222222,317.56444444,0,0,0,49.11018136 -2016-12-29,0,4480.00000000,866.38222222,2034.79076923,966.80666667,793.20000000,1038.22222222,107.90888889,0,576.28571429,731.88949495,0,0,0,30.06994408 -2016-12-30,6989.26666667,3498.91030303,1322.14617284,961.91298246,1291.30200000,591.25333333,402.80000000,510.57222222,0,123.05214092,68.68273810,28.14000000,15.52000000,6.16000000,4.76877973 -2016-12-31,5701.54666667,1382.04800000,802.76622222,816.20748538,613.94111111,1125.26666667,0,0,140.22600000,254.87523810,184.82737778,0,5.76000000,0,5.14401129 -2017-01-01,0,0,0,195.85111111,176.00416667,649.29166667,3.46666667,0,121.35600000,18.28694444,28.31038961,0,5.60000000,0,3.34432215 +2016-12-27,0,2997.12000000,0,0,995.64888889,1487.82000000,0,0,650.84444444,0,0,0,0,0,170.11530229 +2016-12-28,0,3440.36148148,1960.21777778,0,1466.74500000,1170.67333333,0,0,317.56444444,266.54222222,0,0,0,0,49.11018136 +2016-12-29,0,4480.00000000,866.38222222,793.20000000,2034.79076923,966.80666667,1038.22222222,107.90888889,731.88949495,576.28571429,0,0,0,0,30.06994408 +2016-12-30,6989.26666667,3498.91030303,1322.14617284,591.25333333,961.91298246,1291.30200000,402.80000000,510.57222222,68.68273810,123.05214092,0,28.14000000,15.52000000,6.16000000,4.76877973 +2016-12-31,5701.54666667,1382.04800000,802.76622222,1125.26666667,816.20748538,613.94111111,0,0,184.82737778,254.87523810,140.22600000,0,5.76000000,0,5.14401129 +2017-01-01,0,0,0,649.29166667,195.85111111,176.00416667,3.46666667,0,28.31038961,18.28694444,121.35600000,0,5.60000000,0,3.34432215 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv index 2f0bcb0093..3417595479 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[28] CPU Hours: Per Job","[12] CPU Hours: Per Job","[7] CPU Hours: Per Job","[8] CPU Hours: Per Job","[6] CPU Hours: Per Job","[5] CPU Hours: Per Job","[20] CPU Hours: Per Job","[14] CPU Hours: Per Job","[4] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3] CPU Hours: Per Job","[9] CPU Hours: Per Job","[16] CPU Hours: Per Job","[24] CPU Hours: Per Job","[1] CPU Hours: Per Job" -2016-12,12690.81333333,11508.07878788,2467.25283951,2308.33333333,2240.54564103,1583.69333333,1441.02222222,564.52666667,263.66701525,250.52927778,140.22600000,28.14000000,12.26666667,6.16000000,6.59852411 -2017-01,0,0,0,195.85111111,176.00416667,649.29166667,3.46666667,0,18.28694444,28.31038961,121.35600000,0,5.60000000,0,3.34432215 +Month,"[28] CPU Hours: Per Job","[12] CPU Hours: Per Job","[7] CPU Hours: Per Job","[5] CPU Hours: Per Job","[8] CPU Hours: Per Job","[6] CPU Hours: Per Job","[20] CPU Hours: Per Job","[14] CPU Hours: Per Job","[2] CPU Hours: Per Job","[4] CPU Hours: Per Job","[3] CPU Hours: Per Job","[9] CPU Hours: Per Job","[16] CPU Hours: Per Job","[24] CPU Hours: Per Job","[1] CPU Hours: Per Job" +2016-12,12690.81333333,11508.07878788,2467.25283951,1583.69333333,2308.33333333,2240.54564103,1441.02222222,564.52666667,250.52927778,263.66701525,140.22600000,28.14000000,12.26666667,6.16000000,6.59852411 +2017-01,0,0,0,649.29166667,195.85111111,176.00416667,3.46666667,0,28.31038961,18.28694444,121.35600000,0,5.60000000,0,3.34432215 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv index 8dd1b23e2e..d2c6a27499 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[28] CPU Hours: Per Job","[12] CPU Hours: Per Job","[7] CPU Hours: Per Job","[8] CPU Hours: Per Job","[6] CPU Hours: Per Job","[5] CPU Hours: Per Job","[20] CPU Hours: Per Job","[14] CPU Hours: Per Job","[4] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3] CPU Hours: Per Job","[9] CPU Hours: Per Job","[16] CPU Hours: Per Job","[24] CPU Hours: Per Job","[1] CPU Hours: Per Job" -"2016 Q4",12690.81333333,11508.07878788,2467.25283951,2308.33333333,2240.54564103,1583.69333333,1441.02222222,564.52666667,263.66701525,250.52927778,140.22600000,28.14000000,12.26666667,6.16000000,6.59852411 -"2017 Q1",0,0,0,195.85111111,176.00416667,649.29166667,3.46666667,0,18.28694444,28.31038961,121.35600000,0,5.60000000,0,3.34432215 +Quarter,"[28] CPU Hours: Per Job","[12] CPU Hours: Per Job","[7] CPU Hours: Per Job","[5] CPU Hours: Per Job","[8] CPU Hours: Per Job","[6] CPU Hours: Per Job","[20] CPU Hours: Per Job","[14] CPU Hours: Per Job","[2] CPU Hours: Per Job","[4] CPU Hours: Per Job","[3] CPU Hours: Per Job","[9] CPU Hours: Per Job","[16] CPU Hours: Per Job","[24] CPU Hours: Per Job","[1] CPU Hours: Per Job" +"2016 Q4",12690.81333333,11508.07878788,2467.25283951,1583.69333333,2308.33333333,2240.54564103,1441.02222222,564.52666667,250.52927778,263.66701525,140.22600000,28.14000000,12.26666667,6.16000000,6.59852411 +"2017 Q1",0,0,0,649.29166667,195.85111111,176.00416667,3.46666667,0,28.31038961,18.28694444,121.35600000,0,5.60000000,0,3.34432215 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv index 9ce249fff4..7d5e471d1f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_cpu_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[28] CPU Hours: Per Job","[12] CPU Hours: Per Job","[7] CPU Hours: Per Job","[8] CPU Hours: Per Job","[6] CPU Hours: Per Job","[5] CPU Hours: Per Job","[20] CPU Hours: Per Job","[14] CPU Hours: Per Job","[4] CPU Hours: Per Job","[2] CPU Hours: Per Job","[3] CPU Hours: Per Job","[9] CPU Hours: Per Job","[16] CPU Hours: Per Job","[24] CPU Hours: Per Job","[1] CPU Hours: Per Job" -2016,12690.81333333,11508.07878788,2467.25283951,2308.33333333,2240.54564103,1583.69333333,1441.02222222,564.52666667,263.66701525,250.52927778,140.22600000,28.14000000,12.26666667,6.16000000,6.59852411 -2017,0,0,0,195.85111111,176.00416667,649.29166667,3.46666667,0,18.28694444,28.31038961,121.35600000,0,5.60000000,0,3.34432215 +Year,"[28] CPU Hours: Per Job","[12] CPU Hours: Per Job","[7] CPU Hours: Per Job","[5] CPU Hours: Per Job","[8] CPU Hours: Per Job","[6] CPU Hours: Per Job","[20] CPU Hours: Per Job","[14] CPU Hours: Per Job","[2] CPU Hours: Per Job","[4] CPU Hours: Per Job","[3] CPU Hours: Per Job","[9] CPU Hours: Per Job","[16] CPU Hours: Per Job","[24] CPU Hours: Per Job","[1] CPU Hours: Per Job" +2016,12690.81333333,11508.07878788,2467.25283951,1583.69333333,2308.33333333,2240.54564103,1441.02222222,564.52666667,250.52927778,263.66701525,140.22600000,28.14000000,12.26666667,6.16000000,6.59852411 +2017,0,0,0,649.29166667,195.85111111,176.00416667,3.46666667,0,28.31038961,18.28694444,121.35600000,0,5.60000000,0,3.34432215 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..dd389f4e80 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +28,1057.56777778, +12,770.82818182, +7,154.20330247, +5,153.61750000, +8,142.09441270,4.869888542558707 +14,141.13166667,80.31330471086498 +6,134.50275000, +20,90.28055556,27.732762483552477 +4,15.88549828,2.7200799726624947 +3,12.11027778,1.2196237810704322 +2,10.41196145,1.3279113918813965 +9,2.34500000,0 +1,1.73983262,0.017634409297817635 +16,0.88088889,0.30840319929166327 +24,0.51333333,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..be6b5f5d50 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +28,1057.56777778,0 +12,770.82818182,60.26754007778413 +7,154.20330247,42.15898615892946 +5,153.61750000,13.9394908510026 +8,142.09441270,21.89195758186314 +14,141.13166667,99.43217705915033 +6,134.50275000,29.74888502165413 +20,90.28055556,63.531580104107995 +4,15.88549828,3.954084262114816 +3,12.11027778,1.2196237810704322 +2,10.41196145,2.0693800524097243 +9,2.34500000,0 +1,1.73983262,0.025196235065978963 +16,0.88088889,0.30840319929166327 +24,0.51333333,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..be6b5f5d50 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +28,1057.56777778,0 +12,770.82818182,60.26754007778413 +7,154.20330247,42.15898615892946 +5,153.61750000,13.9394908510026 +8,142.09441270,21.89195758186314 +14,141.13166667,99.43217705915033 +6,134.50275000,29.74888502165413 +20,90.28055556,63.531580104107995 +4,15.88549828,3.954084262114816 +3,12.11027778,1.2196237810704322 +2,10.41196145,2.0693800524097243 +9,2.34500000,0 +1,1.73983262,0.025196235065978963 +16,0.88088889,0.30840319929166327 +24,0.51333333,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..be6b5f5d50 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +28,1057.56777778,0 +12,770.82818182,60.26754007778413 +7,154.20330247,42.15898615892946 +5,153.61750000,13.9394908510026 +8,142.09441270,21.89195758186314 +14,141.13166667,99.43217705915033 +6,134.50275000,29.74888502165413 +20,90.28055556,63.531580104107995 +4,15.88549828,3.954084262114816 +3,12.11027778,1.2196237810704322 +2,10.41196145,2.0693800524097243 +9,2.34500000,0 +1,1.73983262,0.025196235065978963 +16,0.88088889,0.30840319929166327 +24,0.51333333,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv index 547023e05d..226a70c1bf 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[28] Node Hours: Per Job","[12] Node Hours: Per Job","[14] Node Hours: Per Job","[8] Node Hours: Per Job","[6] Node Hours: Per Job","[7] Node Hours: Per Job","[5] Node Hours: Per Job","[20] Node Hours: Per Job","[4] Node Hours: Per Job","[3] Node Hours: Per Job","[2] Node Hours: Per Job","[9] Node Hours: Per Job","[1] Node Hours: Per Job","[16] Node Hours: Per Job","[24] Node Hours: Per Job" +Day,"[28] Node Hours: Per Job","[12] Node Hours: Per Job","[7] Node Hours: Per Job","[5] Node Hours: Per Job","[8] Node Hours: Per Job","[14] Node Hours: Per Job","[6] Node Hours: Per Job","[20] Node Hours: Per Job","[4] Node Hours: Per Job","[3] Node Hours: Per Job","[2] Node Hours: Per Job","[9] Node Hours: Per Job","[1] Node Hours: Per Job","[16] Node Hours: Per Job","[24] Node Hours: Per Job" 2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,16.84402778,0,0 2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,18.86787037,0,0 2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0 2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,13.41796296,0,0 2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,14.32007576,0,0 -2016-12-27,0,249.76000000,0,85.50388889,123.98500000,0,0,0,0,0,40.67777778,0,12.03753268,0,0 -2016-12-28,0,223.02259259,0,126.22875000,110.33416667,122.51361111,0,0,33.31777778,0,19.84777778,0,9.72253304,0,0 -2016-12-29,0,288.00000000,26.97722222,172.02743590,85.90055556,54.14888889,66.10000000,129.77777778,68.01904762,0,44.88060606,0,11.48062263,0,0 -2016-12-30,582.43888889,226.16666667,127.64305556,81.37512671,112.40850000,82.63413580,49.27111111,50.35000000,11.92878049,0,4.18469246,2.34500000,1.44640537,1.37777778,0.51333333 -2016-12-31,475.12888889,114.23133333,0,70.28017544,54.24750000,50.17288889,93.77222222,0,26.76873016,11.68550000,15.38915556,0,1.40446323,0.48000000,0 -2017-01-01,0,0,0,17.64762626,15.34083333,0,54.10763889,0.43333333,2.10342593,10.11300000,2.56506494,0,1.00729505,0.58444444,0 +2016-12-27,0,249.76000000,0,0,85.50388889,0,123.98500000,0,0,0,40.67777778,0,12.03753268,0,0 +2016-12-28,0,223.02259259,122.51361111,0,126.22875000,0,110.33416667,0,33.31777778,0,19.84777778,0,9.72253304,0,0 +2016-12-29,0,288.00000000,54.14888889,66.10000000,172.02743590,26.97722222,85.90055556,129.77777778,68.01904762,0,44.88060606,0,11.48062263,0,0 +2016-12-30,582.43888889,226.16666667,82.63413580,49.27111111,81.37512671,127.64305556,112.40850000,50.35000000,11.92878049,0,4.18469246,2.34500000,1.44640537,1.37777778,0.51333333 +2016-12-31,475.12888889,114.23133333,50.17288889,93.77222222,70.28017544,0,54.24750000,0,26.76873016,11.68550000,15.38915556,0,1.40446323,0.48000000,0 +2017-01-01,0,0,0,54.10763889,17.64762626,0,15.34083333,0.43333333,2.10342593,10.11300000,2.56506494,0,1.00729505,0.58444444,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv index f11c1a2df1..de009ba45a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[28] Node Hours: Per Job","[12] Node Hours: Per Job","[7] Node Hours: Per Job","[14] Node Hours: Per Job","[8] Node Hours: Per Job","[6] Node Hours: Per Job","[5] Node Hours: Per Job","[20] Node Hours: Per Job","[4] Node Hours: Per Job","[3] Node Hours: Per Job","[2] Node Hours: Per Job","[9] Node Hours: Per Job","[1] Node Hours: Per Job","[16] Node Hours: Per Job","[24] Node Hours: Per Job" -2016-12,1057.56777778,770.82818182,154.20330247,141.13166667,196.43635802,197.48679487,131.97444444,180.12777778,28.23389978,11.68550000,16.66310417,2.34500000,1.90964305,1.07851852,0.51333333 -2017-01,0,0,0,0,17.64762626,15.34083333,54.10763889,0.43333333,2.10342593,10.11300000,2.56506494,0,1.00729505,0.58444444,0 +Month,"[28] Node Hours: Per Job","[12] Node Hours: Per Job","[7] Node Hours: Per Job","[5] Node Hours: Per Job","[8] Node Hours: Per Job","[14] Node Hours: Per Job","[6] Node Hours: Per Job","[20] Node Hours: Per Job","[4] Node Hours: Per Job","[3] Node Hours: Per Job","[2] Node Hours: Per Job","[9] Node Hours: Per Job","[1] Node Hours: Per Job","[16] Node Hours: Per Job","[24] Node Hours: Per Job" +2016-12,1057.56777778,770.82818182,154.20330247,131.97444444,196.43635802,141.13166667,197.48679487,180.12777778,28.23389978,11.68550000,16.66310417,2.34500000,1.90964305,1.07851852,0.51333333 +2017-01,0,0,0,54.10763889,17.64762626,0,15.34083333,0.43333333,2.10342593,10.11300000,2.56506494,0,1.00729505,0.58444444,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv index 594386e2bb..40ff7784f0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[28] Node Hours: Per Job","[12] Node Hours: Per Job","[7] Node Hours: Per Job","[14] Node Hours: Per Job","[8] Node Hours: Per Job","[6] Node Hours: Per Job","[5] Node Hours: Per Job","[20] Node Hours: Per Job","[4] Node Hours: Per Job","[3] Node Hours: Per Job","[2] Node Hours: Per Job","[9] Node Hours: Per Job","[1] Node Hours: Per Job","[16] Node Hours: Per Job","[24] Node Hours: Per Job" -"2016 Q4",1057.56777778,770.82818182,154.20330247,141.13166667,196.43635802,197.48679487,131.97444444,180.12777778,28.23389978,11.68550000,16.66310417,2.34500000,1.90964305,1.07851852,0.51333333 -"2017 Q1",0,0,0,0,17.64762626,15.34083333,54.10763889,0.43333333,2.10342593,10.11300000,2.56506494,0,1.00729505,0.58444444,0 +Quarter,"[28] Node Hours: Per Job","[12] Node Hours: Per Job","[7] Node Hours: Per Job","[5] Node Hours: Per Job","[8] Node Hours: Per Job","[14] Node Hours: Per Job","[6] Node Hours: Per Job","[20] Node Hours: Per Job","[4] Node Hours: Per Job","[3] Node Hours: Per Job","[2] Node Hours: Per Job","[9] Node Hours: Per Job","[1] Node Hours: Per Job","[16] Node Hours: Per Job","[24] Node Hours: Per Job" +"2016 Q4",1057.56777778,770.82818182,154.20330247,131.97444444,196.43635802,141.13166667,197.48679487,180.12777778,28.23389978,11.68550000,16.66310417,2.34500000,1.90964305,1.07851852,0.51333333 +"2017 Q1",0,0,0,54.10763889,17.64762626,0,15.34083333,0.43333333,2.10342593,10.11300000,2.56506494,0,1.00729505,0.58444444,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv index f343336ea5..1f4e7b2372 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[28] Node Hours: Per Job","[12] Node Hours: Per Job","[7] Node Hours: Per Job","[14] Node Hours: Per Job","[8] Node Hours: Per Job","[6] Node Hours: Per Job","[5] Node Hours: Per Job","[20] Node Hours: Per Job","[4] Node Hours: Per Job","[3] Node Hours: Per Job","[2] Node Hours: Per Job","[9] Node Hours: Per Job","[1] Node Hours: Per Job","[16] Node Hours: Per Job","[24] Node Hours: Per Job" -2016,1057.56777778,770.82818182,154.20330247,141.13166667,196.43635802,197.48679487,131.97444444,180.12777778,28.23389978,11.68550000,16.66310417,2.34500000,1.90964305,1.07851852,0.51333333 -2017,0,0,0,0,17.64762626,15.34083333,54.10763889,0.43333333,2.10342593,10.11300000,2.56506494,0,1.00729505,0.58444444,0 +Year,"[28] Node Hours: Per Job","[12] Node Hours: Per Job","[7] Node Hours: Per Job","[5] Node Hours: Per Job","[8] Node Hours: Per Job","[14] Node Hours: Per Job","[6] Node Hours: Per Job","[20] Node Hours: Per Job","[4] Node Hours: Per Job","[3] Node Hours: Per Job","[2] Node Hours: Per Job","[9] Node Hours: Per Job","[1] Node Hours: Per Job","[16] Node Hours: Per Job","[24] Node Hours: Per Job" +2016,1057.56777778,770.82818182,154.20330247,131.97444444,196.43635802,141.13166667,197.48679487,180.12777778,28.23389978,11.68550000,16.66310417,2.34500000,1.90964305,1.07851852,0.51333333 +2017,0,0,0,54.10763889,17.64762626,0,15.34083333,0.43333333,2.10342593,10.11300000,2.56506494,0,1.00729505,0.58444444,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv index 68ce959394..00aa1de7c7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +28,336.0000,0 +24,288.0000,0 +12,170.1818,11.317957780440397 +16,166.4000,14.021697472132232 +20,160.0000,0 +7,112.0000,0 +9,108.0000,0 +8,86.8571,1.410773485451462 +6,63.6000,2.5596874809241847 +5,60.0000,0 +14,56.0000,0 +4,40.4124,0.9357909280078228 +3,36.0000,0 +2,22.8571,0.36910639369965087 +1,8.4588,0.011829390884945808 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv index 68ce959394..00aa1de7c7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +28,336.0000,0 +24,288.0000,0 +12,170.1818,11.317957780440397 +16,166.4000,14.021697472132232 +20,160.0000,0 +7,112.0000,0 +9,108.0000,0 +8,86.8571,1.410773485451462 +6,63.6000,2.5596874809241847 +5,60.0000,0 +14,56.0000,0 +4,40.4124,0.9357909280078228 +3,36.0000,0 +2,22.8571,0.36910639369965087 +1,8.4588,0.011829390884945808 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..00aa1de7c7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +28,336.0000,0 +24,288.0000,0 +12,170.1818,11.317957780440397 +16,166.4000,14.021697472132232 +20,160.0000,0 +7,112.0000,0 +9,108.0000,0 +8,86.8571,1.410773485451462 +6,63.6000,2.5596874809241847 +5,60.0000,0 +14,56.0000,0 +4,40.4124,0.9357909280078228 +3,36.0000,0 +2,22.8571,0.36910639369965087 +1,8.4588,0.011829390884945808 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv index 68ce959394..00aa1de7c7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +28,336.0000,0 +24,288.0000,0 +12,170.1818,11.317957780440397 +16,166.4000,14.021697472132232 +20,160.0000,0 +7,112.0000,0 +9,108.0000,0 +8,86.8571,1.410773485451462 +6,63.6000,2.5596874809241847 +5,60.0000,0 +14,56.0000,0 +4,40.4124,0.9357909280078228 +3,36.0000,0 +2,22.8571,0.36910639369965087 +1,8.4588,0.011829390884945808 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..22195dbc87 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Normalized (% of Total Cores)" +28,8.400000000 +24,7.200000000 +16,4.160000000 +20,4.000000000 +7,2.800000000 +9,2.700000000 +12,2.127272727 +6,1.590000000 +5,1.500000000 +14,1.400000000 +8,1.085714286 +3,0.900000000 +4,0.336769759 +2,0.285714286 +1,0.042294211 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..22195dbc87 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Normalized (% of Total Cores)" +28,8.400000000 +24,7.200000000 +16,4.160000000 +20,4.000000000 +7,2.800000000 +9,2.700000000 +12,2.127272727 +6,1.590000000 +5,1.500000000 +14,1.400000000 +8,1.085714286 +3,0.900000000 +4,0.336769759 +2,0.285714286 +1,0.042294211 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..22195dbc87 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Normalized (% of Total Cores)" +28,8.400000000 +24,7.200000000 +16,4.160000000 +20,4.000000000 +7,2.800000000 +9,2.700000000 +12,2.127272727 +6,1.590000000 +5,1.500000000 +14,1.400000000 +8,1.085714286 +3,0.900000000 +4,0.336769759 +2,0.285714286 +1,0.042294211 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..22195dbc87 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,24 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Node Count" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Normalized (% of Total Cores)" +28,8.400000000 +24,7.200000000 +16,4.160000000 +20,4.000000000 +7,2.800000000 +9,2.700000000 +12,2.127272727 +6,1.590000000 +5,1.500000000 +14,1.400000000 +8,1.085714286 +3,0.900000000 +4,0.336769759 +2,0.285714286 +1,0.042294211 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..b14424beec 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +Screwdriver,11.78685285,0.45350239591639724 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..dcda9ec49c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +Screwdriver,11.78685285,0.7937184281551048 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..dcda9ec49c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +Screwdriver,11.78685285,0.7937184281551048 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..dcda9ec49c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +Screwdriver,11.78685285,0.7937184281551048 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..6411c49e61 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Screwdriver,2.19179880,0.037808294679009785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..c7ba1b18f7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Screwdriver,2.19179880,0.0629473985565196 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..c7ba1b18f7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Screwdriver,2.19179880,0.0629473985565196 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..c7ba1b18f7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Screwdriver,2.19179880,0.0629473985565196 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Day-reference.csv index 68ce959394..628019e8b9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count)" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +Screwdriver,8.7346,0.02156312501879985 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Month-reference.csv index 68ce959394..628019e8b9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count)" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +Screwdriver,8.7346,0.02156312501879985 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..628019e8b9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count)" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +Screwdriver,8.7346,0.02156312501879985 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Year-reference.csv index 68ce959394..628019e8b9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count)" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +Screwdriver,8.7346,0.02156312501879985 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..7d557792c1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores)" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Normalized (% of Total Cores)" +Screwdriver,0.043672753 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..7d557792c1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores)" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Normalized (% of Total Cores)" +Screwdriver,0.043672753 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..7d557792c1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores)" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Normalized (% of Total Cores)" +Screwdriver,0.043672753 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..7d557792c1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores)" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Normalized (% of Total Cores)" +Screwdriver,0.043672753 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..5dc8e71c4a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +Engineering,378.41627884,31.984634618360694 +Humanities/Arts,188.13274411,2.041452970260724 +"Biological Sciences",61.98054777,9.807443316367232 +"Mathematical and Physical Sciences",39.82065205,3.067731835288661 +"Computer and Information Science and Engineering",27.72618823,0.14756979110510704 +Geosciences,17.24043389,0.9865308518927637 +"Social, Behavioral, and Economic Sciences",2.82983496,0.027720914800936126 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..228915657c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +Engineering,378.41627884,57.328177197170056 +Humanities/Arts,188.13274411,16.44278594480015 +"Biological Sciences",61.98054777,20.50229784028209 +"Mathematical and Physical Sciences",39.82065205,5.553821375301377 +"Computer and Information Science and Engineering",27.72618823,0.516814891598504 +Geosciences,17.24043389,1.4179492534823879 +"Social, Behavioral, and Economic Sciences",2.82983496,0.03098245418859181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..228915657c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +Engineering,378.41627884,57.328177197170056 +Humanities/Arts,188.13274411,16.44278594480015 +"Biological Sciences",61.98054777,20.50229784028209 +"Mathematical and Physical Sciences",39.82065205,5.553821375301377 +"Computer and Information Science and Engineering",27.72618823,0.516814891598504 +Geosciences,17.24043389,1.4179492534823879 +"Social, Behavioral, and Economic Sciences",2.82983496,0.03098245418859181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..228915657c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +Engineering,378.41627884,57.328177197170056 +Humanities/Arts,188.13274411,16.44278594480015 +"Biological Sciences",61.98054777,20.50229784028209 +"Mathematical and Physical Sciences",39.82065205,5.553821375301377 +"Computer and Information Science and Engineering",27.72618823,0.516814891598504 +Geosciences,17.24043389,1.4179492534823879 +"Social, Behavioral, and Economic Sciences",2.82983496,0.03098245418859181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..627c883eba 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Engineering,56.96282432,2.005258852685409 +"Computer and Information Science and Engineering",25.30848292, +Humanities/Arts,17.27322391, +"Biological Sciences",8.85906941,1.1894594204595474 +Geosciences,5.54539143,0.08440112591169727 +"Mathematical and Physical Sciences",2.95953498,0.2089891479392211 +"Social, Behavioral, and Economic Sciences",0.29385782,0.0054675314147916015 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..f6d3926355 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Engineering,56.96282432,4.620916677516273 +"Computer and Information Science and Engineering",25.30848292,0.10897197187940741 +Humanities/Arts,17.27322391,1.2812633375632778 +"Biological Sciences",8.85906941,2.447594190728218 +Geosciences,5.54539143,0.13410152621275237 +"Mathematical and Physical Sciences",2.95953498,0.3684096188215414 +"Social, Behavioral, and Economic Sciences",0.29385782,0.006624191502553313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..f6d3926355 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Engineering,56.96282432,4.620916677516273 +"Computer and Information Science and Engineering",25.30848292,0.10897197187940741 +Humanities/Arts,17.27322391,1.2812633375632778 +"Biological Sciences",8.85906941,2.447594190728218 +Geosciences,5.54539143,0.13410152621275237 +"Mathematical and Physical Sciences",2.95953498,0.3684096188215414 +"Social, Behavioral, and Economic Sciences",0.29385782,0.006624191502553313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..f6d3926355 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Engineering,56.96282432,4.620916677516273 +"Computer and Information Science and Engineering",25.30848292,0.10897197187940741 +Humanities/Arts,17.27322391,1.2812633375632778 +"Biological Sciences",8.85906941,2.447594190728218 +Geosciences,5.54539143,0.13410152621275237 +"Mathematical and Physical Sciences",2.95953498,0.3684096188215414 +"Social, Behavioral, and Economic Sciences",0.29385782,0.006624191502553313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv index 68ce959394..523793d5c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Biological Sciences",30.0532,1.7619648553934493 +Engineering,11.4258,1.3565566353743512 +Humanities/Arts,11.0909,0.35773447517085943 +"Social, Behavioral, and Economic Sciences",9.0492,0.011053223283303862 +"Mathematical and Physical Sciences",8.5832,0.08747961868531207 +Geosciences,5.7056,0.17126742580914467 +"Computer and Information Science and Engineering",1.1526,0.04402136789517397 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv index 68ce959394..523793d5c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Biological Sciences",30.0532,1.7619648553934493 +Engineering,11.4258,1.3565566353743512 +Humanities/Arts,11.0909,0.35773447517085943 +"Social, Behavioral, and Economic Sciences",9.0492,0.011053223283303862 +"Mathematical and Physical Sciences",8.5832,0.08747961868531207 +Geosciences,5.7056,0.17126742580914467 +"Computer and Information Science and Engineering",1.1526,0.04402136789517397 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..523793d5c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Biological Sciences",30.0532,1.7619648553934493 +Engineering,11.4258,1.3565566353743512 +Humanities/Arts,11.0909,0.35773447517085943 +"Social, Behavioral, and Economic Sciences",9.0492,0.011053223283303862 +"Mathematical and Physical Sciences",8.5832,0.08747961868531207 +Geosciences,5.7056,0.17126742580914467 +"Computer and Information Science and Engineering",1.1526,0.04402136789517397 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv index 68ce959394..523793d5c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Biological Sciences",30.0532,1.7619648553934493 +Engineering,11.4258,1.3565566353743512 +Humanities/Arts,11.0909,0.35773447517085943 +"Social, Behavioral, and Economic Sciences",9.0492,0.011053223283303862 +"Mathematical and Physical Sciences",8.5832,0.08747961868531207 +Geosciences,5.7056,0.17126742580914467 +"Computer and Information Science and Engineering",1.1526,0.04402136789517397 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv index 7f9cfd050c..bfc5dd5b1b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Biological Sciences] Job Size: Per Job (Core Count)","[Engineering] Job Size: Per Job (Core Count)","[Humanities/Arts] Job Size: Per Job (Core Count)","[Mathematical and Physical Sciences] Job Size: Per Job (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Per Job (Core Count)","[Geosciences] Job Size: Per Job (Core Count)","[Computer and Information Science and Engineering] Job Size: Per Job (Core Count)" -2016-12-22,12.0000,0,0,12.0000,0,0,0 -2016-12-23,12.0000,0,0,6.5000,0,0,0 -2016-12-24,12.0000,0,0,6.5000,0,0,0 -2016-12-25,12.0000,0,0,14.6000,0,0,0 -2016-12-26,12.0000,0,0,15.3000,0,0,0 -2016-12-27,16.0000,96.0000,0,26.7333,1.0000,0,0 -2016-12-28,12.9231,9.7963,0,41.0000,1.0000,20.0000,1.1795 -2016-12-29,3.6000,11.6015,11.2727,30.3013,9.5486,56.2500,1.1142 -2016-12-30,24.3200,14.6103,11.2000,8.4610,8.4554,1.7033,1.1780 -2016-12-31,37.6250,9.4296,10.8889,9.3074,9.5422,1.3346,1.1193 -2017-01-01,32.0520,12.9811,10.4000,11.5330,9.1618,11.3386,1.0994 +Day,"[Biological Sciences] Job Size: Per Job (Core Count)","[Engineering] Job Size: Per Job (Core Count)","[Humanities/Arts] Job Size: Per Job (Core Count)","[Social, Behavioral, and Economic Sciences] Job Size: Per Job (Core Count)","[Mathematical and Physical Sciences] Job Size: Per Job (Core Count)","[Geosciences] Job Size: Per Job (Core Count)","[Computer and Information Science and Engineering] Job Size: Per Job (Core Count)" +2016-12-22,12.0000,0,0,0,12.0000,0,0 +2016-12-23,12.0000,0,0,0,6.5000,0,0 +2016-12-24,12.0000,0,0,0,6.5000,0,0 +2016-12-25,12.0000,0,0,0,14.6000,0,0 +2016-12-26,12.0000,0,0,0,15.3000,0,0 +2016-12-27,16.0000,96.0000,0,1.0000,26.7333,0,0 +2016-12-28,12.9231,9.7963,0,1.0000,41.0000,20.0000,1.1795 +2016-12-29,3.6000,11.6015,11.2727,9.5486,30.3013,56.2500,1.1142 +2016-12-30,24.3200,14.6103,11.2000,8.4554,8.4610,1.7033,1.1780 +2016-12-31,37.6250,9.4296,10.8889,9.5422,9.3074,1.3346,1.1193 +2017-01-01,32.0520,12.9811,10.4000,9.1618,11.5330,11.3386,1.0994 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..9e0644fb69 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Normalized (% of Total Cores)" +"Biological Sciences",0.375665266 +Humanities/Arts,0.138636364 +Engineering,0.095215241 +Geosciences,0.047546749 +"Social, Behavioral, and Economic Sciences",0.045246083 +"Mathematical and Physical Sciences",0.042916197 +"Computer and Information Science and Engineering",0.028814663 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..9e0644fb69 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Normalized (% of Total Cores)" +"Biological Sciences",0.375665266 +Humanities/Arts,0.138636364 +Engineering,0.095215241 +Geosciences,0.047546749 +"Social, Behavioral, and Economic Sciences",0.045246083 +"Mathematical and Physical Sciences",0.042916197 +"Computer and Information Science and Engineering",0.028814663 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..9e0644fb69 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Normalized (% of Total Cores)" +"Biological Sciences",0.375665266 +Humanities/Arts,0.138636364 +Engineering,0.095215241 +Geosciences,0.047546749 +"Social, Behavioral, and Economic Sciences",0.045246083 +"Mathematical and Physical Sciences",0.042916197 +"Computer and Information Science and Engineering",0.028814663 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..9e0644fb69 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,16 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Decanal Unit" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Normalized (% of Total Cores)" +"Biological Sciences",0.375665266 +Humanities/Arts,0.138636364 +Engineering,0.095215241 +Geosciences,0.047546749 +"Social, Behavioral, and Economic Sciences",0.045246083 +"Mathematical and Physical Sciences",0.042916197 +"Computer and Information Science and Engineering",0.028814663 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv index d2e0b658c5..90280c68f5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/normalized_avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Biological Sciences] Job Size: Normalized (% of Total Cores)","[Humanities/Arts] Job Size: Normalized (% of Total Cores)","[Engineering] Job Size: Normalized (% of Total Cores)","[Mathematical and Physical Sciences] Job Size: Normalized (% of Total Cores)","[Social, Behavioral, and Economic Sciences] Job Size: Normalized (% of Total Cores)","[Geosciences] Job Size: Normalized (% of Total Cores)","[Computer and Information Science and Engineering] Job Size: Normalized (% of Total Cores)" -2016-12-22,0.300000000,0,0,0.300000000,0,0,0 -2016-12-23,0.300000000,0,0,0.162500000,0,0,0 -2016-12-24,0.300000000,0,0,0.162500000,0,0,0 -2016-12-25,0.300000000,0,0,0.365000000,0,0,0 -2016-12-26,0.300000000,0,0,0.191250000,0,0,0 -2016-12-27,0.200000000,0,2.400000000,0.167083333,0.025000000,0,0 -2016-12-28,0.161538462,0,0.244907407,0.256250000,0.025000000,0.500000000,0.029487179 -2016-12-29,0.045000000,0.140909091,0.096679198,0.189383013,0.059678988,0.468750000,0.027854230 -2016-12-30,0.304000000,0.140000000,0.121752266,0.042305188,0.042276790,0.014194479,0.029449405 -2016-12-31,0.470312500,0.136111111,0.078579812,0.046537151,0.047710969,0.011121703,0.027981928 -2017-01-01,0.400650289,0.130000000,0.108176101,0.057665245,0.045808971,0.141732885,0.027484787 +Day,"[Biological Sciences] Job Size: Normalized (% of Total Cores)","[Humanities/Arts] Job Size: Normalized (% of Total Cores)","[Engineering] Job Size: Normalized (% of Total Cores)","[Geosciences] Job Size: Normalized (% of Total Cores)","[Social, Behavioral, and Economic Sciences] Job Size: Normalized (% of Total Cores)","[Mathematical and Physical Sciences] Job Size: Normalized (% of Total Cores)","[Computer and Information Science and Engineering] Job Size: Normalized (% of Total Cores)" +2016-12-22,0.300000000,0,0,0,0,0.300000000,0 +2016-12-23,0.300000000,0,0,0,0,0.162500000,0 +2016-12-24,0.300000000,0,0,0,0,0.162500000,0 +2016-12-25,0.300000000,0,0,0,0,0.365000000,0 +2016-12-26,0.300000000,0,0,0,0,0.191250000,0 +2016-12-27,0.200000000,0,2.400000000,0,0.025000000,0.167083333,0 +2016-12-28,0.161538462,0,0.244907407,0.500000000,0.025000000,0.256250000,0.029487179 +2016-12-29,0.045000000,0.140909091,0.096679198,0.468750000,0.059678988,0.189383013,0.027854230 +2016-12-30,0.304000000,0.140000000,0.121752266,0.014194479,0.042276790,0.042305188,0.029449405 +2016-12-31,0.470312500,0.136111111,0.078579812,0.011121703,0.047710969,0.046537151,0.027981928 +2017-01-01,0.400650289,0.130000000,0.108176101,0.141732885,0.045808971,0.057665245,0.027484787 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..94579d8e09 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Chemical, Thermal Systems",4368.65777778,1642.1290224563402 +"Electrical and Communication Systems",1048.99016736,73.65752656226203 +"Atmospheric Sciences",722.24444444,221.86209986841982 +"Mathematical Sciences",616.85813675, +Physics,529.63777778, +"Materials Research",338.80760349,46.388281915552945 +Arts,188.13274411,2.041452970260724 +"Molecular Biosciences",174.65176083,26.786659703717298 +"Mechanical and Structural Systems",154.59506643,41.104792843063635 +"Design and Manufacturing Systems",65.03593498,2.7861034261411373 +"Astronomical Sciences",45.22125088,6.857619907718038 +"Microelectronic Information Processing Systems",27.89629775,0.14329944179423384 +Chemistry,27.04915451,3.1958527870260727 +"Polar Programs",23.31962933,1.4533068964887756 +"Earth Sciences",10.48218875,0.7810004816455497 +"Environmental Biology",6.35208275,0.7295707950782502 +"Computer and Computation Research",5.04208333,1.412736659063767 +"Social and Economic Science",2.82983496,0.027720914800936126 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..e9b9cde087 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Chemical, Thermal Systems",4368.65777778,3398.832310418393 +"Electrical and Communication Systems",1048.99016736,174.9562523996017 +"Atmospheric Sciences",722.24444444,508.25264083286396 +"Mathematical Sciences",616.85813675,44.08705973332401 +Physics,529.63777778,46.636532607630166 +"Materials Research",338.80760349,83.70618137817657 +Arts,188.13274411,16.44278594480015 +"Molecular Biosciences",174.65176083,60.70096363292143 +"Mechanical and Structural Systems",154.59506643,53.70543314926935 +"Design and Manufacturing Systems",65.03593498,3.65386840919359 +"Astronomical Sciences",45.22125088,10.997896713589176 +"Microelectronic Information Processing Systems",27.89629775,0.5190854050070104 +Chemistry,27.04915451,5.881763898041205 +"Polar Programs",23.31962933,2.2546464710576846 +"Earth Sciences",10.48218875,1.0883834470209042 +"Environmental Biology",6.35208275,0.7295707950782502 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Social and Economic Science",2.82983496,0.03098245418859181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..e9b9cde087 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Chemical, Thermal Systems",4368.65777778,3398.832310418393 +"Electrical and Communication Systems",1048.99016736,174.9562523996017 +"Atmospheric Sciences",722.24444444,508.25264083286396 +"Mathematical Sciences",616.85813675,44.08705973332401 +Physics,529.63777778,46.636532607630166 +"Materials Research",338.80760349,83.70618137817657 +Arts,188.13274411,16.44278594480015 +"Molecular Biosciences",174.65176083,60.70096363292143 +"Mechanical and Structural Systems",154.59506643,53.70543314926935 +"Design and Manufacturing Systems",65.03593498,3.65386840919359 +"Astronomical Sciences",45.22125088,10.997896713589176 +"Microelectronic Information Processing Systems",27.89629775,0.5190854050070104 +Chemistry,27.04915451,5.881763898041205 +"Polar Programs",23.31962933,2.2546464710576846 +"Earth Sciences",10.48218875,1.0883834470209042 +"Environmental Biology",6.35208275,0.7295707950782502 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Social and Economic Science",2.82983496,0.03098245418859181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..e9b9cde087 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Chemical, Thermal Systems",4368.65777778,3398.832310418393 +"Electrical and Communication Systems",1048.99016736,174.9562523996017 +"Atmospheric Sciences",722.24444444,508.25264083286396 +"Mathematical Sciences",616.85813675,44.08705973332401 +Physics,529.63777778,46.636532607630166 +"Materials Research",338.80760349,83.70618137817657 +Arts,188.13274411,16.44278594480015 +"Molecular Biosciences",174.65176083,60.70096363292143 +"Mechanical and Structural Systems",154.59506643,53.70543314926935 +"Design and Manufacturing Systems",65.03593498,3.65386840919359 +"Astronomical Sciences",45.22125088,10.997896713589176 +"Microelectronic Information Processing Systems",27.89629775,0.5190854050070104 +Chemistry,27.04915451,5.881763898041205 +"Polar Programs",23.31962933,2.2546464710576846 +"Earth Sciences",10.48218875,1.0883834470209042 +"Environmental Biology",6.35208275,0.7295707950782502 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Social and Economic Science",2.82983496,0.03098245418859181 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv index 319a6285bf..a44bfbc2eb 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Chemical, Thermal Systems] CPU Hours: Per Job","[Electrical and Communication Systems] CPU Hours: Per Job","[Atmospheric Sciences] CPU Hours: Per Job","[Materials Research] CPU Hours: Per Job","[Mathematical Sciences] CPU Hours: Per Job","[Physics] CPU Hours: Per Job","[Mechanical and Structural Systems] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Molecular Biosciences] CPU Hours: Per Job","[Astronomical Sciences] CPU Hours: Per Job","[Chemistry] CPU Hours: Per Job","[Polar Programs] CPU Hours: Per Job","[Design and Manufacturing Systems] CPU Hours: Per Job","[Microelectronic Information Processing Systems] CPU Hours: Per Job","[Environmental Biology] CPU Hours: Per Job","[Earth Sciences] CPU Hours: Per Job","[Computer and Computation Research] CPU Hours: Per Job","[Social and Economic Science] CPU Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,200.95666667,0,203.30000000,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,288.00000000,8.60361111,288.00000000,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,288.00000000,24.00000000,288.00000000,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,288.00000000,24.00000000,116.56750000,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,43.26666667,0,0,0,288.00000000,24.00000000,432.00000000,0,0,0,0,0,0,0 -2016-12-27,0,1246.47111111,0,1432.93629630,320.78689815,0,0,0,166.08277778,280.65174603,163.84000000,0,0,0,0,0,0,3.21666667 -2016-12-28,0,1462.12800000,0,548.99703704,102.73824786,60.47666667,0,0,271.00512821,535.66833333,1359.38973180,0,13.35268330,6.69041168,0,94.01111111,0,24.00000000 -2016-12-29,0,1903.63119342,1038.22222222,558.21381944,342.00281481,288.00000000,410.97777778,46.91737374,66.39927778,251.25414683,877.62333333,758.98888889,16.60273286,14.27582622,0,266.00208333,2.01966667,7.39809663 -2016-12-30,2468.14222222,1342.20575694,402.80000000,183.79372168,249.86375000,181.16111111,256.62628858,107.24694444,48.60799020,13.81820610,14.56036587,15.25876587,21.71949405,14.71385475,5.80186420,4.87608476,4.10559722,3.03737720 -2016-12-31,5701.54666667,236.60267442,0,49.49041005,246.30230726,0,103.53553819,171.46924897,148.77467172,178.36906250,9.20850345,8.74733740,23.62045770,13.61654527,12.54733333,6.47695188,8.63138889,3.78294327 -2017-01-01,0,271.71664683,3.46666667,0,103.31233796,0,0.96969246,59.98977778,78.92785948,323.23959596,16.57782656,23.44196390,29.54166397,12.31921090,6.26263789,10.94629630,0,0.62134448 +Day,"[Chemical, Thermal Systems] CPU Hours: Per Job","[Electrical and Communication Systems] CPU Hours: Per Job","[Atmospheric Sciences] CPU Hours: Per Job","[Mathematical Sciences] CPU Hours: Per Job","[Physics] CPU Hours: Per Job","[Materials Research] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Molecular Biosciences] CPU Hours: Per Job","[Mechanical and Structural Systems] CPU Hours: Per Job","[Design and Manufacturing Systems] CPU Hours: Per Job","[Astronomical Sciences] CPU Hours: Per Job","[Microelectronic Information Processing Systems] CPU Hours: Per Job","[Chemistry] CPU Hours: Per Job","[Polar Programs] CPU Hours: Per Job","[Earth Sciences] CPU Hours: Per Job","[Environmental Biology] CPU Hours: Per Job","[Computer and Computation Research] CPU Hours: Per Job","[Social and Economic Science] CPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,200.95666667,0,0,0,0,203.30000000,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,288.00000000,0,0,8.60361111,0,288.00000000,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,288.00000000,0,0,24.00000000,0,288.00000000,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,288.00000000,0,0,24.00000000,0,116.56750000,0,0,0,0,0 +2016-12-26,0,0,0,43.26666667,0,0,0,288.00000000,0,0,24.00000000,0,432.00000000,0,0,0,0,0 +2016-12-27,0,1246.47111111,0,320.78689815,0,1432.93629630,0,166.08277778,0,0,280.65174603,0,163.84000000,0,0,0,0,3.21666667 +2016-12-28,0,1462.12800000,0,102.73824786,60.47666667,548.99703704,0,271.00512821,0,13.35268330,535.66833333,6.69041168,1359.38973180,0,94.01111111,0,0,24.00000000 +2016-12-29,0,1903.63119342,1038.22222222,342.00281481,288.00000000,558.21381944,46.91737374,66.39927778,410.97777778,16.60273286,251.25414683,14.27582622,877.62333333,758.98888889,266.00208333,0,2.01966667,7.39809663 +2016-12-30,2468.14222222,1342.20575694,402.80000000,249.86375000,181.16111111,183.79372168,107.24694444,48.60799020,256.62628858,21.71949405,13.81820610,14.71385475,14.56036587,15.25876587,4.87608476,5.80186420,4.10559722,3.03737720 +2016-12-31,5701.54666667,236.60267442,0,246.30230726,0,49.49041005,171.46924897,148.77467172,103.53553819,23.62045770,178.36906250,13.61654527,9.20850345,8.74733740,6.47695188,12.54733333,8.63138889,3.78294327 +2017-01-01,0,271.71664683,3.46666667,103.31233796,0,0,59.98977778,78.92785948,0.96969246,29.54166397,323.23959596,12.31921090,16.57782656,23.44196390,10.94629630,6.26263789,0,0.62134448 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv index 1f3c517042..64f20303ff 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Chemical, Thermal Systems] CPU Hours: Per Job","[Electrical and Communication Systems] CPU Hours: Per Job","[Atmospheric Sciences] CPU Hours: Per Job","[Physics] CPU Hours: Per Job","[Mathematical Sciences] CPU Hours: Per Job","[Materials Research] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Molecular Biosciences] CPU Hours: Per Job","[Mechanical and Structural Systems] CPU Hours: Per Job","[Design and Manufacturing Systems] CPU Hours: Per Job","[Astronomical Sciences] CPU Hours: Per Job","[Chemistry] CPU Hours: Per Job","[Polar Programs] CPU Hours: Per Job","[Microelectronic Information Processing Systems] CPU Hours: Per Job","[Earth Sciences] CPU Hours: Per Job","[Environmental Biology] CPU Hours: Per Job","[Computer and Computation Research] CPU Hours: Per Job","[Social and Economic Science] CPU Hours: Per Job" -2016-12,4368.65777778,1112.27138506,1441.02222222,529.63777778,540.56594872,338.80760349,183.58806397,192.74581243,221.80616753,58.97181208,41.04805132,27.61529618,19.87039394,25.35750883,10.48083171,6.47641111,5.04208333,3.49505680 -2017-01,0,271.71664683,3.46666667,0,103.31233796,0,59.98977778,78.92785948,0.96969246,29.54166397,323.23959596,16.57782656,23.44196390,12.31921090,10.94629630,6.26263789,0,0.62134448 +Month,"[Chemical, Thermal Systems] CPU Hours: Per Job","[Electrical and Communication Systems] CPU Hours: Per Job","[Atmospheric Sciences] CPU Hours: Per Job","[Mathematical Sciences] CPU Hours: Per Job","[Physics] CPU Hours: Per Job","[Materials Research] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Molecular Biosciences] CPU Hours: Per Job","[Mechanical and Structural Systems] CPU Hours: Per Job","[Design and Manufacturing Systems] CPU Hours: Per Job","[Astronomical Sciences] CPU Hours: Per Job","[Microelectronic Information Processing Systems] CPU Hours: Per Job","[Chemistry] CPU Hours: Per Job","[Polar Programs] CPU Hours: Per Job","[Earth Sciences] CPU Hours: Per Job","[Environmental Biology] CPU Hours: Per Job","[Computer and Computation Research] CPU Hours: Per Job","[Social and Economic Science] CPU Hours: Per Job" +2016-12,4368.65777778,1112.27138506,1441.02222222,540.56594872,529.63777778,338.80760349,183.58806397,192.74581243,221.80616753,58.97181208,41.04805132,25.35750883,27.61529618,19.87039394,10.48083171,6.47641111,5.04208333,3.49505680 +2017-01,0,271.71664683,3.46666667,103.31233796,0,0,59.98977778,78.92785948,0.96969246,29.54166397,323.23959596,12.31921090,16.57782656,23.44196390,10.94629630,6.26263789,0,0.62134448 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv index f7334cc1bd..7c7fc5dd0d 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Chemical, Thermal Systems] CPU Hours: Per Job","[Electrical and Communication Systems] CPU Hours: Per Job","[Atmospheric Sciences] CPU Hours: Per Job","[Physics] CPU Hours: Per Job","[Mathematical Sciences] CPU Hours: Per Job","[Materials Research] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Molecular Biosciences] CPU Hours: Per Job","[Mechanical and Structural Systems] CPU Hours: Per Job","[Design and Manufacturing Systems] CPU Hours: Per Job","[Astronomical Sciences] CPU Hours: Per Job","[Chemistry] CPU Hours: Per Job","[Polar Programs] CPU Hours: Per Job","[Microelectronic Information Processing Systems] CPU Hours: Per Job","[Earth Sciences] CPU Hours: Per Job","[Environmental Biology] CPU Hours: Per Job","[Computer and Computation Research] CPU Hours: Per Job","[Social and Economic Science] CPU Hours: Per Job" -"2016 Q4",4368.65777778,1112.27138506,1441.02222222,529.63777778,540.56594872,338.80760349,183.58806397,192.74581243,221.80616753,58.97181208,41.04805132,27.61529618,19.87039394,25.35750883,10.48083171,6.47641111,5.04208333,3.49505680 -"2017 Q1",0,271.71664683,3.46666667,0,103.31233796,0,59.98977778,78.92785948,0.96969246,29.54166397,323.23959596,16.57782656,23.44196390,12.31921090,10.94629630,6.26263789,0,0.62134448 +Quarter,"[Chemical, Thermal Systems] CPU Hours: Per Job","[Electrical and Communication Systems] CPU Hours: Per Job","[Atmospheric Sciences] CPU Hours: Per Job","[Mathematical Sciences] CPU Hours: Per Job","[Physics] CPU Hours: Per Job","[Materials Research] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Molecular Biosciences] CPU Hours: Per Job","[Mechanical and Structural Systems] CPU Hours: Per Job","[Design and Manufacturing Systems] CPU Hours: Per Job","[Astronomical Sciences] CPU Hours: Per Job","[Microelectronic Information Processing Systems] CPU Hours: Per Job","[Chemistry] CPU Hours: Per Job","[Polar Programs] CPU Hours: Per Job","[Earth Sciences] CPU Hours: Per Job","[Environmental Biology] CPU Hours: Per Job","[Computer and Computation Research] CPU Hours: Per Job","[Social and Economic Science] CPU Hours: Per Job" +"2016 Q4",4368.65777778,1112.27138506,1441.02222222,540.56594872,529.63777778,338.80760349,183.58806397,192.74581243,221.80616753,58.97181208,41.04805132,25.35750883,27.61529618,19.87039394,10.48083171,6.47641111,5.04208333,3.49505680 +"2017 Q1",0,271.71664683,3.46666667,103.31233796,0,0,59.98977778,78.92785948,0.96969246,29.54166397,323.23959596,12.31921090,16.57782656,23.44196390,10.94629630,6.26263789,0,0.62134448 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv index ac0021fe3c..68f4eefe90 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_cpu_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Chemical, Thermal Systems] CPU Hours: Per Job","[Electrical and Communication Systems] CPU Hours: Per Job","[Atmospheric Sciences] CPU Hours: Per Job","[Physics] CPU Hours: Per Job","[Mathematical Sciences] CPU Hours: Per Job","[Materials Research] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Molecular Biosciences] CPU Hours: Per Job","[Mechanical and Structural Systems] CPU Hours: Per Job","[Design and Manufacturing Systems] CPU Hours: Per Job","[Astronomical Sciences] CPU Hours: Per Job","[Chemistry] CPU Hours: Per Job","[Polar Programs] CPU Hours: Per Job","[Microelectronic Information Processing Systems] CPU Hours: Per Job","[Earth Sciences] CPU Hours: Per Job","[Environmental Biology] CPU Hours: Per Job","[Computer and Computation Research] CPU Hours: Per Job","[Social and Economic Science] CPU Hours: Per Job" -2016,4368.65777778,1112.27138506,1441.02222222,529.63777778,540.56594872,338.80760349,183.58806397,192.74581243,221.80616753,58.97181208,41.04805132,27.61529618,19.87039394,25.35750883,10.48083171,6.47641111,5.04208333,3.49505680 -2017,0,271.71664683,3.46666667,0,103.31233796,0,59.98977778,78.92785948,0.96969246,29.54166397,323.23959596,16.57782656,23.44196390,12.31921090,10.94629630,6.26263789,0,0.62134448 +Year,"[Chemical, Thermal Systems] CPU Hours: Per Job","[Electrical and Communication Systems] CPU Hours: Per Job","[Atmospheric Sciences] CPU Hours: Per Job","[Mathematical Sciences] CPU Hours: Per Job","[Physics] CPU Hours: Per Job","[Materials Research] CPU Hours: Per Job","[Arts] CPU Hours: Per Job","[Molecular Biosciences] CPU Hours: Per Job","[Mechanical and Structural Systems] CPU Hours: Per Job","[Design and Manufacturing Systems] CPU Hours: Per Job","[Astronomical Sciences] CPU Hours: Per Job","[Microelectronic Information Processing Systems] CPU Hours: Per Job","[Chemistry] CPU Hours: Per Job","[Polar Programs] CPU Hours: Per Job","[Earth Sciences] CPU Hours: Per Job","[Environmental Biology] CPU Hours: Per Job","[Computer and Computation Research] CPU Hours: Per Job","[Social and Economic Science] CPU Hours: Per Job" +2016,4368.65777778,1112.27138506,1441.02222222,540.56594872,529.63777778,338.80760349,183.58806397,192.74581243,221.80616753,58.97181208,41.04805132,25.35750883,27.61529618,19.87039394,10.48083171,6.47641111,5.04208333,3.49505680 +2017,0,271.71664683,3.46666667,103.31233796,0,0,59.98977778,78.92785948,0.96969246,29.54166397,323.23959596,12.31921090,16.57782656,23.44196390,10.94629630,6.26263789,0,0.62134448 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..9158b6ffca 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Chemical, Thermal Systems",364.05481481,136.8440852046951 +"Electrical and Communication Systems",91.73356280,5.7590122196358475 +"Atmospheric Sciences",90.28055556,27.732762483552477 +"Mathematical Sciences",50.44206410, +"Design and Manufacturing Systems",49.88323081, +Physics,44.13648148, +"Molecular Biosciences",25.52672787,3.0678869763132215 +"Materials Research",25.49166667,3.838480518951093 +"Microelectronic Information Processing Systems",25.46046192, +Arts,17.27322391, +"Mechanical and Structural Systems",10.49397947,2.5351755398719042 +"Earth Sciences",8.51752052, +"Computer and Computation Research",5.04208333,1.412736659063767 +"Astronomical Sciences",4.29891691,0.5864693510260389 +"Polar Programs",2.00614675,0.07967699626806683 +Chemistry,1.85185221,0.20706895150342985 +"Environmental Biology",0.62984891,0.07224051664061484 +"Social and Economic Science",0.29385782,0.0054675314147916015 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..bef0ae140a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Chemical, Thermal Systems",364.05481481,283.2360258681995 +"Electrical and Communication Systems",91.73356280,14.427730516613305 +"Atmospheric Sciences",90.28055556,63.531580104107995 +"Mathematical Sciences",50.44206410, +"Design and Manufacturing Systems",49.88323081,1.0321299155708914 +Physics,44.13648148,3.8863777173028686 +"Molecular Biosciences",25.52672787,7.162125375100813 +"Materials Research",25.49166667,6.843939813709927 +"Microelectronic Information Processing Systems",25.46046192,0.10333862832038718 +Arts,17.27322391,1.2812633375632778 +"Mechanical and Structural Systems",10.49397947,3.3307345987775676 +"Earth Sciences",8.51752052,0.07150352368202234 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Astronomical Sciences",4.29891691,0.9682279330941039 +"Polar Programs",2.00614675,0.11737439315915173 +Chemistry,1.85185221,0.37224280733115245 +"Environmental Biology",0.62984891,0.07224051664061484 +"Social and Economic Science",0.29385782,0.006624191502553313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..bef0ae140a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Chemical, Thermal Systems",364.05481481,283.2360258681995 +"Electrical and Communication Systems",91.73356280,14.427730516613305 +"Atmospheric Sciences",90.28055556,63.531580104107995 +"Mathematical Sciences",50.44206410, +"Design and Manufacturing Systems",49.88323081,1.0321299155708914 +Physics,44.13648148,3.8863777173028686 +"Molecular Biosciences",25.52672787,7.162125375100813 +"Materials Research",25.49166667,6.843939813709927 +"Microelectronic Information Processing Systems",25.46046192,0.10333862832038718 +Arts,17.27322391,1.2812633375632778 +"Mechanical and Structural Systems",10.49397947,3.3307345987775676 +"Earth Sciences",8.51752052,0.07150352368202234 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Astronomical Sciences",4.29891691,0.9682279330941039 +"Polar Programs",2.00614675,0.11737439315915173 +Chemistry,1.85185221,0.37224280733115245 +"Environmental Biology",0.62984891,0.07224051664061484 +"Social and Economic Science",0.29385782,0.006624191502553313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..bef0ae140a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Chemical, Thermal Systems",364.05481481,283.2360258681995 +"Electrical and Communication Systems",91.73356280,14.427730516613305 +"Atmospheric Sciences",90.28055556,63.531580104107995 +"Mathematical Sciences",50.44206410, +"Design and Manufacturing Systems",49.88323081,1.0321299155708914 +Physics,44.13648148,3.8863777173028686 +"Molecular Biosciences",25.52672787,7.162125375100813 +"Materials Research",25.49166667,6.843939813709927 +"Microelectronic Information Processing Systems",25.46046192,0.10333862832038718 +Arts,17.27322391,1.2812633375632778 +"Mechanical and Structural Systems",10.49397947,3.3307345987775676 +"Earth Sciences",8.51752052,0.07150352368202234 +"Computer and Computation Research",5.04208333,1.9381499596292342 +"Astronomical Sciences",4.29891691,0.9682279330941039 +"Polar Programs",2.00614675,0.11737439315915173 +Chemistry,1.85185221,0.37224280733115245 +"Environmental Biology",0.62984891,0.07224051664061484 +"Social and Economic Science",0.29385782,0.006624191502553313 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv index 70f2dca7a0..a9f081b985 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Chemical, Thermal Systems] Node Hours: Per Job","[Electrical and Communication Systems] Node Hours: Per Job","[Atmospheric Sciences] Node Hours: Per Job","[Mathematical Sciences] Node Hours: Per Job","[Materials Research] Node Hours: Per Job","[Design and Manufacturing Systems] Node Hours: Per Job","[Physics] Node Hours: Per Job","[Molecular Biosciences] Node Hours: Per Job","[Microelectronic Information Processing Systems] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Mechanical and Structural Systems] Node Hours: Per Job","[Earth Sciences] Node Hours: Per Job","[Astronomical Sciences] Node Hours: Per Job","[Computer and Computation Research] Node Hours: Per Job","[Polar Programs] Node Hours: Per Job","[Chemistry] Node Hours: Per Job","[Environmental Biology] Node Hours: Per Job","[Social and Economic Science] Node Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,16.94166667,0,0 -2016-12-23,0,0,0,0,0,0,0,24.00000000,0,0,0,0,8.60361111,0,0,24.00000000,0,0 -2016-12-24,0,0,0,0,0,0,0,24.00000000,0,0,0,0,24.00000000,0,0,24.00000000,0,0 -2016-12-25,0,0,0,0,0,0,0,24.00000000,0,0,0,0,24.00000000,0,0,8.12694444,0,0 -2016-12-26,0,0,0,2.70416667,0,0,0,24.00000000,0,0,0,0,24.00000000,0,0,24.00000000,0,0 -2016-12-27,0,103.87259259,0,20.78689815,110.37185185,0,0,18.01625000,0,0,0,0,25.18305556,0,0,8.23638889,0,3.21666667 -2016-12-28,0,121.84400000,0,7.55612179,41.89046296,13.35268330,5.03972222,32.02948718,5.11274929,0,0,4.70055556,45.58354167,0,0,79.41758621,0,24.00000000 -2016-12-29,0,159.50279835,129.77777778,23.92517593,41.66655382,16.60273286,24.00000000,11.06724359,13.06557690,4.34454545,25.68611111,17.20041667,22.45891865,2.01966667,37.94944444,54.05418430,0,1.27936230 -2016-12-30,205.67851852,113.18805556,50.35000000,17.43217014,13.94513215,21.71949405,15.09675926,10.47010131,13.30752510,9.68358547,16.74827932,4.19712587,1.50513094,4.10559722,2.23007540,1.00958556,0.56942901,0.33097065 -2016-12-31,475.12888889,24.46069552,0,23.19598639,3.53268519,11.59400568,0,18.35809343,12.51327322,15.93161523,7.26913194,5.57808973,15.41041088,8.63138889,1.06848238,0.84369193,1.04561111,0.37017739 -2017-01-01,0,22.86779762,0.43333333,11.08009838,0,13.73172330,0,9.57901961,11.46455460,6.53122222,0.96969246,1.74462963,26.23500000,0,1.95545864,1.60116192,0.63905875,0.06801433 +Day,"[Chemical, Thermal Systems] Node Hours: Per Job","[Electrical and Communication Systems] Node Hours: Per Job","[Atmospheric Sciences] Node Hours: Per Job","[Mathematical Sciences] Node Hours: Per Job","[Design and Manufacturing Systems] Node Hours: Per Job","[Physics] Node Hours: Per Job","[Molecular Biosciences] Node Hours: Per Job","[Materials Research] Node Hours: Per Job","[Microelectronic Information Processing Systems] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Mechanical and Structural Systems] Node Hours: Per Job","[Earth Sciences] Node Hours: Per Job","[Computer and Computation Research] Node Hours: Per Job","[Astronomical Sciences] Node Hours: Per Job","[Polar Programs] Node Hours: Per Job","[Chemistry] Node Hours: Per Job","[Environmental Biology] Node Hours: Per Job","[Social and Economic Science] Node Hours: Per Job" +2016-12-22,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,16.94166667,0,0 +2016-12-23,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,8.60361111,0,24.00000000,0,0 +2016-12-24,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,24.00000000,0,24.00000000,0,0 +2016-12-25,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,24.00000000,0,8.12694444,0,0 +2016-12-26,0,0,0,2.70416667,0,0,24.00000000,0,0,0,0,0,0,24.00000000,0,24.00000000,0,0 +2016-12-27,0,103.87259259,0,20.78689815,0,0,18.01625000,110.37185185,0,0,0,0,0,25.18305556,0,8.23638889,0,3.21666667 +2016-12-28,0,121.84400000,0,7.55612179,13.35268330,5.03972222,32.02948718,41.89046296,5.11274929,0,0,4.70055556,0,45.58354167,0,79.41758621,0,24.00000000 +2016-12-29,0,159.50279835,129.77777778,23.92517593,16.60273286,24.00000000,11.06724359,41.66655382,13.06557690,4.34454545,25.68611111,17.20041667,2.01966667,22.45891865,37.94944444,54.05418430,0,1.27936230 +2016-12-30,205.67851852,113.18805556,50.35000000,17.43217014,21.71949405,15.09675926,10.47010131,13.94513215,13.30752510,9.68358547,16.74827932,4.19712587,4.10559722,1.50513094,2.23007540,1.00958556,0.56942901,0.33097065 +2016-12-31,475.12888889,24.46069552,0,23.19598639,11.59400568,0,18.35809343,3.53268519,12.51327322,15.93161523,7.26913194,5.57808973,8.63138889,15.41041088,1.06848238,0.84369193,1.04561111,0.37017739 +2017-01-01,0,22.86779762,0.43333333,11.08009838,13.73172330,0,9.57901961,0,11.46455460,6.53122222,0.96969246,1.74462963,0,26.23500000,1.95545864,1.60116192,0.63905875,0.06801433 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv index 475776b43b..3bfb48928c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Chemical, Thermal Systems] Node Hours: Per Job","[Atmospheric Sciences] Node Hours: Per Job","[Electrical and Communication Systems] Node Hours: Per Job","[Physics] Node Hours: Per Job","[Design and Manufacturing Systems] Node Hours: Per Job","[Mathematical Sciences] Node Hours: Per Job","[Materials Research] Node Hours: Per Job","[Molecular Biosciences] Node Hours: Per Job","[Microelectronic Information Processing Systems] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Mechanical and Structural Systems] Node Hours: Per Job","[Earth Sciences] Node Hours: Per Job","[Computer and Computation Research] Node Hours: Per Job","[Astronomical Sciences] Node Hours: Per Job","[Polar Programs] Node Hours: Per Job","[Chemistry] Node Hours: Per Job","[Environmental Biology] Node Hours: Per Job","[Social and Economic Science] Node Hours: Per Job" -2016-12,364.05481481,180.12777778,97.44003640,44.13648148,48.31750559,42.25983761,25.49166667,28.88674432,23.05458294,16.77843434,14.66085503,8.53732429,5.04208333,3.96500141,2.16238636,1.86156256,0.61704722,0.36183462 -2017-01,0,0.43333333,22.86779762,0,13.73172330,11.08009838,0,9.57901961,11.46455460,6.53122222,0.96969246,1.74462963,0,26.23500000,1.95545864,1.60116192,0.63905875,0.06801433 +Month,"[Chemical, Thermal Systems] Node Hours: Per Job","[Electrical and Communication Systems] Node Hours: Per Job","[Atmospheric Sciences] Node Hours: Per Job","[Mathematical Sciences] Node Hours: Per Job","[Design and Manufacturing Systems] Node Hours: Per Job","[Physics] Node Hours: Per Job","[Molecular Biosciences] Node Hours: Per Job","[Materials Research] Node Hours: Per Job","[Microelectronic Information Processing Systems] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Mechanical and Structural Systems] Node Hours: Per Job","[Earth Sciences] Node Hours: Per Job","[Computer and Computation Research] Node Hours: Per Job","[Astronomical Sciences] Node Hours: Per Job","[Polar Programs] Node Hours: Per Job","[Chemistry] Node Hours: Per Job","[Environmental Biology] Node Hours: Per Job","[Social and Economic Science] Node Hours: Per Job" +2016-12,364.05481481,97.44003640,180.12777778,42.25983761,48.31750559,44.13648148,28.88674432,25.49166667,23.05458294,16.77843434,14.66085503,8.53732429,5.04208333,3.96500141,2.16238636,1.86156256,0.61704722,0.36183462 +2017-01,0,22.86779762,0.43333333,11.08009838,13.73172330,0,9.57901961,0,11.46455460,6.53122222,0.96969246,1.74462963,0,26.23500000,1.95545864,1.60116192,0.63905875,0.06801433 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv index 1f30e768b8..3c6a53e903 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Chemical, Thermal Systems] Node Hours: Per Job","[Atmospheric Sciences] Node Hours: Per Job","[Electrical and Communication Systems] Node Hours: Per Job","[Physics] Node Hours: Per Job","[Design and Manufacturing Systems] Node Hours: Per Job","[Mathematical Sciences] Node Hours: Per Job","[Materials Research] Node Hours: Per Job","[Molecular Biosciences] Node Hours: Per Job","[Microelectronic Information Processing Systems] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Mechanical and Structural Systems] Node Hours: Per Job","[Earth Sciences] Node Hours: Per Job","[Computer and Computation Research] Node Hours: Per Job","[Astronomical Sciences] Node Hours: Per Job","[Polar Programs] Node Hours: Per Job","[Chemistry] Node Hours: Per Job","[Environmental Biology] Node Hours: Per Job","[Social and Economic Science] Node Hours: Per Job" -"2016 Q4",364.05481481,180.12777778,97.44003640,44.13648148,48.31750559,42.25983761,25.49166667,28.88674432,23.05458294,16.77843434,14.66085503,8.53732429,5.04208333,3.96500141,2.16238636,1.86156256,0.61704722,0.36183462 -"2017 Q1",0,0.43333333,22.86779762,0,13.73172330,11.08009838,0,9.57901961,11.46455460,6.53122222,0.96969246,1.74462963,0,26.23500000,1.95545864,1.60116192,0.63905875,0.06801433 +Quarter,"[Chemical, Thermal Systems] Node Hours: Per Job","[Electrical and Communication Systems] Node Hours: Per Job","[Atmospheric Sciences] Node Hours: Per Job","[Mathematical Sciences] Node Hours: Per Job","[Design and Manufacturing Systems] Node Hours: Per Job","[Physics] Node Hours: Per Job","[Molecular Biosciences] Node Hours: Per Job","[Materials Research] Node Hours: Per Job","[Microelectronic Information Processing Systems] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Mechanical and Structural Systems] Node Hours: Per Job","[Earth Sciences] Node Hours: Per Job","[Computer and Computation Research] Node Hours: Per Job","[Astronomical Sciences] Node Hours: Per Job","[Polar Programs] Node Hours: Per Job","[Chemistry] Node Hours: Per Job","[Environmental Biology] Node Hours: Per Job","[Social and Economic Science] Node Hours: Per Job" +"2016 Q4",364.05481481,97.44003640,180.12777778,42.25983761,48.31750559,44.13648148,28.88674432,25.49166667,23.05458294,16.77843434,14.66085503,8.53732429,5.04208333,3.96500141,2.16238636,1.86156256,0.61704722,0.36183462 +"2017 Q1",0,22.86779762,0.43333333,11.08009838,13.73172330,0,9.57901961,0,11.46455460,6.53122222,0.96969246,1.74462963,0,26.23500000,1.95545864,1.60116192,0.63905875,0.06801433 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv index 480fc346d7..02031bcb99 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Chemical, Thermal Systems] Node Hours: Per Job","[Atmospheric Sciences] Node Hours: Per Job","[Electrical and Communication Systems] Node Hours: Per Job","[Physics] Node Hours: Per Job","[Design and Manufacturing Systems] Node Hours: Per Job","[Mathematical Sciences] Node Hours: Per Job","[Materials Research] Node Hours: Per Job","[Molecular Biosciences] Node Hours: Per Job","[Microelectronic Information Processing Systems] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Mechanical and Structural Systems] Node Hours: Per Job","[Earth Sciences] Node Hours: Per Job","[Computer and Computation Research] Node Hours: Per Job","[Astronomical Sciences] Node Hours: Per Job","[Polar Programs] Node Hours: Per Job","[Chemistry] Node Hours: Per Job","[Environmental Biology] Node Hours: Per Job","[Social and Economic Science] Node Hours: Per Job" -2016,364.05481481,180.12777778,97.44003640,44.13648148,48.31750559,42.25983761,25.49166667,28.88674432,23.05458294,16.77843434,14.66085503,8.53732429,5.04208333,3.96500141,2.16238636,1.86156256,0.61704722,0.36183462 -2017,0,0.43333333,22.86779762,0,13.73172330,11.08009838,0,9.57901961,11.46455460,6.53122222,0.96969246,1.74462963,0,26.23500000,1.95545864,1.60116192,0.63905875,0.06801433 +Year,"[Chemical, Thermal Systems] Node Hours: Per Job","[Electrical and Communication Systems] Node Hours: Per Job","[Atmospheric Sciences] Node Hours: Per Job","[Mathematical Sciences] Node Hours: Per Job","[Design and Manufacturing Systems] Node Hours: Per Job","[Physics] Node Hours: Per Job","[Molecular Biosciences] Node Hours: Per Job","[Materials Research] Node Hours: Per Job","[Microelectronic Information Processing Systems] Node Hours: Per Job","[Arts] Node Hours: Per Job","[Mechanical and Structural Systems] Node Hours: Per Job","[Earth Sciences] Node Hours: Per Job","[Computer and Computation Research] Node Hours: Per Job","[Astronomical Sciences] Node Hours: Per Job","[Polar Programs] Node Hours: Per Job","[Chemistry] Node Hours: Per Job","[Environmental Biology] Node Hours: Per Job","[Social and Economic Science] Node Hours: Per Job" +2016,364.05481481,97.44003640,180.12777778,42.25983761,48.31750559,44.13648148,28.88674432,25.49166667,23.05458294,16.77843434,14.66085503,8.53732429,5.04208333,3.96500141,2.16238636,1.86156256,0.61704722,0.36183462 +2017,0,22.86779762,0.43333333,11.08009838,13.73172330,0,9.57901961,0,11.46455460,6.53122222,0.96969246,1.74462963,0,26.23500000,1.95545864,1.60116192,0.63905875,0.06801433 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv index 68ce959394..0350a801f7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Chemical, Thermal Systems",224.0000,72.73696905059123 +"Atmospheric Sciences",160.0000,0 +"Environmental Biology",42.4937,2.1967513051929584 +"Electrical and Communication Systems",27.1988,3.1435913496865413 +"Materials Research",21.3595,1.3362333699331472 +Physics,12.0000,0 +Arts,11.0909,0.35773447517085943 +"Mathematical Sciences",10.9231,0.4861673281296653 +"Mechanical and Structural Systems",10.6522,3.260812853950742 +"Polar Programs",10.1776,0.14044175247135635 +"Social and Economic Science",9.0492,0.011053223283303862 +Chemistry,8.6411,0.08556196791296852 +"Astronomical Sciences",5.4048,0.2982687070544937 +"Molecular Biosciences",4.8559,0.7632084470021516 +"Design and Manufacturing Systems",1.6278,0.20762935594169663 +"Earth Sciences",1.4422,0.0960861939074583 +"Microelectronic Information Processing Systems",1.1537,0.04435074331087466 +"Computer and Computation Research",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv index 68ce959394..0350a801f7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Chemical, Thermal Systems",224.0000,72.73696905059123 +"Atmospheric Sciences",160.0000,0 +"Environmental Biology",42.4937,2.1967513051929584 +"Electrical and Communication Systems",27.1988,3.1435913496865413 +"Materials Research",21.3595,1.3362333699331472 +Physics,12.0000,0 +Arts,11.0909,0.35773447517085943 +"Mathematical Sciences",10.9231,0.4861673281296653 +"Mechanical and Structural Systems",10.6522,3.260812853950742 +"Polar Programs",10.1776,0.14044175247135635 +"Social and Economic Science",9.0492,0.011053223283303862 +Chemistry,8.6411,0.08556196791296852 +"Astronomical Sciences",5.4048,0.2982687070544937 +"Molecular Biosciences",4.8559,0.7632084470021516 +"Design and Manufacturing Systems",1.6278,0.20762935594169663 +"Earth Sciences",1.4422,0.0960861939074583 +"Microelectronic Information Processing Systems",1.1537,0.04435074331087466 +"Computer and Computation Research",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..0350a801f7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Chemical, Thermal Systems",224.0000,72.73696905059123 +"Atmospheric Sciences",160.0000,0 +"Environmental Biology",42.4937,2.1967513051929584 +"Electrical and Communication Systems",27.1988,3.1435913496865413 +"Materials Research",21.3595,1.3362333699331472 +Physics,12.0000,0 +Arts,11.0909,0.35773447517085943 +"Mathematical Sciences",10.9231,0.4861673281296653 +"Mechanical and Structural Systems",10.6522,3.260812853950742 +"Polar Programs",10.1776,0.14044175247135635 +"Social and Economic Science",9.0492,0.011053223283303862 +Chemistry,8.6411,0.08556196791296852 +"Astronomical Sciences",5.4048,0.2982687070544937 +"Molecular Biosciences",4.8559,0.7632084470021516 +"Design and Manufacturing Systems",1.6278,0.20762935594169663 +"Earth Sciences",1.4422,0.0960861939074583 +"Microelectronic Information Processing Systems",1.1537,0.04435074331087466 +"Computer and Computation Research",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv index 68ce959394..0350a801f7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Chemical, Thermal Systems",224.0000,72.73696905059123 +"Atmospheric Sciences",160.0000,0 +"Environmental Biology",42.4937,2.1967513051929584 +"Electrical and Communication Systems",27.1988,3.1435913496865413 +"Materials Research",21.3595,1.3362333699331472 +Physics,12.0000,0 +Arts,11.0909,0.35773447517085943 +"Mathematical Sciences",10.9231,0.4861673281296653 +"Mechanical and Structural Systems",10.6522,3.260812853950742 +"Polar Programs",10.1776,0.14044175247135635 +"Social and Economic Science",9.0492,0.011053223283303862 +Chemistry,8.6411,0.08556196791296852 +"Astronomical Sciences",5.4048,0.2982687070544937 +"Molecular Biosciences",4.8559,0.7632084470021516 +"Design and Manufacturing Systems",1.6278,0.20762935594169663 +"Earth Sciences",1.4422,0.0960861939074583 +"Microelectronic Information Processing Systems",1.1537,0.04435074331087466 +"Computer and Computation Research",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv index 8d9c89cbc3..f35c2d242a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Chemical, Thermal Systems] Job Size: Per Job (Core Count)","[Atmospheric Sciences] Job Size: Per Job (Core Count)","[Electrical and Communication Systems] Job Size: Per Job (Core Count)","[Environmental Biology] Job Size: Per Job (Core Count)","[Materials Research] Job Size: Per Job (Core Count)","[Mechanical and Structural Systems] Job Size: Per Job (Core Count)","[Mathematical Sciences] Job Size: Per Job (Core Count)","[Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Polar Programs] Job Size: Per Job (Core Count)","[Chemistry] Job Size: Per Job (Core Count)","[Social and Economic Science] Job Size: Per Job (Core Count)","[Astronomical Sciences] Job Size: Per Job (Core Count)","[Molecular Biosciences] Job Size: Per Job (Core Count)","[Design and Manufacturing Systems] Job Size: Per Job (Core Count)","[Earth Sciences] Job Size: Per Job (Core Count)","[Microelectronic Information Processing Systems] Job Size: Per Job (Core Count)","[Computer and Computation Research] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,12.0000,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,12.0000,0,1.0000,12.0000,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,12.0000,0,1.0000,12.0000,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,18.0000,0,1.0000,12.0000,0,0,0,0 -2016-12-26,0,0,0,0,0,0,16.0000,0,0,0,18.0000,0,1.0000,12.0000,0,0,0,0 -2016-12-27,0,0,96.0000,0,69.3333,0,13.5000,0,0,0,25.7143,1.0000,21.8571,16.0000,0,0,0,0 -2016-12-28,0,0,96.0000,0,34.6667,0,14.0385,12.0000,0,0,75.1724,1.0000,25.1250,12.9231,1.0000,20.0000,1.1795,0 -2016-12-29,0,160.0000,89.0000,0,36.8750,112.0000,14.3000,12.0000,11.2727,40.0000,41.5238,9.5486,16.6429,3.6000,1.0000,12.5000,1.1148,1.0000 -2016-12-30,224.0000,160.0000,74.7000,44.0444,23.6505,25.6667,14.1563,12.0000,11.2000,1.7714,8.7262,8.4554,4.7537,3.4353,1.0000,1.4824,1.1801,1.0000 -2016-12-31,336.0000,0,21.2558,92.4000,17.0952,14.8750,10.3878,0,10.8889,6.2439,8.8892,9.5422,18.5625,12.7273,1.7538,1.1349,1.1193,1.0000 -2017-01-01,0,160.0000,61.9286,37.8993,0,1.0000,10.5833,0,10.4000,11.1622,10.8293,9.1618,41.9091,8.1471,2.9320,9.6667,1.0994,0 +Day,"[Chemical, Thermal Systems] Job Size: Per Job (Core Count)","[Atmospheric Sciences] Job Size: Per Job (Core Count)","[Environmental Biology] Job Size: Per Job (Core Count)","[Electrical and Communication Systems] Job Size: Per Job (Core Count)","[Materials Research] Job Size: Per Job (Core Count)","[Physics] Job Size: Per Job (Core Count)","[Arts] Job Size: Per Job (Core Count)","[Mathematical Sciences] Job Size: Per Job (Core Count)","[Mechanical and Structural Systems] Job Size: Per Job (Core Count)","[Polar Programs] Job Size: Per Job (Core Count)","[Social and Economic Science] Job Size: Per Job (Core Count)","[Chemistry] Job Size: Per Job (Core Count)","[Astronomical Sciences] Job Size: Per Job (Core Count)","[Molecular Biosciences] Job Size: Per Job (Core Count)","[Design and Manufacturing Systems] Job Size: Per Job (Core Count)","[Earth Sciences] Job Size: Per Job (Core Count)","[Microelectronic Information Processing Systems] Job Size: Per Job (Core Count)","[Computer and Computation Research] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,12.0000,1.0000,12.0000,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,12.0000,1.0000,12.0000,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,18.0000,1.0000,12.0000,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,16.0000,0,0,0,18.0000,1.0000,12.0000,0,0,0,0 +2016-12-27,0,0,0,96.0000,69.3333,0,0,13.5000,0,0,1.0000,25.7143,21.8571,16.0000,0,0,0,0 +2016-12-28,0,0,0,96.0000,34.6667,12.0000,0,14.0385,0,0,1.0000,75.1724,25.1250,12.9231,1.0000,20.0000,1.1795,0 +2016-12-29,0,160.0000,0,89.0000,36.8750,12.0000,11.2727,14.3000,112.0000,40.0000,9.5486,41.5238,16.6429,3.6000,1.0000,12.5000,1.1148,1.0000 +2016-12-30,224.0000,160.0000,44.0444,74.7000,23.6505,12.0000,11.2000,14.1563,25.6667,1.7714,8.4554,8.7262,4.7537,3.4353,1.0000,1.4824,1.1801,1.0000 +2016-12-31,336.0000,0,92.4000,21.2558,17.0952,0,10.8889,10.3878,14.8750,6.2439,9.5422,8.8892,18.5625,12.7273,1.7538,1.1349,1.1193,1.0000 +2017-01-01,0,160.0000,37.8993,61.9286,0,0,10.4000,10.5833,1.0000,11.1622,9.1618,10.8293,41.9091,8.1471,2.9320,9.6667,1.0994,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..7face4f4f3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Normalized (% of Total Cores)" +"Chemical, Thermal Systems",5.600000000 +"Atmospheric Sciences",4.000000000 +"Environmental Biology",1.062343096 +"Electrical and Communication Systems",0.339984472 +Physics,0.300000000 +"Mechanical and Structural Systems",0.266304348 +"Materials Research",0.177995643 +Arts,0.138636364 +"Mathematical Sciences",0.136538462 +"Polar Programs",0.084813596 +"Molecular Biosciences",0.060699153 +Chemistry,0.054007031 +"Social and Economic Science",0.045246083 +"Astronomical Sciences",0.045039933 +"Design and Manufacturing Systems",0.040694006 +"Microelectronic Information Processing Systems",0.028843270 +"Computer and Computation Research",0.025000000 +"Earth Sciences",0.018027211 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..7face4f4f3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Normalized (% of Total Cores)" +"Chemical, Thermal Systems",5.600000000 +"Atmospheric Sciences",4.000000000 +"Environmental Biology",1.062343096 +"Electrical and Communication Systems",0.339984472 +Physics,0.300000000 +"Mechanical and Structural Systems",0.266304348 +"Materials Research",0.177995643 +Arts,0.138636364 +"Mathematical Sciences",0.136538462 +"Polar Programs",0.084813596 +"Molecular Biosciences",0.060699153 +Chemistry,0.054007031 +"Social and Economic Science",0.045246083 +"Astronomical Sciences",0.045039933 +"Design and Manufacturing Systems",0.040694006 +"Microelectronic Information Processing Systems",0.028843270 +"Computer and Computation Research",0.025000000 +"Earth Sciences",0.018027211 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..7face4f4f3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Normalized (% of Total Cores)" +"Chemical, Thermal Systems",5.600000000 +"Atmospheric Sciences",4.000000000 +"Environmental Biology",1.062343096 +"Electrical and Communication Systems",0.339984472 +Physics,0.300000000 +"Mechanical and Structural Systems",0.266304348 +"Materials Research",0.177995643 +Arts,0.138636364 +"Mathematical Sciences",0.136538462 +"Polar Programs",0.084813596 +"Molecular Biosciences",0.060699153 +Chemistry,0.054007031 +"Social and Economic Science",0.045246083 +"Astronomical Sciences",0.045039933 +"Design and Manufacturing Systems",0.040694006 +"Microelectronic Information Processing Systems",0.028843270 +"Computer and Computation Research",0.025000000 +"Earth Sciences",0.018027211 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..7face4f4f3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Department" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Normalized (% of Total Cores)" +"Chemical, Thermal Systems",5.600000000 +"Atmospheric Sciences",4.000000000 +"Environmental Biology",1.062343096 +"Electrical and Communication Systems",0.339984472 +Physics,0.300000000 +"Mechanical and Structural Systems",0.266304348 +"Materials Research",0.177995643 +Arts,0.138636364 +"Mathematical Sciences",0.136538462 +"Polar Programs",0.084813596 +"Molecular Biosciences",0.060699153 +Chemistry,0.054007031 +"Social and Economic Science",0.045246083 +"Astronomical Sciences",0.045039933 +"Design and Manufacturing Systems",0.040694006 +"Microelectronic Information Processing Systems",0.028843270 +"Computer and Computation Research",0.025000000 +"Earth Sciences",0.018027211 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv index 9b5226cf88..56c481a096 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Chemical, Thermal Systems] Job Size: Normalized (% of Total Cores)","[Atmospheric Sciences] Job Size: Normalized (% of Total Cores)","[Environmental Biology] Job Size: Normalized (% of Total Cores)","[Electrical and Communication Systems] Job Size: Normalized (% of Total Cores)","[Mechanical and Structural Systems] Job Size: Normalized (% of Total Cores)","[Physics] Job Size: Normalized (% of Total Cores)","[Materials Research] Job Size: Normalized (% of Total Cores)","[Mathematical Sciences] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Polar Programs] Job Size: Normalized (% of Total Cores)","[Molecular Biosciences] Job Size: Normalized (% of Total Cores)","[Chemistry] Job Size: Normalized (% of Total Cores)","[Astronomical Sciences] Job Size: Normalized (% of Total Cores)","[Social and Economic Science] Job Size: Normalized (% of Total Cores)","[Design and Manufacturing Systems] Job Size: Normalized (% of Total Cores)","[Microelectronic Information Processing Systems] Job Size: Normalized (% of Total Cores)","[Computer and Computation Research] Job Size: Normalized (% of Total Cores)","[Earth Sciences] Job Size: Normalized (% of Total Cores)" +Day,"[Chemical, Thermal Systems] Job Size: Normalized (% of Total Cores)","[Atmospheric Sciences] Job Size: Normalized (% of Total Cores)","[Environmental Biology] Job Size: Normalized (% of Total Cores)","[Electrical and Communication Systems] Job Size: Normalized (% of Total Cores)","[Physics] Job Size: Normalized (% of Total Cores)","[Mechanical and Structural Systems] Job Size: Normalized (% of Total Cores)","[Materials Research] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Mathematical Sciences] Job Size: Normalized (% of Total Cores)","[Polar Programs] Job Size: Normalized (% of Total Cores)","[Molecular Biosciences] Job Size: Normalized (% of Total Cores)","[Chemistry] Job Size: Normalized (% of Total Cores)","[Social and Economic Science] Job Size: Normalized (% of Total Cores)","[Astronomical Sciences] Job Size: Normalized (% of Total Cores)","[Design and Manufacturing Systems] Job Size: Normalized (% of Total Cores)","[Microelectronic Information Processing Systems] Job Size: Normalized (% of Total Cores)","[Computer and Computation Research] Job Size: Normalized (% of Total Cores)","[Earth Sciences] Job Size: Normalized (% of Total Cores)" 2016-12-22,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0.025000000,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0.025000000,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0.300000000,0.450000000,0.025000000,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0.400000000,0,0,0.300000000,0.450000000,0.025000000,0,0,0,0,0 -2016-12-27,0,0,0,2.400000000,0,0,1.733333333,0.168750000,0,0,0.200000000,0.321428571,0.182142857,0.025000000,0,0,0,0 -2016-12-28,0,0,0,2.400000000,0,0.300000000,0.433333333,0.175480769,0,0,0.161538462,0.626436782,0.209375000,0.025000000,0.025000000,0.029487179,0,0.500000000 -2016-12-29,0,4.000000000,0,1.112500000,2.800000000,0.300000000,0.307291667,0.178750000,0.140909091,1.000000000,0.045000000,0.346031746,0.138690476,0.059678988,0.025000000,0.027868852,0.025000000,0.156250000 -2016-12-30,5.600000000,4.000000000,1.101111111,0.933750000,0.641666667,0.300000000,0.197087379,0.176953125,0.140000000,0.022142857,0.042941176,0.054538998,0.039613848,0.042276790,0.025000000,0.029503012,0.025000000,0.018529810 -2016-12-31,8.400000000,0,2.310000000,0.265697674,0.371875000,0,0.213690476,0.129846939,0.136111111,0.052032520,0.159090909,0.055557574,0.232031250,0.047710969,0.043844697,0.027983725,0.025000000,0.028373016 -2017-01-01,0,4.000000000,0.947482014,0.774107143,0.025000000,0,0,0.132291667,0.130000000,0.139527027,0.101838235,0.067682927,0.523863636,0.045808971,0.073300971,0.027484787,0,0.241666667 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0.025000000,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0.300000000,0.450000000,0,0.025000000,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0.400000000,0,0.300000000,0.450000000,0,0.025000000,0,0,0,0 +2016-12-27,0,0,0,2.400000000,0,0,1.733333333,0,0.168750000,0,0.200000000,0.321428571,0.025000000,0.182142857,0,0,0,0 +2016-12-28,0,0,0,2.400000000,0.300000000,0,0.433333333,0,0.175480769,0,0.161538462,0.626436782,0.025000000,0.209375000,0.025000000,0.029487179,0,0.500000000 +2016-12-29,0,4.000000000,0,1.112500000,0.300000000,2.800000000,0.307291667,0.140909091,0.178750000,1.000000000,0.045000000,0.346031746,0.059678988,0.138690476,0.025000000,0.027868852,0.025000000,0.156250000 +2016-12-30,5.600000000,4.000000000,1.101111111,0.933750000,0.300000000,0.641666667,0.197087379,0.140000000,0.176953125,0.022142857,0.042941176,0.054538998,0.042276790,0.039613848,0.025000000,0.029503012,0.025000000,0.018529810 +2016-12-31,8.400000000,0,2.310000000,0.265697674,0,0.371875000,0.213690476,0.136111111,0.129846939,0.052032520,0.159090909,0.055557574,0.047710969,0.232031250,0.043844697,0.027983725,0.025000000,0.028373016 +2017-01-01,0,4.000000000,0.947482014,0.774107143,0,0.025000000,0,0.130000000,0.132291667,0.139527027,0.101838235,0.067682927,0.045808971,0.523863636,0.073300971,0.027484787,0,0.241666667 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv index e3618f6b71..979e5856f5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Chemical, Thermal Systems] Job Size: Normalized (% of Total Cores)","[Atmospheric Sciences] Job Size: Normalized (% of Total Cores)","[Environmental Biology] Job Size: Normalized (% of Total Cores)","[Electrical and Communication Systems] Job Size: Normalized (% of Total Cores)","[Physics] Job Size: Normalized (% of Total Cores)","[Mechanical and Structural Systems] Job Size: Normalized (% of Total Cores)","[Materials Research] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Mathematical Sciences] Job Size: Normalized (% of Total Cores)","[Polar Programs] Job Size: Normalized (% of Total Cores)","[Molecular Biosciences] Job Size: Normalized (% of Total Cores)","[Chemistry] Job Size: Normalized (% of Total Cores)","[Design and Manufacturing Systems] Job Size: Normalized (% of Total Cores)","[Astronomical Sciences] Job Size: Normalized (% of Total Cores)","[Social and Economic Science] Job Size: Normalized (% of Total Cores)","[Microelectronic Information Processing Systems] Job Size: Normalized (% of Total Cores)","[Computer and Computation Research] Job Size: Normalized (% of Total Cores)","[Earth Sciences] Job Size: Normalized (% of Total Cores)" -2016-12,5.600000000,4.000000000,1.222000000,0.311637931,0.300000000,0.371875000,0.177995643,0.138636364,0.136538462,0.025757576,0.057526882,0.053202888,0.041694631,0.043085557,0.045129182,0.028604888,0.025000000,0.017726608 -2017-01,0,4.000000000,0.947482014,0.774107143,0,0.025000000,0,0.130000000,0.132291667,0.139527027,0.101838235,0.067682927,0.073300971,0.523863636,0.045808971,0.027484787,0,0.241666667 +Month,"[Chemical, Thermal Systems] Job Size: Normalized (% of Total Cores)","[Atmospheric Sciences] Job Size: Normalized (% of Total Cores)","[Environmental Biology] Job Size: Normalized (% of Total Cores)","[Electrical and Communication Systems] Job Size: Normalized (% of Total Cores)","[Physics] Job Size: Normalized (% of Total Cores)","[Mechanical and Structural Systems] Job Size: Normalized (% of Total Cores)","[Materials Research] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Mathematical Sciences] Job Size: Normalized (% of Total Cores)","[Polar Programs] Job Size: Normalized (% of Total Cores)","[Molecular Biosciences] Job Size: Normalized (% of Total Cores)","[Chemistry] Job Size: Normalized (% of Total Cores)","[Social and Economic Science] Job Size: Normalized (% of Total Cores)","[Astronomical Sciences] Job Size: Normalized (% of Total Cores)","[Design and Manufacturing Systems] Job Size: Normalized (% of Total Cores)","[Microelectronic Information Processing Systems] Job Size: Normalized (% of Total Cores)","[Computer and Computation Research] Job Size: Normalized (% of Total Cores)","[Earth Sciences] Job Size: Normalized (% of Total Cores)" +2016-12,5.600000000,4.000000000,1.222000000,0.311637931,0.300000000,0.371875000,0.177995643,0.138636364,0.136538462,0.025757576,0.057526882,0.053202888,0.045129182,0.043085557,0.041694631,0.028604888,0.025000000,0.017726608 +2017-01,0,4.000000000,0.947482014,0.774107143,0,0.025000000,0,0.130000000,0.132291667,0.139527027,0.101838235,0.067682927,0.045808971,0.523863636,0.073300971,0.027484787,0,0.241666667 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv index 772740c584..671dadcbb7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Chemical, Thermal Systems] Job Size: Normalized (% of Total Cores)","[Atmospheric Sciences] Job Size: Normalized (% of Total Cores)","[Environmental Biology] Job Size: Normalized (% of Total Cores)","[Electrical and Communication Systems] Job Size: Normalized (% of Total Cores)","[Physics] Job Size: Normalized (% of Total Cores)","[Mechanical and Structural Systems] Job Size: Normalized (% of Total Cores)","[Materials Research] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Mathematical Sciences] Job Size: Normalized (% of Total Cores)","[Polar Programs] Job Size: Normalized (% of Total Cores)","[Molecular Biosciences] Job Size: Normalized (% of Total Cores)","[Chemistry] Job Size: Normalized (% of Total Cores)","[Design and Manufacturing Systems] Job Size: Normalized (% of Total Cores)","[Astronomical Sciences] Job Size: Normalized (% of Total Cores)","[Social and Economic Science] Job Size: Normalized (% of Total Cores)","[Microelectronic Information Processing Systems] Job Size: Normalized (% of Total Cores)","[Computer and Computation Research] Job Size: Normalized (% of Total Cores)","[Earth Sciences] Job Size: Normalized (% of Total Cores)" -"2016 Q4",5.600000000,4.000000000,1.222000000,0.311637931,0.300000000,0.371875000,0.177995643,0.138636364,0.136538462,0.025757576,0.057526882,0.053202888,0.041694631,0.043085557,0.045129182,0.028604888,0.025000000,0.017726608 -"2017 Q1",0,4.000000000,0.947482014,0.774107143,0,0.025000000,0,0.130000000,0.132291667,0.139527027,0.101838235,0.067682927,0.073300971,0.523863636,0.045808971,0.027484787,0,0.241666667 +Quarter,"[Chemical, Thermal Systems] Job Size: Normalized (% of Total Cores)","[Atmospheric Sciences] Job Size: Normalized (% of Total Cores)","[Environmental Biology] Job Size: Normalized (% of Total Cores)","[Electrical and Communication Systems] Job Size: Normalized (% of Total Cores)","[Physics] Job Size: Normalized (% of Total Cores)","[Mechanical and Structural Systems] Job Size: Normalized (% of Total Cores)","[Materials Research] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Mathematical Sciences] Job Size: Normalized (% of Total Cores)","[Polar Programs] Job Size: Normalized (% of Total Cores)","[Molecular Biosciences] Job Size: Normalized (% of Total Cores)","[Chemistry] Job Size: Normalized (% of Total Cores)","[Social and Economic Science] Job Size: Normalized (% of Total Cores)","[Astronomical Sciences] Job Size: Normalized (% of Total Cores)","[Design and Manufacturing Systems] Job Size: Normalized (% of Total Cores)","[Microelectronic Information Processing Systems] Job Size: Normalized (% of Total Cores)","[Computer and Computation Research] Job Size: Normalized (% of Total Cores)","[Earth Sciences] Job Size: Normalized (% of Total Cores)" +"2016 Q4",5.600000000,4.000000000,1.222000000,0.311637931,0.300000000,0.371875000,0.177995643,0.138636364,0.136538462,0.025757576,0.057526882,0.053202888,0.045129182,0.043085557,0.041694631,0.028604888,0.025000000,0.017726608 +"2017 Q1",0,4.000000000,0.947482014,0.774107143,0,0.025000000,0,0.130000000,0.132291667,0.139527027,0.101838235,0.067682927,0.045808971,0.523863636,0.073300971,0.027484787,0,0.241666667 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv index c4ce6caacf..98ac938abe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/normalized_avg_processors/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Chemical, Thermal Systems] Job Size: Normalized (% of Total Cores)","[Atmospheric Sciences] Job Size: Normalized (% of Total Cores)","[Environmental Biology] Job Size: Normalized (% of Total Cores)","[Electrical and Communication Systems] Job Size: Normalized (% of Total Cores)","[Physics] Job Size: Normalized (% of Total Cores)","[Mechanical and Structural Systems] Job Size: Normalized (% of Total Cores)","[Materials Research] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Mathematical Sciences] Job Size: Normalized (% of Total Cores)","[Polar Programs] Job Size: Normalized (% of Total Cores)","[Molecular Biosciences] Job Size: Normalized (% of Total Cores)","[Chemistry] Job Size: Normalized (% of Total Cores)","[Design and Manufacturing Systems] Job Size: Normalized (% of Total Cores)","[Astronomical Sciences] Job Size: Normalized (% of Total Cores)","[Social and Economic Science] Job Size: Normalized (% of Total Cores)","[Microelectronic Information Processing Systems] Job Size: Normalized (% of Total Cores)","[Computer and Computation Research] Job Size: Normalized (% of Total Cores)","[Earth Sciences] Job Size: Normalized (% of Total Cores)" -2016,5.600000000,4.000000000,1.222000000,0.311637931,0.300000000,0.371875000,0.177995643,0.138636364,0.136538462,0.025757576,0.057526882,0.053202888,0.041694631,0.043085557,0.045129182,0.028604888,0.025000000,0.017726608 -2017,0,4.000000000,0.947482014,0.774107143,0,0.025000000,0,0.130000000,0.132291667,0.139527027,0.101838235,0.067682927,0.073300971,0.523863636,0.045808971,0.027484787,0,0.241666667 +Year,"[Chemical, Thermal Systems] Job Size: Normalized (% of Total Cores)","[Atmospheric Sciences] Job Size: Normalized (% of Total Cores)","[Environmental Biology] Job Size: Normalized (% of Total Cores)","[Electrical and Communication Systems] Job Size: Normalized (% of Total Cores)","[Physics] Job Size: Normalized (% of Total Cores)","[Mechanical and Structural Systems] Job Size: Normalized (% of Total Cores)","[Materials Research] Job Size: Normalized (% of Total Cores)","[Arts] Job Size: Normalized (% of Total Cores)","[Mathematical Sciences] Job Size: Normalized (% of Total Cores)","[Polar Programs] Job Size: Normalized (% of Total Cores)","[Molecular Biosciences] Job Size: Normalized (% of Total Cores)","[Chemistry] Job Size: Normalized (% of Total Cores)","[Social and Economic Science] Job Size: Normalized (% of Total Cores)","[Astronomical Sciences] Job Size: Normalized (% of Total Cores)","[Design and Manufacturing Systems] Job Size: Normalized (% of Total Cores)","[Microelectronic Information Processing Systems] Job Size: Normalized (% of Total Cores)","[Computer and Computation Research] Job Size: Normalized (% of Total Cores)","[Earth Sciences] Job Size: Normalized (% of Total Cores)" +2016,5.600000000,4.000000000,1.222000000,0.311637931,0.300000000,0.371875000,0.177995643,0.138636364,0.136538462,0.025757576,0.057526882,0.053202888,0.045129182,0.043085557,0.041694631,0.028604888,0.025000000,0.017726608 +2017,0,4.000000000,0.947482014,0.774107143,0,0.025000000,0,0.130000000,0.132291667,0.139527027,0.101838235,0.067682927,0.045808971,0.523863636,0.073300971,0.027484787,0,0.241666667 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..d269925257 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Scaup, Lesser",13184.81728395, +Chaffinch,7680.46222222, +"Pipit, Meadow",6103.17666667, +"Scoter, Velvet",5278.79111111, +"Warbler, Dusky",4368.65777778,1642.1290224563402 +Siskin,4202.09666667, +"Duck, Ferruginous",4200.46666667, +Smew,2627.28571429, +"Goose, Egyptian",1767.64000000, +Peregrine,1490.86666667, +Ovenbird,1324.23822222, +Crane,1217.11333333, +"Bunting, Yellow-browed",1006.98777778, +"Ibis, Glossy",960.13333333, +"Warbler, Yellow-browed",722.24444444,221.86209986841982 +"Warbler, Garden",657.08909329, +"Sparrow, White-throated",584.70172840, +"Grosbeak, Evening",564.52666667,321.25321884345993 +"Plover, White-tailed",529.63777778, +"Thrush, Mistle",472.55000000, +Shag,416.16868687,49.093651480705596 +"Bunting, Yellow-breasted",405.12111111, +"Treecreeper, Short-toed",373.04032828, +"Warbler, Sardinian",370.26664198,70.76900902219721 +Whimbrel,351.31928571,65.80534086370237 +"Shearwater, Cory's",219.01527778, +"Sandpiper, Spotted",202.96983333, +"Sapsucker, Yellow-bellied",199.03771605, +"Warbler, Hooded",183.94862434, +"Crane, Sandhill",158.95125772,17.434220915696542 +Roller,147.58368056,100.57359969220543 +Fieldfare,114.99185185, +"Oriole, Baltimore",106.66035185,23.793915914928565 +"Tern, Sandwich",87.43875000, +"Redpoll, Lesser",75.59166667, +"Warbler, Moltoni's",72.00694444, +"Warbler, Booted",68.10298148,26.371499330539592 +"Auk, Little",62.26494444,16.730860685172974 +Lapwing,49.85089556, +"Swift, Alpine",38.17333333,15.42650790996771 +"Shrike, Long-tailed",32.58187500,10.043985268073873 +"Gull, Ring-billed",31.90972222, +"Gallinule, Allen's",28.14000000,0 +Moorhen,25.48654262, +"Plover, Caspian",25.28805115,0.5677021199320009 +Jackdaw,21.84694444, +"Warbler, Golden-winged",20.97018519,8.396540327209507 +"Thrush, Grey-cheeked",20.18978548,2.707858002197733 +"Dove, Turtle",12.78054650,1.0499406414966879 +"Grebe, Pied-billed",10.00406111, +"Grey, Lesser",8.59051583, +Dunlin,6.35208275,0.7295707950782502 +"Thrush, Swainson's",6.35072152,2.726103053894975 +"Bunting, Reed",6.00085977,0.6975676600954264 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.412736659063767 +"Stint, Little",4.48717172,1.181752638807895 +Honey-buzzard,2.85685472,0.016911776633327387 +"Martin, Crag",1.60992063,0.44663758019891886 +"Partridge, Red-legged",1.04000000,0 +Coot,0.97185185,0.0004785195136278676 +"Martin, Purple",0.97183642,0.0003786808428516845 +"Egret, Cattle",0.97148148,0.0005075905675059155 +"Grey, Southern",0.88155664,0.09909785167735996 +"Sparrow, Savannah",0.02439103,0.001692897033294295 +"Grey, Great",0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..7a3f651866 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Scaup, Lesser",13184.81728395,603.4757859265736 +Chaffinch,7680.46222222, +"Pipit, Meadow",6103.17666667,301.2710478905464 +"Scoter, Velvet",5278.79111111,3599.4343600743646 +"Warbler, Dusky",4368.65777778,3398.832310418393 +Siskin,4202.09666667,594.2548959317785 +"Duck, Ferruginous",4200.46666667, +Smew,2627.28571429,173.36998095799686 +"Goose, Egyptian",1767.64000000,158.84195310837734 +Peregrine,1490.86666667,82.75515611850135 +Ovenbird,1324.23822222,181.00444987302672 +Crane,1217.11333333,41.359060776731056 +"Bunting, Yellow-browed",1006.98777778,712.0416008450284 +"Ibis, Glossy",960.13333333,0 +"Warbler, Yellow-browed",722.24444444,508.25264083286396 +"Warbler, Garden",657.08909329,51.277475129665504 +"Sparrow, White-throated",584.70172840, +"Grosbeak, Evening",564.52666667,397.72870823660134 +"Plover, White-tailed",529.63777778,46.636532607630166 +"Thrush, Mistle",472.55000000,42.08961460801514 +Shag,416.16868687,199.7953128066435 +"Bunting, Yellow-breasted",405.12111111,141.1043831299275 +"Treecreeper, Short-toed",373.04032828,40.54497290955818 +"Warbler, Sardinian",370.26664198,96.52889912011452 +Whimbrel,351.31928571,67.88674190889104 +"Shearwater, Cory's",219.01527778,36.582071548135346 +"Sandpiper, Spotted",202.96983333,16.920386011566084 +"Sapsucker, Yellow-bellied",199.03771605, +"Warbler, Hooded",183.94862434,30.125386375518342 +"Crane, Sandhill",158.95125772,31.51810543421254 +Roller,147.58368056,114.52976296802045 +Fieldfare,114.99185185, +"Oriole, Baltimore",106.66035185,91.42855590332098 +"Tern, Sandwich",87.43875000,49.35183032798893 +"Redpoll, Lesser",75.59166667, +"Warbler, Moltoni's",72.00694444,0 +"Warbler, Booted",68.10298148,53.28768177700803 +"Auk, Little",62.26494444,18.726467654568296 +Lapwing,49.85089556,1.1100595034642202 +"Swift, Alpine",38.17333333,15.42650790996771 +"Shrike, Long-tailed",32.58187500,10.180164841566825 +"Gull, Ring-billed",31.90972222,0 +"Gallinule, Allen's",28.14000000,0 +Moorhen,25.48654262,0.09521527865289223 +"Plover, Caspian",25.28805115,0.5677021199320009 +Jackdaw,21.84694444,1.3829746334642423 +"Warbler, Golden-winged",20.97018519,8.396540327209507 +"Thrush, Grey-cheeked",20.18978548,2.814335511780527 +"Dove, Turtle",12.78054650,2.649327129689236 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Grey, Lesser",8.59051583,0.027937647321332644 +Dunlin,6.35208275,0.7295707950782502 +"Thrush, Swainson's",6.35072152,4.342532117238334 +"Bunting, Reed",6.00085977,1.2236468009082848 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Stint, Little",4.48717172,1.181752638807895 +Honey-buzzard,2.85685472,0.017162232477992725 +"Martin, Crag",1.60992063,0.44663758019891886 +"Partridge, Red-legged",1.04000000,0 +Coot,0.97185185,0.0004785195136278676 +"Martin, Purple",0.97183642,0.0003786808428516845 +"Egret, Cattle",0.97148148,0.0005075905675059155 +"Grey, Southern",0.88155664,0.09909785167735996 +"Sparrow, Savannah",0.02439103,0.001692897033294295 +"Grey, Great",0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..7a3f651866 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Scaup, Lesser",13184.81728395,603.4757859265736 +Chaffinch,7680.46222222, +"Pipit, Meadow",6103.17666667,301.2710478905464 +"Scoter, Velvet",5278.79111111,3599.4343600743646 +"Warbler, Dusky",4368.65777778,3398.832310418393 +Siskin,4202.09666667,594.2548959317785 +"Duck, Ferruginous",4200.46666667, +Smew,2627.28571429,173.36998095799686 +"Goose, Egyptian",1767.64000000,158.84195310837734 +Peregrine,1490.86666667,82.75515611850135 +Ovenbird,1324.23822222,181.00444987302672 +Crane,1217.11333333,41.359060776731056 +"Bunting, Yellow-browed",1006.98777778,712.0416008450284 +"Ibis, Glossy",960.13333333,0 +"Warbler, Yellow-browed",722.24444444,508.25264083286396 +"Warbler, Garden",657.08909329,51.277475129665504 +"Sparrow, White-throated",584.70172840, +"Grosbeak, Evening",564.52666667,397.72870823660134 +"Plover, White-tailed",529.63777778,46.636532607630166 +"Thrush, Mistle",472.55000000,42.08961460801514 +Shag,416.16868687,199.7953128066435 +"Bunting, Yellow-breasted",405.12111111,141.1043831299275 +"Treecreeper, Short-toed",373.04032828,40.54497290955818 +"Warbler, Sardinian",370.26664198,96.52889912011452 +Whimbrel,351.31928571,67.88674190889104 +"Shearwater, Cory's",219.01527778,36.582071548135346 +"Sandpiper, Spotted",202.96983333,16.920386011566084 +"Sapsucker, Yellow-bellied",199.03771605, +"Warbler, Hooded",183.94862434,30.125386375518342 +"Crane, Sandhill",158.95125772,31.51810543421254 +Roller,147.58368056,114.52976296802045 +Fieldfare,114.99185185, +"Oriole, Baltimore",106.66035185,91.42855590332098 +"Tern, Sandwich",87.43875000,49.35183032798893 +"Redpoll, Lesser",75.59166667, +"Warbler, Moltoni's",72.00694444,0 +"Warbler, Booted",68.10298148,53.28768177700803 +"Auk, Little",62.26494444,18.726467654568296 +Lapwing,49.85089556,1.1100595034642202 +"Swift, Alpine",38.17333333,15.42650790996771 +"Shrike, Long-tailed",32.58187500,10.180164841566825 +"Gull, Ring-billed",31.90972222,0 +"Gallinule, Allen's",28.14000000,0 +Moorhen,25.48654262,0.09521527865289223 +"Plover, Caspian",25.28805115,0.5677021199320009 +Jackdaw,21.84694444,1.3829746334642423 +"Warbler, Golden-winged",20.97018519,8.396540327209507 +"Thrush, Grey-cheeked",20.18978548,2.814335511780527 +"Dove, Turtle",12.78054650,2.649327129689236 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Grey, Lesser",8.59051583,0.027937647321332644 +Dunlin,6.35208275,0.7295707950782502 +"Thrush, Swainson's",6.35072152,4.342532117238334 +"Bunting, Reed",6.00085977,1.2236468009082848 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Stint, Little",4.48717172,1.181752638807895 +Honey-buzzard,2.85685472,0.017162232477992725 +"Martin, Crag",1.60992063,0.44663758019891886 +"Partridge, Red-legged",1.04000000,0 +Coot,0.97185185,0.0004785195136278676 +"Martin, Purple",0.97183642,0.0003786808428516845 +"Egret, Cattle",0.97148148,0.0005075905675059155 +"Grey, Southern",0.88155664,0.09909785167735996 +"Sparrow, Savannah",0.02439103,0.001692897033294295 +"Grey, Great",0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..7a3f651866 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Scaup, Lesser",13184.81728395,603.4757859265736 +Chaffinch,7680.46222222, +"Pipit, Meadow",6103.17666667,301.2710478905464 +"Scoter, Velvet",5278.79111111,3599.4343600743646 +"Warbler, Dusky",4368.65777778,3398.832310418393 +Siskin,4202.09666667,594.2548959317785 +"Duck, Ferruginous",4200.46666667, +Smew,2627.28571429,173.36998095799686 +"Goose, Egyptian",1767.64000000,158.84195310837734 +Peregrine,1490.86666667,82.75515611850135 +Ovenbird,1324.23822222,181.00444987302672 +Crane,1217.11333333,41.359060776731056 +"Bunting, Yellow-browed",1006.98777778,712.0416008450284 +"Ibis, Glossy",960.13333333,0 +"Warbler, Yellow-browed",722.24444444,508.25264083286396 +"Warbler, Garden",657.08909329,51.277475129665504 +"Sparrow, White-throated",584.70172840, +"Grosbeak, Evening",564.52666667,397.72870823660134 +"Plover, White-tailed",529.63777778,46.636532607630166 +"Thrush, Mistle",472.55000000,42.08961460801514 +Shag,416.16868687,199.7953128066435 +"Bunting, Yellow-breasted",405.12111111,141.1043831299275 +"Treecreeper, Short-toed",373.04032828,40.54497290955818 +"Warbler, Sardinian",370.26664198,96.52889912011452 +Whimbrel,351.31928571,67.88674190889104 +"Shearwater, Cory's",219.01527778,36.582071548135346 +"Sandpiper, Spotted",202.96983333,16.920386011566084 +"Sapsucker, Yellow-bellied",199.03771605, +"Warbler, Hooded",183.94862434,30.125386375518342 +"Crane, Sandhill",158.95125772,31.51810543421254 +Roller,147.58368056,114.52976296802045 +Fieldfare,114.99185185, +"Oriole, Baltimore",106.66035185,91.42855590332098 +"Tern, Sandwich",87.43875000,49.35183032798893 +"Redpoll, Lesser",75.59166667, +"Warbler, Moltoni's",72.00694444,0 +"Warbler, Booted",68.10298148,53.28768177700803 +"Auk, Little",62.26494444,18.726467654568296 +Lapwing,49.85089556,1.1100595034642202 +"Swift, Alpine",38.17333333,15.42650790996771 +"Shrike, Long-tailed",32.58187500,10.180164841566825 +"Gull, Ring-billed",31.90972222,0 +"Gallinule, Allen's",28.14000000,0 +Moorhen,25.48654262,0.09521527865289223 +"Plover, Caspian",25.28805115,0.5677021199320009 +Jackdaw,21.84694444,1.3829746334642423 +"Warbler, Golden-winged",20.97018519,8.396540327209507 +"Thrush, Grey-cheeked",20.18978548,2.814335511780527 +"Dove, Turtle",12.78054650,2.649327129689236 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Grey, Lesser",8.59051583,0.027937647321332644 +Dunlin,6.35208275,0.7295707950782502 +"Thrush, Swainson's",6.35072152,4.342532117238334 +"Bunting, Reed",6.00085977,1.2236468009082848 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Stint, Little",4.48717172,1.181752638807895 +Honey-buzzard,2.85685472,0.017162232477992725 +"Martin, Crag",1.60992063,0.44663758019891886 +"Partridge, Red-legged",1.04000000,0 +Coot,0.97185185,0.0004785195136278676 +"Martin, Purple",0.97183642,0.0003786808428516845 +"Egret, Cattle",0.97148148,0.0005075905675059155 +"Grey, Southern",0.88155664,0.09909785167735996 +"Sparrow, Savannah",0.02439103,0.001692897033294295 +"Grey, Great",0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv index e73a75b6e5..e056525627 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Scaup, Lesser] CPU Hours: Per Job","[Warbler, Dusky] CPU Hours: Per Job","[Scoter, Velvet] CPU Hours: Per Job","[Pipit, Meadow] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Siskin] CPU Hours: Per Job","[Duck, Ferruginous] CPU Hours: Per Job","[Goose, Egyptian] CPU Hours: Per Job","[Crane] CPU Hours: Per Job","[Peregrine] CPU Hours: Per Job","[Bunting, Yellow-browed] CPU Hours: Per Job","[Warbler, Yellow-browed] CPU Hours: Per Job","[Grosbeak, Evening] CPU Hours: Per Job","[Ibis, Glossy] CPU Hours: Per Job","[Ovenbird] CPU Hours: Per Job","[Sparrow, White-throated] CPU Hours: Per Job","[Whimbrel] CPU Hours: Per Job","[Warbler, Sardinian] CPU Hours: Per Job","[Shag] CPU Hours: Per Job","[Warbler, Garden] CPU Hours: Per Job","[Plover, White-tailed] CPU Hours: Per Job","[Thrush, Mistle] CPU Hours: Per Job","[Bunting, Yellow-breasted] CPU Hours: Per Job","[Treecreeper, Short-toed] CPU Hours: Per Job","[Sandpiper, Spotted] CPU Hours: Per Job","[Crane, Sandhill] CPU Hours: Per Job","[Shearwater, Cory's] CPU Hours: Per Job","[Roller] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Oriole, Baltimore] CPU Hours: Per Job","[Sapsucker, Yellow-bellied] CPU Hours: Per Job","[Auk, Little] CPU Hours: Per Job","[Warbler, Booted] CPU Hours: Per Job","[Swift, Alpine] CPU Hours: Per Job","[Redpoll, Lesser] CPU Hours: Per Job","[Shrike, Long-tailed] CPU Hours: Per Job","[Gallinule, Allen's] CPU Hours: Per Job","[Plover, Caspian] CPU Hours: Per Job","[Warbler, Golden-winged] CPU Hours: Per Job","[Thrush, Grey-cheeked] CPU Hours: Per Job","[Warbler, Moltoni's] CPU Hours: Per Job","[Tern, Sandwich] CPU Hours: Per Job","[Gull, Ring-billed] CPU Hours: Per Job","[Lapwing] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Dove, Turtle] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Thrush, Swainson's] CPU Hours: Per Job","[Bunting, Black-headed] CPU Hours: Per Job","[Bunting, Reed] CPU Hours: Per Job","[Grebe, Pied-billed] CPU Hours: Per Job","[Grey, Lesser] CPU Hours: Per Job","[Stint, Little] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Honey-buzzard] CPU Hours: Per Job","[Martin, Crag] CPU Hours: Per Job","[Partridge, Red-legged] CPU Hours: Per Job","[Coot] CPU Hours: Per Job","[Martin, Purple] CPU Hours: Per Job","[Egret, Cattle] CPU Hours: Per Job","[Grey, Southern] CPU Hours: Per Job","[Sparrow, Savannah] CPU Hours: Per Job","[Grey, Great] CPU Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,156.95833333,0,0,0,76.17666667,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.26666667,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,288.00000000,0,0,0,576.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,2997.12000000,1246.47111111,243.18222222,0,1487.82000000,0,0,0,0,0,0,0,0,78.98666667,0,0,0,0,384.00000000,0,0,136.79555556,111.72266667,0,650.84444444,0,0,0,0,288.00000000,0,0,238.86666667,0,0,0,0,0,0,0,4.72138889,24.00000000,0,0,0,0,288.00000000,0,0,0,143.14666667,0,0,0,0,3.21666667,0,0,0,0,0,0,0,0 -2016-12-28,3274.16345679,0,3456.00000000,1462.12800000,1536.00000000,0,1170.67333333,0,0,0,0,0,0,0,94.01111111,384.00000000,0,0,266.54222222,193.12666667,144.42111111,60.47666667,37.38407407,384.00000000,141.10666667,0,284.72404040,0,0,0,70.31866667,288.00000000,0,0,288.00000000,0,0,0,0,0,0,0,24.00000000,24.00000000,0,13.35268330,0,5.01598392,288.00000000,0,0,0,630.22700855,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0 -2016-12-29,4394.66666667,0,3456.00000000,2251.54909091,1536.00000000,831.60857143,1440.00000000,180.11666667,410.97777778,611.49333333,1406.28333333,758.98888889,1038.22222222,107.90888889,480.00000000,384.00000000,0,0,535.35619048,387.21000000,382.20422222,288.00000000,288.00000000,106.45155556,164.24592593,48.73966667,357.73259259,39.71703704,0,0,111.16444444,288.00000000,79.40936508,52.00416667,288.00000000,0,28.69444444,22.24222222,0,0,0,7.24000000,24.00000000,19.56861111,0,16.60273286,0,13.10756221,38.39929825,0,35.48623932,0,403.98240000,4.66003889,0,0,2.01966667,4.97002566,0,0,0,0,0,0,0,0 -2016-12-30,4394.66666667,2468.14222222,324.23111111,2131.62060606,1536.00000000,1568.46000000,625.34000000,1440.00000000,1151.41444444,765.75000000,489.36111111,480.00444444,402.80000000,510.57222222,386.12222222,384.00000000,0,683.12000000,129.32098413,173.83962963,302.76555556,181.16111111,174.64030303,164.41962963,102.30620370,114.58566667,77.69224586,143.85833333,21.99861111,64.03555556,92.49006944,288.00000000,77.76288889,68.03194444,13.26442593,6.51777778,52.54222222,4.02347222,28.14000000,0,16.32947222,142.16250000,19.28555556,3.56833333,17.79750000,21.71949405,10.84229167,13.31263065,8.81516078,5.80186420,4.14055945,3.48631944,2.20207251,5.34402222,4.25015531,5.65000000,4.10559722,3.17816020,1.60992063,1.04000000,0.97263889,0.97243056,0.97256944,1.58977533,0.02760417,0.02405133 -2016-12-31,1121.32049383,5701.54666667,0,1158.10807018,1536.00000000,1590.52000000,444.34666667,1440.00000000,821.47333333,977.07428571,1440.00000000,294.97777778,0,0,0,265.13155556,385.99851852,261.10111111,772.86370370,224.42037037,245.43360532,0,288.00000000,130.38518519,119.81037037,190.06944444,30.92378849,192.00000000,251.46666667,158.30444444,57.49013889,58.32133333,76.17254902,70.16857143,1.92791667,131.93777778,23.98444444,25.91166667,0,2.35937500,35.16320513,14.57163265,0,0,14.11222222,10.83064379,22.00930556,12.53390738,8.33840025,12.54733333,1114.52444444,7.65398148,1.45788429,0,5.54019436,2.45222222,8.63138889,3.84824292,0,0,0.97312500,0.97349537,0.97211806,1.07971065,0.02281046,0.01479010 -2017-01-01,0,0,0,263.45777778,1293.28000000,0,0,1140.35000000,0,667.68761905,158.23333333,0,3.46666667,0,0,371.58666667,198.70320988,269.34857143,70.31901235,118.89333333,104.22217494,0,60.55000000,0,141.00285714,63.49666667,0,68.79111111,21.40555556,61.31777778,0,15.50950855,51.40333333,5.71666667,0,7.11888889,45.96222222,45.02654321,0,25.37236259,8.24440000,35.25833333,0,0,0,13.34534574,0,11.50582962,9.56621212,6.26263789,0,0,36.21190476,0,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Day,"[Scaup, Lesser] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Pipit, Meadow] CPU Hours: Per Job","[Scoter, Velvet] CPU Hours: Per Job","[Warbler, Dusky] CPU Hours: Per Job","[Siskin] CPU Hours: Per Job","[Duck, Ferruginous] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Goose, Egyptian] CPU Hours: Per Job","[Peregrine] CPU Hours: Per Job","[Ovenbird] CPU Hours: Per Job","[Crane] CPU Hours: Per Job","[Bunting, Yellow-browed] CPU Hours: Per Job","[Ibis, Glossy] CPU Hours: Per Job","[Warbler, Yellow-browed] CPU Hours: Per Job","[Warbler, Garden] CPU Hours: Per Job","[Sparrow, White-throated] CPU Hours: Per Job","[Grosbeak, Evening] CPU Hours: Per Job","[Plover, White-tailed] CPU Hours: Per Job","[Thrush, Mistle] CPU Hours: Per Job","[Shag] CPU Hours: Per Job","[Bunting, Yellow-breasted] CPU Hours: Per Job","[Treecreeper, Short-toed] CPU Hours: Per Job","[Warbler, Sardinian] CPU Hours: Per Job","[Whimbrel] CPU Hours: Per Job","[Shearwater, Cory's] CPU Hours: Per Job","[Sandpiper, Spotted] CPU Hours: Per Job","[Sapsucker, Yellow-bellied] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Crane, Sandhill] CPU Hours: Per Job","[Roller] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Oriole, Baltimore] CPU Hours: Per Job","[Tern, Sandwich] CPU Hours: Per Job","[Redpoll, Lesser] CPU Hours: Per Job","[Warbler, Moltoni's] CPU Hours: Per Job","[Warbler, Booted] CPU Hours: Per Job","[Auk, Little] CPU Hours: Per Job","[Lapwing] CPU Hours: Per Job","[Swift, Alpine] CPU Hours: Per Job","[Shrike, Long-tailed] CPU Hours: Per Job","[Gull, Ring-billed] CPU Hours: Per Job","[Gallinule, Allen's] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Plover, Caspian] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Golden-winged] CPU Hours: Per Job","[Thrush, Grey-cheeked] CPU Hours: Per Job","[Dove, Turtle] CPU Hours: Per Job","[Grebe, Pied-billed] CPU Hours: Per Job","[Grey, Lesser] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Thrush, Swainson's] CPU Hours: Per Job","[Bunting, Reed] CPU Hours: Per Job","[Bunting, Black-headed] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Stint, Little] CPU Hours: Per Job","[Honey-buzzard] CPU Hours: Per Job","[Martin, Crag] CPU Hours: Per Job","[Partridge, Red-legged] CPU Hours: Per Job","[Coot] CPU Hours: Per Job","[Martin, Purple] CPU Hours: Per Job","[Egret, Cattle] CPU Hours: Per Job","[Grey, Southern] CPU Hours: Per Job","[Sparrow, Savannah] CPU Hours: Per Job","[Grey, Great] CPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156.95833333,0,0,0,0,76.17666667,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.26666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,576.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,243.18222222,1246.47111111,2997.12000000,0,1487.82000000,0,0,0,0,78.98666667,0,0,0,0,384.00000000,0,0,0,0,0,136.79555556,111.72266667,0,0,0,0,0,0,650.84444444,0,0,288.00000000,24.00000000,0,4.72138889,238.86666667,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,143.14666667,0,0,0,3.21666667,0,0,0,0,0,0,0,0 +2016-12-28,3274.16345679,1536.00000000,1462.12800000,3456.00000000,0,1170.67333333,0,0,0,0,384.00000000,0,0,94.01111111,0,144.42111111,0,0,60.47666667,37.38407407,193.12666667,384.00000000,141.10666667,266.54222222,0,0,0,0,70.31866667,284.72404040,0,0,288.00000000,24.00000000,0,24.00000000,288.00000000,0,13.35268330,0,0,0,0,5.01598392,0,0,0,0,288.00000000,0,0,0,0,630.22700855,0,0,0,24.00000000,0,0,0,0,0,0,0,0 +2016-12-29,4394.66666667,1536.00000000,2251.54909091,3456.00000000,0,1440.00000000,180.11666667,831.60857143,410.97777778,1406.28333333,384.00000000,611.49333333,758.98888889,480.00000000,1038.22222222,382.20422222,0,107.90888889,288.00000000,288.00000000,387.21000000,106.45155556,164.24592593,535.35619048,0,39.71703704,48.73966667,79.40936508,111.16444444,357.73259259,0,0,288.00000000,19.56861111,28.69444444,24.00000000,288.00000000,52.00416667,16.60273286,0,22.24222222,0,0,13.10756221,0,0,0,7.24000000,38.39929825,4.66003889,0,0,35.48623932,403.98240000,0,2.01966667,0,4.97002566,0,0,0,0,0,0,0,0 +2016-12-30,4394.66666667,1536.00000000,2131.62060606,324.23111111,2468.14222222,625.34000000,1440.00000000,1568.46000000,1151.41444444,489.36111111,384.00000000,765.75000000,480.00444444,386.12222222,402.80000000,302.76555556,0,510.57222222,181.16111111,174.64030303,173.83962963,164.41962963,102.30620370,129.32098413,683.12000000,143.85833333,114.58566667,77.76288889,92.49006944,77.69224586,21.99861111,64.03555556,288.00000000,3.56833333,52.54222222,19.28555556,13.26442593,68.03194444,21.71949405,6.51777778,4.02347222,17.79750000,28.14000000,13.31263065,0,10.84229167,16.32947222,142.16250000,8.81516078,5.34402222,4.25015531,5.80186420,4.14055945,2.20207251,3.48631944,4.10559722,5.65000000,3.17816020,1.60992063,1.04000000,0.97263889,0.97243056,0.97256944,1.58977533,0.02760417,0.02405133 +2016-12-31,1121.32049383,1536.00000000,1158.10807018,0,5701.54666667,444.34666667,1440.00000000,1590.52000000,821.47333333,1440.00000000,265.13155556,977.07428571,294.97777778,0,0,245.43360532,385.99851852,0,0,288.00000000,224.42037037,130.38518519,119.81037037,772.86370370,261.10111111,192.00000000,190.06944444,76.17254902,57.49013889,30.92378849,251.46666667,158.30444444,58.32133333,0,23.98444444,0,1.92791667,70.16857143,10.83064379,131.93777778,25.91166667,14.11222222,0,12.53390738,2.35937500,22.00930556,35.16320513,14.57163265,8.33840025,0,5.54019436,12.54733333,1114.52444444,1.45788429,7.65398148,8.63138889,2.45222222,3.84824292,0,0,0.97312500,0.97349537,0.97211806,1.07971065,0.02281046,0.01479010 +2017-01-01,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv index 63da1d0669..ddc656859b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Scaup, Lesser] CPU Hours: Per Job","[Scoter, Velvet] CPU Hours: Per Job","[Pipit, Meadow] CPU Hours: Per Job","[Warbler, Dusky] CPU Hours: Per Job","[Siskin] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Duck, Ferruginous] CPU Hours: Per Job","[Goose, Egyptian] CPU Hours: Per Job","[Peregrine] CPU Hours: Per Job","[Ovenbird] CPU Hours: Per Job","[Crane] CPU Hours: Per Job","[Bunting, Yellow-browed] CPU Hours: Per Job","[Ibis, Glossy] CPU Hours: Per Job","[Warbler, Yellow-browed] CPU Hours: Per Job","[Grosbeak, Evening] CPU Hours: Per Job","[Plover, White-tailed] CPU Hours: Per Job","[Thrush, Mistle] CPU Hours: Per Job","[Bunting, Yellow-breasted] CPU Hours: Per Job","[Shag] CPU Hours: Per Job","[Warbler, Sardinian] CPU Hours: Per Job","[Warbler, Garden] CPU Hours: Per Job","[Whimbrel] CPU Hours: Per Job","[Sparrow, White-throated] CPU Hours: Per Job","[Treecreeper, Short-toed] CPU Hours: Per Job","[Sandpiper, Spotted] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Shearwater, Cory's] CPU Hours: Per Job","[Crane, Sandhill] CPU Hours: Per Job","[Roller] CPU Hours: Per Job","[Sapsucker, Yellow-bellied] CPU Hours: Per Job","[Oriole, Baltimore] CPU Hours: Per Job","[Tern, Sandwich] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Warbler, Moltoni's] CPU Hours: Per Job","[Warbler, Booted] CPU Hours: Per Job","[Auk, Little] CPU Hours: Per Job","[Redpoll, Lesser] CPU Hours: Per Job","[Lapwing] CPU Hours: Per Job","[Swift, Alpine] CPU Hours: Per Job","[Shrike, Long-tailed] CPU Hours: Per Job","[Gull, Ring-billed] CPU Hours: Per Job","[Gallinule, Allen's] CPU Hours: Per Job","[Plover, Caspian] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Golden-winged] CPU Hours: Per Job","[Thrush, Grey-cheeked] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Dove, Turtle] CPU Hours: Per Job","[Grebe, Pied-billed] CPU Hours: Per Job","[Grey, Lesser] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Thrush, Swainson's] CPU Hours: Per Job","[Bunting, Reed] CPU Hours: Per Job","[Bunting, Black-headed] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Stint, Little] CPU Hours: Per Job","[Honey-buzzard] CPU Hours: Per Job","[Martin, Crag] CPU Hours: Per Job","[Partridge, Red-legged] CPU Hours: Per Job","[Coot] CPU Hours: Per Job","[Martin, Purple] CPU Hours: Per Job","[Egret, Cattle] CPU Hours: Per Job","[Grey, Southern] CPU Hours: Per Job","[Sparrow, Savannah] CPU Hours: Per Job","[Grey, Great] CPU Hours: Per Job" -2016-12,13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -2017-01,0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Month,"[Scaup, Lesser] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Pipit, Meadow] CPU Hours: Per Job","[Scoter, Velvet] CPU Hours: Per Job","[Warbler, Dusky] CPU Hours: Per Job","[Siskin] CPU Hours: Per Job","[Duck, Ferruginous] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Goose, Egyptian] CPU Hours: Per Job","[Peregrine] CPU Hours: Per Job","[Ovenbird] CPU Hours: Per Job","[Crane] CPU Hours: Per Job","[Bunting, Yellow-browed] CPU Hours: Per Job","[Ibis, Glossy] CPU Hours: Per Job","[Warbler, Yellow-browed] CPU Hours: Per Job","[Warbler, Garden] CPU Hours: Per Job","[Sparrow, White-throated] CPU Hours: Per Job","[Grosbeak, Evening] CPU Hours: Per Job","[Plover, White-tailed] CPU Hours: Per Job","[Thrush, Mistle] CPU Hours: Per Job","[Shag] CPU Hours: Per Job","[Bunting, Yellow-breasted] CPU Hours: Per Job","[Treecreeper, Short-toed] CPU Hours: Per Job","[Warbler, Sardinian] CPU Hours: Per Job","[Whimbrel] CPU Hours: Per Job","[Shearwater, Cory's] CPU Hours: Per Job","[Sandpiper, Spotted] CPU Hours: Per Job","[Sapsucker, Yellow-bellied] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Crane, Sandhill] CPU Hours: Per Job","[Roller] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Oriole, Baltimore] CPU Hours: Per Job","[Tern, Sandwich] CPU Hours: Per Job","[Redpoll, Lesser] CPU Hours: Per Job","[Warbler, Moltoni's] CPU Hours: Per Job","[Warbler, Booted] CPU Hours: Per Job","[Auk, Little] CPU Hours: Per Job","[Lapwing] CPU Hours: Per Job","[Swift, Alpine] CPU Hours: Per Job","[Shrike, Long-tailed] CPU Hours: Per Job","[Gull, Ring-billed] CPU Hours: Per Job","[Gallinule, Allen's] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Plover, Caspian] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Golden-winged] CPU Hours: Per Job","[Thrush, Grey-cheeked] CPU Hours: Per Job","[Dove, Turtle] CPU Hours: Per Job","[Grebe, Pied-billed] CPU Hours: Per Job","[Grey, Lesser] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Thrush, Swainson's] CPU Hours: Per Job","[Bunting, Reed] CPU Hours: Per Job","[Bunting, Black-headed] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Stint, Little] CPU Hours: Per Job","[Honey-buzzard] CPU Hours: Per Job","[Martin, Crag] CPU Hours: Per Job","[Partridge, Red-legged] CPU Hours: Per Job","[Coot] CPU Hours: Per Job","[Martin, Purple] CPU Hours: Per Job","[Egret, Cattle] CPU Hours: Per Job","[Grey, Southern] CPU Hours: Per Job","[Sparrow, Savannah] CPU Hours: Per Job","[Grey, Great] CPU Hours: Per Job" +2016-12,13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +2017-01,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv index 02d43da316..c2dc7cbdd7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Scaup, Lesser] CPU Hours: Per Job","[Scoter, Velvet] CPU Hours: Per Job","[Pipit, Meadow] CPU Hours: Per Job","[Warbler, Dusky] CPU Hours: Per Job","[Siskin] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Duck, Ferruginous] CPU Hours: Per Job","[Goose, Egyptian] CPU Hours: Per Job","[Peregrine] CPU Hours: Per Job","[Ovenbird] CPU Hours: Per Job","[Crane] CPU Hours: Per Job","[Bunting, Yellow-browed] CPU Hours: Per Job","[Ibis, Glossy] CPU Hours: Per Job","[Warbler, Yellow-browed] CPU Hours: Per Job","[Grosbeak, Evening] CPU Hours: Per Job","[Plover, White-tailed] CPU Hours: Per Job","[Thrush, Mistle] CPU Hours: Per Job","[Bunting, Yellow-breasted] CPU Hours: Per Job","[Shag] CPU Hours: Per Job","[Warbler, Sardinian] CPU Hours: Per Job","[Warbler, Garden] CPU Hours: Per Job","[Whimbrel] CPU Hours: Per Job","[Sparrow, White-throated] CPU Hours: Per Job","[Treecreeper, Short-toed] CPU Hours: Per Job","[Sandpiper, Spotted] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Shearwater, Cory's] CPU Hours: Per Job","[Crane, Sandhill] CPU Hours: Per Job","[Roller] CPU Hours: Per Job","[Sapsucker, Yellow-bellied] CPU Hours: Per Job","[Oriole, Baltimore] CPU Hours: Per Job","[Tern, Sandwich] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Warbler, Moltoni's] CPU Hours: Per Job","[Warbler, Booted] CPU Hours: Per Job","[Auk, Little] CPU Hours: Per Job","[Redpoll, Lesser] CPU Hours: Per Job","[Lapwing] CPU Hours: Per Job","[Swift, Alpine] CPU Hours: Per Job","[Shrike, Long-tailed] CPU Hours: Per Job","[Gull, Ring-billed] CPU Hours: Per Job","[Gallinule, Allen's] CPU Hours: Per Job","[Plover, Caspian] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Golden-winged] CPU Hours: Per Job","[Thrush, Grey-cheeked] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Dove, Turtle] CPU Hours: Per Job","[Grebe, Pied-billed] CPU Hours: Per Job","[Grey, Lesser] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Thrush, Swainson's] CPU Hours: Per Job","[Bunting, Reed] CPU Hours: Per Job","[Bunting, Black-headed] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Stint, Little] CPU Hours: Per Job","[Honey-buzzard] CPU Hours: Per Job","[Martin, Crag] CPU Hours: Per Job","[Partridge, Red-legged] CPU Hours: Per Job","[Coot] CPU Hours: Per Job","[Martin, Purple] CPU Hours: Per Job","[Egret, Cattle] CPU Hours: Per Job","[Grey, Southern] CPU Hours: Per Job","[Sparrow, Savannah] CPU Hours: Per Job","[Grey, Great] CPU Hours: Per Job" -"2016 Q4",13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -"2017 Q1",0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Quarter,"[Scaup, Lesser] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Pipit, Meadow] CPU Hours: Per Job","[Scoter, Velvet] CPU Hours: Per Job","[Warbler, Dusky] CPU Hours: Per Job","[Siskin] CPU Hours: Per Job","[Duck, Ferruginous] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Goose, Egyptian] CPU Hours: Per Job","[Peregrine] CPU Hours: Per Job","[Ovenbird] CPU Hours: Per Job","[Crane] CPU Hours: Per Job","[Bunting, Yellow-browed] CPU Hours: Per Job","[Ibis, Glossy] CPU Hours: Per Job","[Warbler, Yellow-browed] CPU Hours: Per Job","[Warbler, Garden] CPU Hours: Per Job","[Sparrow, White-throated] CPU Hours: Per Job","[Grosbeak, Evening] CPU Hours: Per Job","[Plover, White-tailed] CPU Hours: Per Job","[Thrush, Mistle] CPU Hours: Per Job","[Shag] CPU Hours: Per Job","[Bunting, Yellow-breasted] CPU Hours: Per Job","[Treecreeper, Short-toed] CPU Hours: Per Job","[Warbler, Sardinian] CPU Hours: Per Job","[Whimbrel] CPU Hours: Per Job","[Shearwater, Cory's] CPU Hours: Per Job","[Sandpiper, Spotted] CPU Hours: Per Job","[Sapsucker, Yellow-bellied] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Crane, Sandhill] CPU Hours: Per Job","[Roller] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Oriole, Baltimore] CPU Hours: Per Job","[Tern, Sandwich] CPU Hours: Per Job","[Redpoll, Lesser] CPU Hours: Per Job","[Warbler, Moltoni's] CPU Hours: Per Job","[Warbler, Booted] CPU Hours: Per Job","[Auk, Little] CPU Hours: Per Job","[Lapwing] CPU Hours: Per Job","[Swift, Alpine] CPU Hours: Per Job","[Shrike, Long-tailed] CPU Hours: Per Job","[Gull, Ring-billed] CPU Hours: Per Job","[Gallinule, Allen's] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Plover, Caspian] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Golden-winged] CPU Hours: Per Job","[Thrush, Grey-cheeked] CPU Hours: Per Job","[Dove, Turtle] CPU Hours: Per Job","[Grebe, Pied-billed] CPU Hours: Per Job","[Grey, Lesser] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Thrush, Swainson's] CPU Hours: Per Job","[Bunting, Reed] CPU Hours: Per Job","[Bunting, Black-headed] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Stint, Little] CPU Hours: Per Job","[Honey-buzzard] CPU Hours: Per Job","[Martin, Crag] CPU Hours: Per Job","[Partridge, Red-legged] CPU Hours: Per Job","[Coot] CPU Hours: Per Job","[Martin, Purple] CPU Hours: Per Job","[Egret, Cattle] CPU Hours: Per Job","[Grey, Southern] CPU Hours: Per Job","[Sparrow, Savannah] CPU Hours: Per Job","[Grey, Great] CPU Hours: Per Job" +"2016 Q4",13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +"2017 Q1",0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv index d7829c9c7c..c836c4e25c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_cpu_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Scaup, Lesser] CPU Hours: Per Job","[Scoter, Velvet] CPU Hours: Per Job","[Pipit, Meadow] CPU Hours: Per Job","[Warbler, Dusky] CPU Hours: Per Job","[Siskin] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Duck, Ferruginous] CPU Hours: Per Job","[Goose, Egyptian] CPU Hours: Per Job","[Peregrine] CPU Hours: Per Job","[Ovenbird] CPU Hours: Per Job","[Crane] CPU Hours: Per Job","[Bunting, Yellow-browed] CPU Hours: Per Job","[Ibis, Glossy] CPU Hours: Per Job","[Warbler, Yellow-browed] CPU Hours: Per Job","[Grosbeak, Evening] CPU Hours: Per Job","[Plover, White-tailed] CPU Hours: Per Job","[Thrush, Mistle] CPU Hours: Per Job","[Bunting, Yellow-breasted] CPU Hours: Per Job","[Shag] CPU Hours: Per Job","[Warbler, Sardinian] CPU Hours: Per Job","[Warbler, Garden] CPU Hours: Per Job","[Whimbrel] CPU Hours: Per Job","[Sparrow, White-throated] CPU Hours: Per Job","[Treecreeper, Short-toed] CPU Hours: Per Job","[Sandpiper, Spotted] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Shearwater, Cory's] CPU Hours: Per Job","[Crane, Sandhill] CPU Hours: Per Job","[Roller] CPU Hours: Per Job","[Sapsucker, Yellow-bellied] CPU Hours: Per Job","[Oriole, Baltimore] CPU Hours: Per Job","[Tern, Sandwich] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Warbler, Moltoni's] CPU Hours: Per Job","[Warbler, Booted] CPU Hours: Per Job","[Auk, Little] CPU Hours: Per Job","[Redpoll, Lesser] CPU Hours: Per Job","[Lapwing] CPU Hours: Per Job","[Swift, Alpine] CPU Hours: Per Job","[Shrike, Long-tailed] CPU Hours: Per Job","[Gull, Ring-billed] CPU Hours: Per Job","[Gallinule, Allen's] CPU Hours: Per Job","[Plover, Caspian] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Golden-winged] CPU Hours: Per Job","[Thrush, Grey-cheeked] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Dove, Turtle] CPU Hours: Per Job","[Grebe, Pied-billed] CPU Hours: Per Job","[Grey, Lesser] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Thrush, Swainson's] CPU Hours: Per Job","[Bunting, Reed] CPU Hours: Per Job","[Bunting, Black-headed] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Stint, Little] CPU Hours: Per Job","[Honey-buzzard] CPU Hours: Per Job","[Martin, Crag] CPU Hours: Per Job","[Partridge, Red-legged] CPU Hours: Per Job","[Coot] CPU Hours: Per Job","[Martin, Purple] CPU Hours: Per Job","[Egret, Cattle] CPU Hours: Per Job","[Grey, Southern] CPU Hours: Per Job","[Sparrow, Savannah] CPU Hours: Per Job","[Grey, Great] CPU Hours: Per Job" -2016,13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -2017,0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Year,"[Scaup, Lesser] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Pipit, Meadow] CPU Hours: Per Job","[Scoter, Velvet] CPU Hours: Per Job","[Warbler, Dusky] CPU Hours: Per Job","[Siskin] CPU Hours: Per Job","[Duck, Ferruginous] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Goose, Egyptian] CPU Hours: Per Job","[Peregrine] CPU Hours: Per Job","[Ovenbird] CPU Hours: Per Job","[Crane] CPU Hours: Per Job","[Bunting, Yellow-browed] CPU Hours: Per Job","[Ibis, Glossy] CPU Hours: Per Job","[Warbler, Yellow-browed] CPU Hours: Per Job","[Warbler, Garden] CPU Hours: Per Job","[Sparrow, White-throated] CPU Hours: Per Job","[Grosbeak, Evening] CPU Hours: Per Job","[Plover, White-tailed] CPU Hours: Per Job","[Thrush, Mistle] CPU Hours: Per Job","[Shag] CPU Hours: Per Job","[Bunting, Yellow-breasted] CPU Hours: Per Job","[Treecreeper, Short-toed] CPU Hours: Per Job","[Warbler, Sardinian] CPU Hours: Per Job","[Whimbrel] CPU Hours: Per Job","[Shearwater, Cory's] CPU Hours: Per Job","[Sandpiper, Spotted] CPU Hours: Per Job","[Sapsucker, Yellow-bellied] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Crane, Sandhill] CPU Hours: Per Job","[Roller] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Oriole, Baltimore] CPU Hours: Per Job","[Tern, Sandwich] CPU Hours: Per Job","[Redpoll, Lesser] CPU Hours: Per Job","[Warbler, Moltoni's] CPU Hours: Per Job","[Warbler, Booted] CPU Hours: Per Job","[Auk, Little] CPU Hours: Per Job","[Lapwing] CPU Hours: Per Job","[Swift, Alpine] CPU Hours: Per Job","[Shrike, Long-tailed] CPU Hours: Per Job","[Gull, Ring-billed] CPU Hours: Per Job","[Gallinule, Allen's] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Plover, Caspian] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Golden-winged] CPU Hours: Per Job","[Thrush, Grey-cheeked] CPU Hours: Per Job","[Dove, Turtle] CPU Hours: Per Job","[Grebe, Pied-billed] CPU Hours: Per Job","[Grey, Lesser] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Thrush, Swainson's] CPU Hours: Per Job","[Bunting, Reed] CPU Hours: Per Job","[Bunting, Black-headed] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Stint, Little] CPU Hours: Per Job","[Honey-buzzard] CPU Hours: Per Job","[Martin, Crag] CPU Hours: Per Job","[Partridge, Red-legged] CPU Hours: Per Job","[Coot] CPU Hours: Per Job","[Martin, Purple] CPU Hours: Per Job","[Egret, Cattle] CPU Hours: Per Job","[Grey, Southern] CPU Hours: Per Job","[Sparrow, Savannah] CPU Hours: Per Job","[Grey, Great] CPU Hours: Per Job" +2016,13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +2017,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..93305385ac 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Chaffinch,960.05777778, +"Scaup, Lesser",824.05108025, +"Pipit, Meadow",508.59805556, +"Scoter, Velvet",436.75888889, +Siskin,420.21000000, +"Warbler, Dusky",364.05481481,136.8440852046951 +"Duck, Ferruginous",350.03888889, +Smew,218.94047619, +"Grosbeak, Evening",141.13166667,80.31330471086498 +Peregrine,124.23888889, +"Goose, Egyptian",110.47750000, +Crane,101.42611111, +"Warbler, Yellow-browed",90.28055556,27.732762483552477 +"Tern, Sandwich",87.43875000, +Ovenbird,82.76488889, +"Warbler, Moltoni's",72.00694444, +"Warbler, Garden",52.33125262, +"Sparrow, White-throated",50.98981481, +"Bunting, Yellow-browed",50.34944444, +Lapwing,49.85089556, +"Sapsucker, Yellow-bellied",49.75942901, +"Ibis, Glossy",48.00666667, +"Treecreeper, Short-toed",46.66209596, +"Warbler, Sardinian",44.53832099,8.988788032306655 +"Plover, White-tailed",44.13648148, +"Thrush, Mistle",39.37916667, +"Bunting, Yellow-breasted",38.73828704, +"Gull, Ring-billed",31.90972222, +Whimbrel,29.27660714,5.4837784053086 +"Shearwater, Cory's",27.37690972, +Moorhen,25.48654262, +Jackdaw,21.84694444, +"Warbler, Hooded",21.83599206, +Shag,20.71641414, +"Redpoll, Lesser",18.89791667, +"Sandpiper, Spotted",16.91415278, +"Warbler, Booted",16.76537037, +Fieldfare,14.37398148, +Roller,13.65055556,7.948466682221146 +"Crane, Sandhill",10.37586034,1.124927661108179 +"Grebe, Pied-billed",10.00406111, +"Oriole, Baltimore",9.12821296,1.9513258454156153 +"Grey, Lesser",8.59051583, +"Thrush, Grey-cheeked",7.94699670,0.252707620848999 +"Auk, Little",7.02769444,1.7557857088278381 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.412736659063767 +"Swift, Alpine",4.77166667,1.9283134887459636 +"Shrike, Long-tailed",3.89088542,1.5421931694132969 +"Gallinule, Allen's",2.34500000,0 +"Plover, Caspian",2.10733760,0.04730850999433886 +"Warbler, Golden-winged",1.74795089,0.6996960905360882 +"Dove, Turtle",1.44922324,0.09512756747619289 +Coot,0.97185185,0.0004785195136278676 +"Martin, Purple",0.97183642,0.0003786808428516845 +"Egret, Cattle",0.97148148,0.0005075905675059155 +"Grey, Southern",0.88155664,0.09909785167735996 +"Thrush, Swainson's",0.77236014,0.16956368955632173 +Dunlin,0.62984891,0.07224051664061484 +"Stint, Little",0.33320707,0.09324722160395126 +"Bunting, Reed",0.29758033,0.026000891408928004 +Honey-buzzard,0.28378820,0.002129439336752145 +"Martin, Crag",0.08049603,0.022331879009996006 +"Partridge, Red-legged",0.06500000,0 +"Sparrow, Savannah",0.02439103,0.001692897033294295 +"Grey, Great",0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..6a721af0dd 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Chaffinch,960.05777778, +"Scaup, Lesser",824.05108025,37.71723662041152 +"Pipit, Meadow",508.59805556,25.10592065754552 +"Scoter, Velvet",436.75888889,302.1734405238565 +Siskin,420.21000000,0.0011785113019775792 +"Warbler, Dusky",364.05481481,283.2360258681995 +"Duck, Ferruginous",350.03888889, +Smew,218.94047619,14.44749841316656 +"Grosbeak, Evening",141.13166667,99.43217705915033 +Peregrine,124.23888889,6.896263009875131 +"Goose, Egyptian",110.47750000,9.927622069273584 +Crane,101.42611111,3.4465883980609213 +"Warbler, Yellow-browed",90.28055556,63.531580104107995 +"Tern, Sandwich",87.43875000,49.35183032798893 +Ovenbird,82.76488889,11.31277811706417 +"Warbler, Moltoni's",72.00694444,0 +"Warbler, Garden",52.33125262, +"Sparrow, White-throated",50.98981481, +"Bunting, Yellow-browed",50.34944444,35.60204075854135 +Lapwing,49.85089556,1.1100595034642202 +"Sapsucker, Yellow-bellied",49.75942901, +"Ibis, Glossy",48.00666667,0 +"Treecreeper, Short-toed",46.66209596,5.0547371681082 +"Warbler, Sardinian",44.53832099,12.165202586158358 +"Plover, White-tailed",44.13648148,3.8863777173028686 +"Thrush, Mistle",39.37916667,3.5074678840012607 +"Bunting, Yellow-breasted",38.73828704,7.964502386031587 +"Gull, Ring-billed",31.90972222,0 +Whimbrel,29.27660714,5.657228492407654 +"Shearwater, Cory's",27.37690972,4.572758943516918 +Moorhen,25.48654262,0.09521527865289223 +Jackdaw,21.84694444,1.3829746334642423 +"Warbler, Hooded",21.83599206,4.004901663765415 +Shag,20.71641414,8.04452860733951 +"Redpoll, Lesser",18.89791667, +"Sandpiper, Spotted",16.91415278,1.4100321676305074 +"Warbler, Booted",16.76537037,3.911305555603074 +Fieldfare,14.37398148, +Roller,13.65055556,9.195084663741797 +"Crane, Sandhill",10.37586034,2.058444426306591 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Oriole, Baltimore",9.12821296,7.610909224373501 +"Grey, Lesser",8.59051583,0.027937647321332644 +"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 +"Auk, Little",7.02769444,2.431694700689441 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Swift, Alpine",4.77166667,1.9283134887459636 +"Shrike, Long-tailed",3.89088542,2.2654968346862243 +"Gallinule, Allen's",2.34500000,0 +"Plover, Caspian",2.10733760,0.04730850999433886 +"Warbler, Golden-winged",1.74795089,0.6996960905360882 +"Dove, Turtle",1.44922324,0.22433250121213186 +Coot,0.97185185,0.0004785195136278676 +"Martin, Purple",0.97183642,0.0003786808428516845 +"Egret, Cattle",0.97148148,0.0005075905675059155 +"Grey, Southern",0.88155664,0.09909785167735996 +"Thrush, Swainson's",0.77236014,0.27089844037935495 +Dunlin,0.62984891,0.07224051664061484 +"Stint, Little",0.33320707,0.09324722160395126 +"Bunting, Reed",0.29758033,0.0457046053323436 +Honey-buzzard,0.28378820,0.0027004215312930553 +"Martin, Crag",0.08049603,0.022331879009996006 +"Partridge, Red-legged",0.06500000,0 +"Sparrow, Savannah",0.02439103,0.001692897033294295 +"Grey, Great",0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..6a721af0dd 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Chaffinch,960.05777778, +"Scaup, Lesser",824.05108025,37.71723662041152 +"Pipit, Meadow",508.59805556,25.10592065754552 +"Scoter, Velvet",436.75888889,302.1734405238565 +Siskin,420.21000000,0.0011785113019775792 +"Warbler, Dusky",364.05481481,283.2360258681995 +"Duck, Ferruginous",350.03888889, +Smew,218.94047619,14.44749841316656 +"Grosbeak, Evening",141.13166667,99.43217705915033 +Peregrine,124.23888889,6.896263009875131 +"Goose, Egyptian",110.47750000,9.927622069273584 +Crane,101.42611111,3.4465883980609213 +"Warbler, Yellow-browed",90.28055556,63.531580104107995 +"Tern, Sandwich",87.43875000,49.35183032798893 +Ovenbird,82.76488889,11.31277811706417 +"Warbler, Moltoni's",72.00694444,0 +"Warbler, Garden",52.33125262, +"Sparrow, White-throated",50.98981481, +"Bunting, Yellow-browed",50.34944444,35.60204075854135 +Lapwing,49.85089556,1.1100595034642202 +"Sapsucker, Yellow-bellied",49.75942901, +"Ibis, Glossy",48.00666667,0 +"Treecreeper, Short-toed",46.66209596,5.0547371681082 +"Warbler, Sardinian",44.53832099,12.165202586158358 +"Plover, White-tailed",44.13648148,3.8863777173028686 +"Thrush, Mistle",39.37916667,3.5074678840012607 +"Bunting, Yellow-breasted",38.73828704,7.964502386031587 +"Gull, Ring-billed",31.90972222,0 +Whimbrel,29.27660714,5.657228492407654 +"Shearwater, Cory's",27.37690972,4.572758943516918 +Moorhen,25.48654262,0.09521527865289223 +Jackdaw,21.84694444,1.3829746334642423 +"Warbler, Hooded",21.83599206,4.004901663765415 +Shag,20.71641414,8.04452860733951 +"Redpoll, Lesser",18.89791667, +"Sandpiper, Spotted",16.91415278,1.4100321676305074 +"Warbler, Booted",16.76537037,3.911305555603074 +Fieldfare,14.37398148, +Roller,13.65055556,9.195084663741797 +"Crane, Sandhill",10.37586034,2.058444426306591 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Oriole, Baltimore",9.12821296,7.610909224373501 +"Grey, Lesser",8.59051583,0.027937647321332644 +"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 +"Auk, Little",7.02769444,2.431694700689441 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Swift, Alpine",4.77166667,1.9283134887459636 +"Shrike, Long-tailed",3.89088542,2.2654968346862243 +"Gallinule, Allen's",2.34500000,0 +"Plover, Caspian",2.10733760,0.04730850999433886 +"Warbler, Golden-winged",1.74795089,0.6996960905360882 +"Dove, Turtle",1.44922324,0.22433250121213186 +Coot,0.97185185,0.0004785195136278676 +"Martin, Purple",0.97183642,0.0003786808428516845 +"Egret, Cattle",0.97148148,0.0005075905675059155 +"Grey, Southern",0.88155664,0.09909785167735996 +"Thrush, Swainson's",0.77236014,0.27089844037935495 +Dunlin,0.62984891,0.07224051664061484 +"Stint, Little",0.33320707,0.09324722160395126 +"Bunting, Reed",0.29758033,0.0457046053323436 +Honey-buzzard,0.28378820,0.0027004215312930553 +"Martin, Crag",0.08049603,0.022331879009996006 +"Partridge, Red-legged",0.06500000,0 +"Sparrow, Savannah",0.02439103,0.001692897033294295 +"Grey, Great",0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..6a721af0dd 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +Chaffinch,960.05777778, +"Scaup, Lesser",824.05108025,37.71723662041152 +"Pipit, Meadow",508.59805556,25.10592065754552 +"Scoter, Velvet",436.75888889,302.1734405238565 +Siskin,420.21000000,0.0011785113019775792 +"Warbler, Dusky",364.05481481,283.2360258681995 +"Duck, Ferruginous",350.03888889, +Smew,218.94047619,14.44749841316656 +"Grosbeak, Evening",141.13166667,99.43217705915033 +Peregrine,124.23888889,6.896263009875131 +"Goose, Egyptian",110.47750000,9.927622069273584 +Crane,101.42611111,3.4465883980609213 +"Warbler, Yellow-browed",90.28055556,63.531580104107995 +"Tern, Sandwich",87.43875000,49.35183032798893 +Ovenbird,82.76488889,11.31277811706417 +"Warbler, Moltoni's",72.00694444,0 +"Warbler, Garden",52.33125262, +"Sparrow, White-throated",50.98981481, +"Bunting, Yellow-browed",50.34944444,35.60204075854135 +Lapwing,49.85089556,1.1100595034642202 +"Sapsucker, Yellow-bellied",49.75942901, +"Ibis, Glossy",48.00666667,0 +"Treecreeper, Short-toed",46.66209596,5.0547371681082 +"Warbler, Sardinian",44.53832099,12.165202586158358 +"Plover, White-tailed",44.13648148,3.8863777173028686 +"Thrush, Mistle",39.37916667,3.5074678840012607 +"Bunting, Yellow-breasted",38.73828704,7.964502386031587 +"Gull, Ring-billed",31.90972222,0 +Whimbrel,29.27660714,5.657228492407654 +"Shearwater, Cory's",27.37690972,4.572758943516918 +Moorhen,25.48654262,0.09521527865289223 +Jackdaw,21.84694444,1.3829746334642423 +"Warbler, Hooded",21.83599206,4.004901663765415 +Shag,20.71641414,8.04452860733951 +"Redpoll, Lesser",18.89791667, +"Sandpiper, Spotted",16.91415278,1.4100321676305074 +"Warbler, Booted",16.76537037,3.911305555603074 +Fieldfare,14.37398148, +Roller,13.65055556,9.195084663741797 +"Crane, Sandhill",10.37586034,2.058444426306591 +"Grebe, Pied-billed",10.00406111,0.00040214624761869517 +"Oriole, Baltimore",9.12821296,7.610909224373501 +"Grey, Lesser",8.59051583,0.027937647321332644 +"Thrush, Grey-cheeked",7.94699670,0.4591933087881705 +"Auk, Little",7.02769444,2.431694700689441 +"Bunting, Black-headed",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Swift, Alpine",4.77166667,1.9283134887459636 +"Shrike, Long-tailed",3.89088542,2.2654968346862243 +"Gallinule, Allen's",2.34500000,0 +"Plover, Caspian",2.10733760,0.04730850999433886 +"Warbler, Golden-winged",1.74795089,0.6996960905360882 +"Dove, Turtle",1.44922324,0.22433250121213186 +Coot,0.97185185,0.0004785195136278676 +"Martin, Purple",0.97183642,0.0003786808428516845 +"Egret, Cattle",0.97148148,0.0005075905675059155 +"Grey, Southern",0.88155664,0.09909785167735996 +"Thrush, Swainson's",0.77236014,0.27089844037935495 +Dunlin,0.62984891,0.07224051664061484 +"Stint, Little",0.33320707,0.09324722160395126 +"Bunting, Reed",0.29758033,0.0457046053323436 +Honey-buzzard,0.28378820,0.0027004215312930553 +"Martin, Crag",0.08049603,0.022331879009996006 +"Partridge, Red-legged",0.06500000,0 +"Sparrow, Savannah",0.02439103,0.001692897033294295 +"Grey, Great",0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Day-reference.csv index ac68555b72..20706dcfde 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Warbler, Dusky] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Scoter, Velvet] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Pipit, Meadow] Node Hours: Per Job","[Siskin] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Grosbeak, Evening] Node Hours: Per Job","[Duck, Ferruginous] Node Hours: Per Job","[Crane] Node Hours: Per Job","[Peregrine] Node Hours: Per Job","[Warbler, Yellow-browed] Node Hours: Per Job","[Goose, Egyptian] Node Hours: Per Job","[Warbler, Sardinian] Node Hours: Per Job","[Sparrow, White-throated] Node Hours: Per Job","[Bunting, Yellow-browed] Node Hours: Per Job","[Whimbrel] Node Hours: Per Job","[Ovenbird] Node Hours: Per Job","[Warbler, Moltoni's] Node Hours: Per Job","[Sapsucker, Yellow-bellied] Node Hours: Per Job","[Tern, Sandwich] Node Hours: Per Job","[Warbler, Garden] Node Hours: Per Job","[Treecreeper, Short-toed] Node Hours: Per Job","[Ibis, Glossy] Node Hours: Per Job","[Gull, Ring-billed] Node Hours: Per Job","[Lapwing] Node Hours: Per Job","[Plover, White-tailed] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Bunting, Yellow-breasted] Node Hours: Per Job","[Thrush, Mistle] Node Hours: Per Job","[Shearwater, Cory's] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Warbler, Booted] Node Hours: Per Job","[Shag] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Sandpiper, Spotted] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Redpoll, Lesser] Node Hours: Per Job","[Roller] Node Hours: Per Job","[Thrush, Grey-cheeked] Node Hours: Per Job","[Crane, Sandhill] Node Hours: Per Job","[Oriole, Baltimore] Node Hours: Per Job","[Auk, Little] Node Hours: Per Job","[Bunting, Black-headed] Node Hours: Per Job","[Grebe, Pied-billed] Node Hours: Per Job","[Grey, Lesser] Node Hours: Per Job","[Swift, Alpine] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Shrike, Long-tailed] Node Hours: Per Job","[Gallinule, Allen's] Node Hours: Per Job","[Plover, Caspian] Node Hours: Per Job","[Warbler, Golden-winged] Node Hours: Per Job","[Dove, Turtle] Node Hours: Per Job","[Coot] Node Hours: Per Job","[Martin, Purple] Node Hours: Per Job","[Egret, Cattle] Node Hours: Per Job","[Grey, Southern] Node Hours: Per Job","[Thrush, Swainson's] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Stint, Little] Node Hours: Per Job","[Bunting, Reed] Node Hours: Per Job","[Honey-buzzard] Node Hours: Per Job","[Martin, Crag] Node Hours: Per Job","[Partridge, Red-legged] Node Hours: Per Job","[Sparrow, Savannah] Node Hours: Per Job","[Grey, Great] Node Hours: Per Job" +Day,"[Chaffinch] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Pipit, Meadow] Node Hours: Per Job","[Scoter, Velvet] Node Hours: Per Job","[Siskin] Node Hours: Per Job","[Warbler, Dusky] Node Hours: Per Job","[Duck, Ferruginous] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Grosbeak, Evening] Node Hours: Per Job","[Peregrine] Node Hours: Per Job","[Goose, Egyptian] Node Hours: Per Job","[Crane] Node Hours: Per Job","[Warbler, Yellow-browed] Node Hours: Per Job","[Tern, Sandwich] Node Hours: Per Job","[Ovenbird] Node Hours: Per Job","[Warbler, Moltoni's] Node Hours: Per Job","[Warbler, Garden] Node Hours: Per Job","[Sparrow, White-throated] Node Hours: Per Job","[Bunting, Yellow-browed] Node Hours: Per Job","[Lapwing] Node Hours: Per Job","[Sapsucker, Yellow-bellied] Node Hours: Per Job","[Ibis, Glossy] Node Hours: Per Job","[Treecreeper, Short-toed] Node Hours: Per Job","[Warbler, Sardinian] Node Hours: Per Job","[Plover, White-tailed] Node Hours: Per Job","[Thrush, Mistle] Node Hours: Per Job","[Bunting, Yellow-breasted] Node Hours: Per Job","[Gull, Ring-billed] Node Hours: Per Job","[Whimbrel] Node Hours: Per Job","[Shearwater, Cory's] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Shag] Node Hours: Per Job","[Redpoll, Lesser] Node Hours: Per Job","[Sandpiper, Spotted] Node Hours: Per Job","[Warbler, Booted] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Roller] Node Hours: Per Job","[Crane, Sandhill] Node Hours: Per Job","[Grebe, Pied-billed] Node Hours: Per Job","[Oriole, Baltimore] Node Hours: Per Job","[Grey, Lesser] Node Hours: Per Job","[Thrush, Grey-cheeked] Node Hours: Per Job","[Auk, Little] Node Hours: Per Job","[Bunting, Black-headed] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Swift, Alpine] Node Hours: Per Job","[Shrike, Long-tailed] Node Hours: Per Job","[Gallinule, Allen's] Node Hours: Per Job","[Plover, Caspian] Node Hours: Per Job","[Warbler, Golden-winged] Node Hours: Per Job","[Dove, Turtle] Node Hours: Per Job","[Coot] Node Hours: Per Job","[Martin, Purple] Node Hours: Per Job","[Egret, Cattle] Node Hours: Per Job","[Grey, Southern] Node Hours: Per Job","[Thrush, Swainson's] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Stint, Little] Node Hours: Per Job","[Bunting, Reed] Node Hours: Per Job","[Honey-buzzard] Node Hours: Per Job","[Martin, Crag] Node Hours: Per Job","[Partridge, Red-legged] Node Hours: Per Job","[Sparrow, Savannah] Node Hours: Per Job","[Grey, Great] Node Hours: Per Job" 2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,2.70416667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0 -2016-12-27,0,0,249.76000000,30.39777778,103.87259259,123.98500000,0,0,0,0,0,0,0,0,0,0,0,4.93666667,4.72138889,0,24.00000000,24.00000000,13.96533333,0,0,0,0,0,8.54972222,0,0,0,19.90555556,0,0,0,0,0,0,0,40.67777778,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0 -2016-12-28,0,204.63521605,288.00000000,192.00000000,121.84400000,110.33416667,0,0,0,0,0,0,0,33.31777778,0,0,0,24.00000000,24.00000000,0,24.00000000,9.02631944,17.63833333,4.70055556,0,13.35268330,5.03972222,0,24.00000000,3.11533951,0,5.01598392,24.00000000,10.70500000,0,0,8.78983333,0,0,0,19.51686869,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0 -2016-12-29,0,274.66666667,288.00000000,192.00000000,187.62909091,144.00000000,69.30071429,26.97722222,15.00972222,50.95777778,117.19027778,129.77777778,25.68611111,64.73166667,0,37.94944444,0,24.00000000,24.00000000,19.85234127,19.56861111,23.88776389,20.53074074,24.00000000,0,16.60273286,24.00000000,0,8.50644444,24.00000000,4.96462963,13.10756221,24.00000000,18.93416667,0,4.06163889,13.89555556,7.17361111,0,3.62000000,23.34269676,24.00000000,10.40083333,0,4.66003889,0,0,2.01966667,22.24222222,0,0,0,3.53675439,0,0,0,0,2.38309829,0,0,14.25164444,0.65402610,0,0,0,0 -2016-12-30,205.67851852,274.66666667,23.87888889,192.00000000,177.63505051,76.11166667,130.70500000,127.64305556,120.00000000,63.81250000,40.78009259,50.35000000,71.96340278,14.46204762,0,24.00027778,56.92666667,24.00000000,19.28555556,19.44072222,3.56833333,18.92284722,12.82745370,19.30611111,17.79750000,21.71949405,15.09675926,10.84229167,18.07555556,14.55335859,17.98229167,13.31263065,11.72422222,9.52657407,8.00444444,9.54880556,11.13357639,13.13555556,2.52592593,16.84687500,5.03889184,24.00000000,13.60638889,3.48631944,5.34402222,4.25015531,0.81472222,4.10559722,3.96541667,2.34500000,0,1.36229167,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.63121279,0.56942901,0.43603175,0.13315301,0.32887293,0.08049603,0.06500000,0.02760417,0.02405133 -2016-12-31,475.12888889,70.08253086,0,192.00000000,96.50900585,55.54333333,132.54333333,0,120.00000000,81.42285714,120.00000000,0,51.34208333,96.20765432,33.22259259,14.74888889,21.75842593,16.57072222,0,19.04313725,0,23.17923611,14.97629630,0,14.11222222,10.83064379,0,22.00930556,16.29814815,24.00000000,24.00000000,12.53390738,1.92791667,9.82916667,19.78805556,15.83912037,6.09461806,5.99611111,21.37166667,7.28581633,1.97834003,4.89016667,6.47384921,7.65398148,0,5.54019436,16.49222222,8.63138889,1.29611111,0,0.19661458,2.93026709,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,69.65777778,1.04561111,0.15326389,0.13894731,0.36784723,0,0,0.02281046,0.01479010 -2017-01-01,0,0,0,161.66000000,21.95481481,0,0,0,95.02916667,55.64063492,13.18611111,0.43333333,0,8.78987654,17.76722222,0,22.44571429,23.22416667,0,12.85083333,0,11.20848700,17.62535714,0,0,13.34534574,0,0,0,5.04583333,8.59888889,11.50582962,0,4.95388889,7.66472222,5.29138889,0,11.49055556,4.28111111,17.62916667,0,1.56342949,0.47638889,0,0,0,0.88986111,0,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,2.70416667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0 +2016-12-27,30.39777778,0,103.87259259,249.76000000,123.98500000,0,0,0,0,0,0,0,0,24.00000000,4.93666667,4.72138889,24.00000000,0,0,0,0,0,13.96533333,0,0,0,8.54972222,0,0,0,0,0,0,0,0,0,19.90555556,0,0,40.67777778,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0 +2016-12-28,192.00000000,204.63521605,121.84400000,288.00000000,110.33416667,0,0,0,0,0,0,0,0,24.00000000,24.00000000,24.00000000,9.02631944,0,0,13.35268330,0,4.70055556,17.63833333,33.31777778,5.03972222,3.11533951,24.00000000,0,0,0,5.01598392,0,8.78983333,10.70500000,0,0,24.00000000,0,0,19.51686869,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0 +2016-12-29,192.00000000,274.66666667,187.62909091,288.00000000,144.00000000,0,15.00972222,69.30071429,26.97722222,117.19027778,25.68611111,50.95777778,129.77777778,19.56861111,24.00000000,24.00000000,23.88776389,0,37.94944444,16.60273286,19.85234127,24.00000000,20.53074074,64.73166667,24.00000000,24.00000000,8.50644444,0,0,4.96462963,13.10756221,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,0,0,23.34269676,4.66003889,24.00000000,0,3.62000000,10.40083333,0,2.01966667,0,22.24222222,0,0,0,3.53675439,0,0,0,0,2.38309829,0,0,14.25164444,0.65402610,0,0,0,0 +2016-12-30,192.00000000,274.66666667,177.63505051,23.87888889,76.11166667,205.67851852,120.00000000,130.70500000,127.64305556,40.78009259,71.96340278,63.81250000,50.35000000,3.56833333,24.00000000,19.28555556,18.92284722,0,24.00027778,21.71949405,19.44072222,19.30611111,12.82745370,14.46204762,15.09675926,14.55335859,18.07555556,17.79750000,56.92666667,17.98229167,13.31263065,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,8.00444444,2.52592593,5.03889184,5.34402222,24.00000000,4.25015531,16.84687500,13.60638889,3.48631944,4.10559722,0.81472222,3.96541667,2.34500000,0,1.36229167,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.63121279,0.56942901,0.43603175,0.13315301,0.32887293,0.08049603,0.06500000,0.02760417,0.02405133 +2016-12-31,192.00000000,70.08253086,96.50900585,0,55.54333333,475.12888889,120.00000000,132.54333333,0,120.00000000,51.34208333,81.42285714,0,0,16.57072222,0,23.17923611,33.22259259,14.74888889,10.83064379,19.04313725,0,14.97629630,96.20765432,0,24.00000000,16.29814815,14.11222222,21.75842593,24.00000000,12.53390738,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,19.78805556,21.37166667,1.97834003,0,4.89016667,5.54019436,7.28581633,6.47384921,7.65398148,8.63138889,16.49222222,1.29611111,0,0.19661458,2.93026709,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,69.65777778,1.04561111,0.15326389,0.13894731,0.36784723,0,0,0.02281046,0.01479010 +2017-01-01,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Month-reference.csv index 5a38ccaeec..5ac40b1022 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Scaup, Lesser] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Scoter, Velvet] Node Hours: Per Job","[Siskin] Node Hours: Per Job","[Pipit, Meadow] Node Hours: Per Job","[Warbler, Dusky] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Duck, Ferruginous] Node Hours: Per Job","[Grosbeak, Evening] Node Hours: Per Job","[Goose, Egyptian] Node Hours: Per Job","[Peregrine] Node Hours: Per Job","[Warbler, Yellow-browed] Node Hours: Per Job","[Tern, Sandwich] Node Hours: Per Job","[Crane] Node Hours: Per Job","[Warbler, Moltoni's] Node Hours: Per Job","[Ovenbird] Node Hours: Per Job","[Bunting, Yellow-browed] Node Hours: Per Job","[Ibis, Glossy] Node Hours: Per Job","[Plover, White-tailed] Node Hours: Per Job","[Warbler, Sardinian] Node Hours: Per Job","[Lapwing] Node Hours: Per Job","[Bunting, Yellow-breasted] Node Hours: Per Job","[Thrush, Mistle] Node Hours: Per Job","[Treecreeper, Short-toed] Node Hours: Per Job","[Gull, Ring-billed] Node Hours: Per Job","[Sapsucker, Yellow-bellied] Node Hours: Per Job","[Warbler, Garden] Node Hours: Per Job","[Whimbrel] Node Hours: Per Job","[Sparrow, White-throated] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Shearwater, Cory's] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Shag] Node Hours: Per Job","[Warbler, Booted] Node Hours: Per Job","[Sandpiper, Spotted] Node Hours: Per Job","[Roller] Node Hours: Per Job","[Redpoll, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Crane, Sandhill] Node Hours: Per Job","[Grebe, Pied-billed] Node Hours: Per Job","[Oriole, Baltimore] Node Hours: Per Job","[Grey, Lesser] Node Hours: Per Job","[Thrush, Grey-cheeked] Node Hours: Per Job","[Auk, Little] Node Hours: Per Job","[Bunting, Black-headed] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Swift, Alpine] Node Hours: Per Job","[Shrike, Long-tailed] Node Hours: Per Job","[Gallinule, Allen's] Node Hours: Per Job","[Plover, Caspian] Node Hours: Per Job","[Warbler, Golden-winged] Node Hours: Per Job","[Dove, Turtle] Node Hours: Per Job","[Coot] Node Hours: Per Job","[Martin, Purple] Node Hours: Per Job","[Egret, Cattle] Node Hours: Per Job","[Grey, Southern] Node Hours: Per Job","[Thrush, Swainson's] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Stint, Little] Node Hours: Per Job","[Bunting, Reed] Node Hours: Per Job","[Honey-buzzard] Node Hours: Per Job","[Martin, Crag] Node Hours: Per Job","[Partridge, Red-legged] Node Hours: Per Job","[Sparrow, Savannah] Node Hours: Per Job","[Grey, Great] Node Hours: Per Job" -2016-12,824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -2017-01,0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Month,"[Chaffinch] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Pipit, Meadow] Node Hours: Per Job","[Scoter, Velvet] Node Hours: Per Job","[Siskin] Node Hours: Per Job","[Warbler, Dusky] Node Hours: Per Job","[Duck, Ferruginous] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Grosbeak, Evening] Node Hours: Per Job","[Peregrine] Node Hours: Per Job","[Goose, Egyptian] Node Hours: Per Job","[Crane] Node Hours: Per Job","[Warbler, Yellow-browed] Node Hours: Per Job","[Tern, Sandwich] Node Hours: Per Job","[Ovenbird] Node Hours: Per Job","[Warbler, Moltoni's] Node Hours: Per Job","[Warbler, Garden] Node Hours: Per Job","[Sparrow, White-throated] Node Hours: Per Job","[Bunting, Yellow-browed] Node Hours: Per Job","[Lapwing] Node Hours: Per Job","[Sapsucker, Yellow-bellied] Node Hours: Per Job","[Ibis, Glossy] Node Hours: Per Job","[Treecreeper, Short-toed] Node Hours: Per Job","[Warbler, Sardinian] Node Hours: Per Job","[Plover, White-tailed] Node Hours: Per Job","[Thrush, Mistle] Node Hours: Per Job","[Bunting, Yellow-breasted] Node Hours: Per Job","[Gull, Ring-billed] Node Hours: Per Job","[Whimbrel] Node Hours: Per Job","[Shearwater, Cory's] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Shag] Node Hours: Per Job","[Redpoll, Lesser] Node Hours: Per Job","[Sandpiper, Spotted] Node Hours: Per Job","[Warbler, Booted] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Roller] Node Hours: Per Job","[Crane, Sandhill] Node Hours: Per Job","[Grebe, Pied-billed] Node Hours: Per Job","[Oriole, Baltimore] Node Hours: Per Job","[Grey, Lesser] Node Hours: Per Job","[Thrush, Grey-cheeked] Node Hours: Per Job","[Auk, Little] Node Hours: Per Job","[Bunting, Black-headed] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Swift, Alpine] Node Hours: Per Job","[Shrike, Long-tailed] Node Hours: Per Job","[Gallinule, Allen's] Node Hours: Per Job","[Plover, Caspian] Node Hours: Per Job","[Warbler, Golden-winged] Node Hours: Per Job","[Dove, Turtle] Node Hours: Per Job","[Coot] Node Hours: Per Job","[Martin, Purple] Node Hours: Per Job","[Egret, Cattle] Node Hours: Per Job","[Grey, Southern] Node Hours: Per Job","[Thrush, Swainson's] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Stint, Little] Node Hours: Per Job","[Bunting, Reed] Node Hours: Per Job","[Honey-buzzard] Node Hours: Per Job","[Martin, Crag] Node Hours: Per Job","[Partridge, Red-legged] Node Hours: Per Job","[Sparrow, Savannah] Node Hours: Per Job","[Grey, Great] Node Hours: Per Job" +2016-12,798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +2017-01,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv index 18bbe9ed01..467b8cebd6 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Scaup, Lesser] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Scoter, Velvet] Node Hours: Per Job","[Siskin] Node Hours: Per Job","[Pipit, Meadow] Node Hours: Per Job","[Warbler, Dusky] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Duck, Ferruginous] Node Hours: Per Job","[Grosbeak, Evening] Node Hours: Per Job","[Goose, Egyptian] Node Hours: Per Job","[Peregrine] Node Hours: Per Job","[Warbler, Yellow-browed] Node Hours: Per Job","[Tern, Sandwich] Node Hours: Per Job","[Crane] Node Hours: Per Job","[Warbler, Moltoni's] Node Hours: Per Job","[Ovenbird] Node Hours: Per Job","[Bunting, Yellow-browed] Node Hours: Per Job","[Ibis, Glossy] Node Hours: Per Job","[Plover, White-tailed] Node Hours: Per Job","[Warbler, Sardinian] Node Hours: Per Job","[Lapwing] Node Hours: Per Job","[Bunting, Yellow-breasted] Node Hours: Per Job","[Thrush, Mistle] Node Hours: Per Job","[Treecreeper, Short-toed] Node Hours: Per Job","[Gull, Ring-billed] Node Hours: Per Job","[Sapsucker, Yellow-bellied] Node Hours: Per Job","[Warbler, Garden] Node Hours: Per Job","[Whimbrel] Node Hours: Per Job","[Sparrow, White-throated] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Shearwater, Cory's] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Shag] Node Hours: Per Job","[Warbler, Booted] Node Hours: Per Job","[Sandpiper, Spotted] Node Hours: Per Job","[Roller] Node Hours: Per Job","[Redpoll, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Crane, Sandhill] Node Hours: Per Job","[Grebe, Pied-billed] Node Hours: Per Job","[Oriole, Baltimore] Node Hours: Per Job","[Grey, Lesser] Node Hours: Per Job","[Thrush, Grey-cheeked] Node Hours: Per Job","[Auk, Little] Node Hours: Per Job","[Bunting, Black-headed] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Swift, Alpine] Node Hours: Per Job","[Shrike, Long-tailed] Node Hours: Per Job","[Gallinule, Allen's] Node Hours: Per Job","[Plover, Caspian] Node Hours: Per Job","[Warbler, Golden-winged] Node Hours: Per Job","[Dove, Turtle] Node Hours: Per Job","[Coot] Node Hours: Per Job","[Martin, Purple] Node Hours: Per Job","[Egret, Cattle] Node Hours: Per Job","[Grey, Southern] Node Hours: Per Job","[Thrush, Swainson's] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Stint, Little] Node Hours: Per Job","[Bunting, Reed] Node Hours: Per Job","[Honey-buzzard] Node Hours: Per Job","[Martin, Crag] Node Hours: Per Job","[Partridge, Red-legged] Node Hours: Per Job","[Sparrow, Savannah] Node Hours: Per Job","[Grey, Great] Node Hours: Per Job" -"2016 Q4",824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -"2017 Q1",0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Quarter,"[Chaffinch] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Pipit, Meadow] Node Hours: Per Job","[Scoter, Velvet] Node Hours: Per Job","[Siskin] Node Hours: Per Job","[Warbler, Dusky] Node Hours: Per Job","[Duck, Ferruginous] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Grosbeak, Evening] Node Hours: Per Job","[Peregrine] Node Hours: Per Job","[Goose, Egyptian] Node Hours: Per Job","[Crane] Node Hours: Per Job","[Warbler, Yellow-browed] Node Hours: Per Job","[Tern, Sandwich] Node Hours: Per Job","[Ovenbird] Node Hours: Per Job","[Warbler, Moltoni's] Node Hours: Per Job","[Warbler, Garden] Node Hours: Per Job","[Sparrow, White-throated] Node Hours: Per Job","[Bunting, Yellow-browed] Node Hours: Per Job","[Lapwing] Node Hours: Per Job","[Sapsucker, Yellow-bellied] Node Hours: Per Job","[Ibis, Glossy] Node Hours: Per Job","[Treecreeper, Short-toed] Node Hours: Per Job","[Warbler, Sardinian] Node Hours: Per Job","[Plover, White-tailed] Node Hours: Per Job","[Thrush, Mistle] Node Hours: Per Job","[Bunting, Yellow-breasted] Node Hours: Per Job","[Gull, Ring-billed] Node Hours: Per Job","[Whimbrel] Node Hours: Per Job","[Shearwater, Cory's] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Shag] Node Hours: Per Job","[Redpoll, Lesser] Node Hours: Per Job","[Sandpiper, Spotted] Node Hours: Per Job","[Warbler, Booted] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Roller] Node Hours: Per Job","[Crane, Sandhill] Node Hours: Per Job","[Grebe, Pied-billed] Node Hours: Per Job","[Oriole, Baltimore] Node Hours: Per Job","[Grey, Lesser] Node Hours: Per Job","[Thrush, Grey-cheeked] Node Hours: Per Job","[Auk, Little] Node Hours: Per Job","[Bunting, Black-headed] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Swift, Alpine] Node Hours: Per Job","[Shrike, Long-tailed] Node Hours: Per Job","[Gallinule, Allen's] Node Hours: Per Job","[Plover, Caspian] Node Hours: Per Job","[Warbler, Golden-winged] Node Hours: Per Job","[Dove, Turtle] Node Hours: Per Job","[Coot] Node Hours: Per Job","[Martin, Purple] Node Hours: Per Job","[Egret, Cattle] Node Hours: Per Job","[Grey, Southern] Node Hours: Per Job","[Thrush, Swainson's] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Stint, Little] Node Hours: Per Job","[Bunting, Reed] Node Hours: Per Job","[Honey-buzzard] Node Hours: Per Job","[Martin, Crag] Node Hours: Per Job","[Partridge, Red-legged] Node Hours: Per Job","[Sparrow, Savannah] Node Hours: Per Job","[Grey, Great] Node Hours: Per Job" +"2016 Q4",798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +"2017 Q1",161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Year-reference.csv index e874924b2d..0c3043ab42 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Scaup, Lesser] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Scoter, Velvet] Node Hours: Per Job","[Siskin] Node Hours: Per Job","[Pipit, Meadow] Node Hours: Per Job","[Warbler, Dusky] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Duck, Ferruginous] Node Hours: Per Job","[Grosbeak, Evening] Node Hours: Per Job","[Goose, Egyptian] Node Hours: Per Job","[Peregrine] Node Hours: Per Job","[Warbler, Yellow-browed] Node Hours: Per Job","[Tern, Sandwich] Node Hours: Per Job","[Crane] Node Hours: Per Job","[Warbler, Moltoni's] Node Hours: Per Job","[Ovenbird] Node Hours: Per Job","[Bunting, Yellow-browed] Node Hours: Per Job","[Ibis, Glossy] Node Hours: Per Job","[Plover, White-tailed] Node Hours: Per Job","[Warbler, Sardinian] Node Hours: Per Job","[Lapwing] Node Hours: Per Job","[Bunting, Yellow-breasted] Node Hours: Per Job","[Thrush, Mistle] Node Hours: Per Job","[Treecreeper, Short-toed] Node Hours: Per Job","[Gull, Ring-billed] Node Hours: Per Job","[Sapsucker, Yellow-bellied] Node Hours: Per Job","[Warbler, Garden] Node Hours: Per Job","[Whimbrel] Node Hours: Per Job","[Sparrow, White-throated] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Shearwater, Cory's] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Shag] Node Hours: Per Job","[Warbler, Booted] Node Hours: Per Job","[Sandpiper, Spotted] Node Hours: Per Job","[Roller] Node Hours: Per Job","[Redpoll, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Crane, Sandhill] Node Hours: Per Job","[Grebe, Pied-billed] Node Hours: Per Job","[Oriole, Baltimore] Node Hours: Per Job","[Grey, Lesser] Node Hours: Per Job","[Thrush, Grey-cheeked] Node Hours: Per Job","[Auk, Little] Node Hours: Per Job","[Bunting, Black-headed] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Swift, Alpine] Node Hours: Per Job","[Shrike, Long-tailed] Node Hours: Per Job","[Gallinule, Allen's] Node Hours: Per Job","[Plover, Caspian] Node Hours: Per Job","[Warbler, Golden-winged] Node Hours: Per Job","[Dove, Turtle] Node Hours: Per Job","[Coot] Node Hours: Per Job","[Martin, Purple] Node Hours: Per Job","[Egret, Cattle] Node Hours: Per Job","[Grey, Southern] Node Hours: Per Job","[Thrush, Swainson's] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Stint, Little] Node Hours: Per Job","[Bunting, Reed] Node Hours: Per Job","[Honey-buzzard] Node Hours: Per Job","[Martin, Crag] Node Hours: Per Job","[Partridge, Red-legged] Node Hours: Per Job","[Sparrow, Savannah] Node Hours: Per Job","[Grey, Great] Node Hours: Per Job" -2016,824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -2017,0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Year,"[Chaffinch] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Pipit, Meadow] Node Hours: Per Job","[Scoter, Velvet] Node Hours: Per Job","[Siskin] Node Hours: Per Job","[Warbler, Dusky] Node Hours: Per Job","[Duck, Ferruginous] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Grosbeak, Evening] Node Hours: Per Job","[Peregrine] Node Hours: Per Job","[Goose, Egyptian] Node Hours: Per Job","[Crane] Node Hours: Per Job","[Warbler, Yellow-browed] Node Hours: Per Job","[Tern, Sandwich] Node Hours: Per Job","[Ovenbird] Node Hours: Per Job","[Warbler, Moltoni's] Node Hours: Per Job","[Warbler, Garden] Node Hours: Per Job","[Sparrow, White-throated] Node Hours: Per Job","[Bunting, Yellow-browed] Node Hours: Per Job","[Lapwing] Node Hours: Per Job","[Sapsucker, Yellow-bellied] Node Hours: Per Job","[Ibis, Glossy] Node Hours: Per Job","[Treecreeper, Short-toed] Node Hours: Per Job","[Warbler, Sardinian] Node Hours: Per Job","[Plover, White-tailed] Node Hours: Per Job","[Thrush, Mistle] Node Hours: Per Job","[Bunting, Yellow-breasted] Node Hours: Per Job","[Gull, Ring-billed] Node Hours: Per Job","[Whimbrel] Node Hours: Per Job","[Shearwater, Cory's] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Shag] Node Hours: Per Job","[Redpoll, Lesser] Node Hours: Per Job","[Sandpiper, Spotted] Node Hours: Per Job","[Warbler, Booted] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Roller] Node Hours: Per Job","[Crane, Sandhill] Node Hours: Per Job","[Grebe, Pied-billed] Node Hours: Per Job","[Oriole, Baltimore] Node Hours: Per Job","[Grey, Lesser] Node Hours: Per Job","[Thrush, Grey-cheeked] Node Hours: Per Job","[Auk, Little] Node Hours: Per Job","[Bunting, Black-headed] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Swift, Alpine] Node Hours: Per Job","[Shrike, Long-tailed] Node Hours: Per Job","[Gallinule, Allen's] Node Hours: Per Job","[Plover, Caspian] Node Hours: Per Job","[Warbler, Golden-winged] Node Hours: Per Job","[Dove, Turtle] Node Hours: Per Job","[Coot] Node Hours: Per Job","[Martin, Purple] Node Hours: Per Job","[Egret, Cattle] Node Hours: Per Job","[Grey, Southern] Node Hours: Per Job","[Thrush, Swainson's] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Stint, Little] Node Hours: Per Job","[Bunting, Reed] Node Hours: Per Job","[Honey-buzzard] Node Hours: Per Job","[Martin, Crag] Node Hours: Per Job","[Partridge, Red-legged] Node Hours: Per Job","[Sparrow, Savannah] Node Hours: Per Job","[Grey, Great] Node Hours: Per Job" +2016,798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +2017,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Day-reference.csv index 68ce959394..c5b6464efe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Warbler, Dusky",224.0000,72.73696905059123 +"Scaup, Lesser",183.1111,8.380524814332512 +"Warbler, Yellow-browed",160.0000,0 +"Goose, Egyptian",112.0000,0 +"Scoter, Velvet",112.0000,22.627416997969522 +"Gallinule, Allen's",108.0000,0 +Crane,96.0000,0 +"Pipit, Meadow",96.0000,0 +Smew,72.0000,0 +Chaffinch,64.0000,0 +"Duck, Ferruginous",60.0000,0 +Peregrine,60.0000,0 +Siskin,60.0000,8.48528137423857 +"Grosbeak, Evening",56.0000,0 +Whimbrel,48.8571,4.610167493255085 +"Swift, Alpine",44.0000,3.872983346207417 +Dunlin,42.4937,2.1967513051929584 +"Warbler, Sardinian",29.2444,2.796321314683548 +"Bunting, Yellow-browed",28.0000,8.48528137423857 +"Warbler, Golden-winged",24.0145,1.2257293401539964 +"Sparrow, White-throated",23.1111,0.8380524817467393 +"Ibis, Glossy",20.0000,0 +"Martin, Crag",20.0000,0 +Roller,18.7500,11.90784930203603 +"Crane, Sandhill",17.6389,0.4033294968166851 +"Shrike, Long-tailed",17.6250,1.5709148409446008 +Ovenbird,16.0000,0 +"Partridge, Red-legged",16.0000,0 +Shag,14.9091,1.9304200094068276 +"Stint, Little",14.1818,0.600525691825461 +"Plover, Caspian",12.0000,0 +"Plover, White-tailed",12.0000,0 +"Sandpiper, Spotted",12.0000,0 +"Thrush, Mistle",12.0000,0 +"Auk, Little",10.9000,0.7273238618387268 +"Warbler, Garden",10.8868,0.562036409390535 +"Warbler, Hooded",10.0952,0.435940674754997 +Honey-buzzard,9.4154,0.00816310989773516 +"Bunting, Yellow-breasted",9.3333,1.2171612393263744 +"Oriole, Baltimore",8.7000,1.5642889758609182 +"Bunting, Reed",8.2161,0.0205625896517565 +"Dove, Turtle",8.0081,0.005754675642337485 +Fieldfare,8.0000,0 +"Shearwater, Cory's",8.0000,0 +"Treecreeper, Short-toed",7.8182,1.2623544244155334 +"Thrush, Swainson's",4.0842,0.08409243973613295 +"Redpoll, Lesser",4.0000,0 +"Sapsucker, Yellow-bellied",4.0000,0 +"Thrush, Grey-cheeked",2.2970,0.1689240965440023 +"Warbler, Booted",1.7333,0.7084673076458524 +"Bunting, Black-headed",1.0000,0 +Coot,1.0000,0 +"Egret, Cattle",1.0000,0 +"Grebe, Pied-billed",1.0000,0 +"Grey, Great",1.0000,0 +"Grey, Lesser",1.0000,0 +"Grey, Southern",1.0000,0 +"Gull, Ring-billed",1.0000,0 +"Harrier, Hen",1.0000,0 +Jackdaw,1.0000,0 +Lapwing,1.0000,0 +"Martin, Purple",1.0000,0 +Moorhen,1.0000,0 +"Sparrow, Savannah",1.0000,0 +"Tern, Sandwich",1.0000,0 +"Warbler, Moltoni's",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Month-reference.csv index 68ce959394..c5b6464efe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Warbler, Dusky",224.0000,72.73696905059123 +"Scaup, Lesser",183.1111,8.380524814332512 +"Warbler, Yellow-browed",160.0000,0 +"Goose, Egyptian",112.0000,0 +"Scoter, Velvet",112.0000,22.627416997969522 +"Gallinule, Allen's",108.0000,0 +Crane,96.0000,0 +"Pipit, Meadow",96.0000,0 +Smew,72.0000,0 +Chaffinch,64.0000,0 +"Duck, Ferruginous",60.0000,0 +Peregrine,60.0000,0 +Siskin,60.0000,8.48528137423857 +"Grosbeak, Evening",56.0000,0 +Whimbrel,48.8571,4.610167493255085 +"Swift, Alpine",44.0000,3.872983346207417 +Dunlin,42.4937,2.1967513051929584 +"Warbler, Sardinian",29.2444,2.796321314683548 +"Bunting, Yellow-browed",28.0000,8.48528137423857 +"Warbler, Golden-winged",24.0145,1.2257293401539964 +"Sparrow, White-throated",23.1111,0.8380524817467393 +"Ibis, Glossy",20.0000,0 +"Martin, Crag",20.0000,0 +Roller,18.7500,11.90784930203603 +"Crane, Sandhill",17.6389,0.4033294968166851 +"Shrike, Long-tailed",17.6250,1.5709148409446008 +Ovenbird,16.0000,0 +"Partridge, Red-legged",16.0000,0 +Shag,14.9091,1.9304200094068276 +"Stint, Little",14.1818,0.600525691825461 +"Plover, Caspian",12.0000,0 +"Plover, White-tailed",12.0000,0 +"Sandpiper, Spotted",12.0000,0 +"Thrush, Mistle",12.0000,0 +"Auk, Little",10.9000,0.7273238618387268 +"Warbler, Garden",10.8868,0.562036409390535 +"Warbler, Hooded",10.0952,0.435940674754997 +Honey-buzzard,9.4154,0.00816310989773516 +"Bunting, Yellow-breasted",9.3333,1.2171612393263744 +"Oriole, Baltimore",8.7000,1.5642889758609182 +"Bunting, Reed",8.2161,0.0205625896517565 +"Dove, Turtle",8.0081,0.005754675642337485 +Fieldfare,8.0000,0 +"Shearwater, Cory's",8.0000,0 +"Treecreeper, Short-toed",7.8182,1.2623544244155334 +"Thrush, Swainson's",4.0842,0.08409243973613295 +"Redpoll, Lesser",4.0000,0 +"Sapsucker, Yellow-bellied",4.0000,0 +"Thrush, Grey-cheeked",2.2970,0.1689240965440023 +"Warbler, Booted",1.7333,0.7084673076458524 +"Bunting, Black-headed",1.0000,0 +Coot,1.0000,0 +"Egret, Cattle",1.0000,0 +"Grebe, Pied-billed",1.0000,0 +"Grey, Great",1.0000,0 +"Grey, Lesser",1.0000,0 +"Grey, Southern",1.0000,0 +"Gull, Ring-billed",1.0000,0 +"Harrier, Hen",1.0000,0 +Jackdaw,1.0000,0 +Lapwing,1.0000,0 +"Martin, Purple",1.0000,0 +Moorhen,1.0000,0 +"Sparrow, Savannah",1.0000,0 +"Tern, Sandwich",1.0000,0 +"Warbler, Moltoni's",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..c5b6464efe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Warbler, Dusky",224.0000,72.73696905059123 +"Scaup, Lesser",183.1111,8.380524814332512 +"Warbler, Yellow-browed",160.0000,0 +"Goose, Egyptian",112.0000,0 +"Scoter, Velvet",112.0000,22.627416997969522 +"Gallinule, Allen's",108.0000,0 +Crane,96.0000,0 +"Pipit, Meadow",96.0000,0 +Smew,72.0000,0 +Chaffinch,64.0000,0 +"Duck, Ferruginous",60.0000,0 +Peregrine,60.0000,0 +Siskin,60.0000,8.48528137423857 +"Grosbeak, Evening",56.0000,0 +Whimbrel,48.8571,4.610167493255085 +"Swift, Alpine",44.0000,3.872983346207417 +Dunlin,42.4937,2.1967513051929584 +"Warbler, Sardinian",29.2444,2.796321314683548 +"Bunting, Yellow-browed",28.0000,8.48528137423857 +"Warbler, Golden-winged",24.0145,1.2257293401539964 +"Sparrow, White-throated",23.1111,0.8380524817467393 +"Ibis, Glossy",20.0000,0 +"Martin, Crag",20.0000,0 +Roller,18.7500,11.90784930203603 +"Crane, Sandhill",17.6389,0.4033294968166851 +"Shrike, Long-tailed",17.6250,1.5709148409446008 +Ovenbird,16.0000,0 +"Partridge, Red-legged",16.0000,0 +Shag,14.9091,1.9304200094068276 +"Stint, Little",14.1818,0.600525691825461 +"Plover, Caspian",12.0000,0 +"Plover, White-tailed",12.0000,0 +"Sandpiper, Spotted",12.0000,0 +"Thrush, Mistle",12.0000,0 +"Auk, Little",10.9000,0.7273238618387268 +"Warbler, Garden",10.8868,0.562036409390535 +"Warbler, Hooded",10.0952,0.435940674754997 +Honey-buzzard,9.4154,0.00816310989773516 +"Bunting, Yellow-breasted",9.3333,1.2171612393263744 +"Oriole, Baltimore",8.7000,1.5642889758609182 +"Bunting, Reed",8.2161,0.0205625896517565 +"Dove, Turtle",8.0081,0.005754675642337485 +Fieldfare,8.0000,0 +"Shearwater, Cory's",8.0000,0 +"Treecreeper, Short-toed",7.8182,1.2623544244155334 +"Thrush, Swainson's",4.0842,0.08409243973613295 +"Redpoll, Lesser",4.0000,0 +"Sapsucker, Yellow-bellied",4.0000,0 +"Thrush, Grey-cheeked",2.2970,0.1689240965440023 +"Warbler, Booted",1.7333,0.7084673076458524 +"Bunting, Black-headed",1.0000,0 +Coot,1.0000,0 +"Egret, Cattle",1.0000,0 +"Grebe, Pied-billed",1.0000,0 +"Grey, Great",1.0000,0 +"Grey, Lesser",1.0000,0 +"Grey, Southern",1.0000,0 +"Gull, Ring-billed",1.0000,0 +"Harrier, Hen",1.0000,0 +Jackdaw,1.0000,0 +Lapwing,1.0000,0 +"Martin, Purple",1.0000,0 +Moorhen,1.0000,0 +"Sparrow, Savannah",1.0000,0 +"Tern, Sandwich",1.0000,0 +"Warbler, Moltoni's",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Year-reference.csv index 68ce959394..c5b6464efe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Warbler, Dusky",224.0000,72.73696905059123 +"Scaup, Lesser",183.1111,8.380524814332512 +"Warbler, Yellow-browed",160.0000,0 +"Goose, Egyptian",112.0000,0 +"Scoter, Velvet",112.0000,22.627416997969522 +"Gallinule, Allen's",108.0000,0 +Crane,96.0000,0 +"Pipit, Meadow",96.0000,0 +Smew,72.0000,0 +Chaffinch,64.0000,0 +"Duck, Ferruginous",60.0000,0 +Peregrine,60.0000,0 +Siskin,60.0000,8.48528137423857 +"Grosbeak, Evening",56.0000,0 +Whimbrel,48.8571,4.610167493255085 +"Swift, Alpine",44.0000,3.872983346207417 +Dunlin,42.4937,2.1967513051929584 +"Warbler, Sardinian",29.2444,2.796321314683548 +"Bunting, Yellow-browed",28.0000,8.48528137423857 +"Warbler, Golden-winged",24.0145,1.2257293401539964 +"Sparrow, White-throated",23.1111,0.8380524817467393 +"Ibis, Glossy",20.0000,0 +"Martin, Crag",20.0000,0 +Roller,18.7500,11.90784930203603 +"Crane, Sandhill",17.6389,0.4033294968166851 +"Shrike, Long-tailed",17.6250,1.5709148409446008 +Ovenbird,16.0000,0 +"Partridge, Red-legged",16.0000,0 +Shag,14.9091,1.9304200094068276 +"Stint, Little",14.1818,0.600525691825461 +"Plover, Caspian",12.0000,0 +"Plover, White-tailed",12.0000,0 +"Sandpiper, Spotted",12.0000,0 +"Thrush, Mistle",12.0000,0 +"Auk, Little",10.9000,0.7273238618387268 +"Warbler, Garden",10.8868,0.562036409390535 +"Warbler, Hooded",10.0952,0.435940674754997 +Honey-buzzard,9.4154,0.00816310989773516 +"Bunting, Yellow-breasted",9.3333,1.2171612393263744 +"Oriole, Baltimore",8.7000,1.5642889758609182 +"Bunting, Reed",8.2161,0.0205625896517565 +"Dove, Turtle",8.0081,0.005754675642337485 +Fieldfare,8.0000,0 +"Shearwater, Cory's",8.0000,0 +"Treecreeper, Short-toed",7.8182,1.2623544244155334 +"Thrush, Swainson's",4.0842,0.08409243973613295 +"Redpoll, Lesser",4.0000,0 +"Sapsucker, Yellow-bellied",4.0000,0 +"Thrush, Grey-cheeked",2.2970,0.1689240965440023 +"Warbler, Booted",1.7333,0.7084673076458524 +"Bunting, Black-headed",1.0000,0 +Coot,1.0000,0 +"Egret, Cattle",1.0000,0 +"Grebe, Pied-billed",1.0000,0 +"Grey, Great",1.0000,0 +"Grey, Lesser",1.0000,0 +"Grey, Southern",1.0000,0 +"Gull, Ring-billed",1.0000,0 +"Harrier, Hen",1.0000,0 +Jackdaw,1.0000,0 +Lapwing,1.0000,0 +"Martin, Purple",1.0000,0 +Moorhen,1.0000,0 +"Sparrow, Savannah",1.0000,0 +"Tern, Sandwich",1.0000,0 +"Warbler, Moltoni's",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/timeseries-Day-reference.csv index adb3c5e87b..347c0b02fc 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Warbler, Dusky] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Warbler, Yellow-browed] Job Size: Per Job (Core Count)","[Scoter, Velvet] Job Size: Per Job (Core Count)","[Goose, Egyptian] Job Size: Per Job (Core Count)","[Gallinule, Allen's] Job Size: Per Job (Core Count)","[Crane] Job Size: Per Job (Core Count)","[Pipit, Meadow] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Duck, Ferruginous] Job Size: Per Job (Core Count)","[Peregrine] Job Size: Per Job (Core Count)","[Siskin] Job Size: Per Job (Core Count)","[Grosbeak, Evening] Job Size: Per Job (Core Count)","[Whimbrel] Job Size: Per Job (Core Count)","[Swift, Alpine] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Bunting, Yellow-browed] Job Size: Per Job (Core Count)","[Warbler, Sardinian] Job Size: Per Job (Core Count)","[Warbler, Golden-winged] Job Size: Per Job (Core Count)","[Roller] Job Size: Per Job (Core Count)","[Sparrow, White-throated] Job Size: Per Job (Core Count)","[Ibis, Glossy] Job Size: Per Job (Core Count)","[Martin, Crag] Job Size: Per Job (Core Count)","[Crane, Sandhill] Job Size: Per Job (Core Count)","[Shag] Job Size: Per Job (Core Count)","[Shrike, Long-tailed] Job Size: Per Job (Core Count)","[Ovenbird] Job Size: Per Job (Core Count)","[Partridge, Red-legged] Job Size: Per Job (Core Count)","[Stint, Little] Job Size: Per Job (Core Count)","[Warbler, Garden] Job Size: Per Job (Core Count)","[Plover, Caspian] Job Size: Per Job (Core Count)","[Plover, White-tailed] Job Size: Per Job (Core Count)","[Sandpiper, Spotted] Job Size: Per Job (Core Count)","[Thrush, Mistle] Job Size: Per Job (Core Count)","[Auk, Little] Job Size: Per Job (Core Count)","[Bunting, Yellow-breasted] Job Size: Per Job (Core Count)","[Oriole, Baltimore] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Honey-buzzard] Job Size: Per Job (Core Count)","[Bunting, Reed] Job Size: Per Job (Core Count)","[Dove, Turtle] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[Shearwater, Cory's] Job Size: Per Job (Core Count)","[Treecreeper, Short-toed] Job Size: Per Job (Core Count)","[Thrush, Swainson's] Job Size: Per Job (Core Count)","[Redpoll, Lesser] Job Size: Per Job (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Per Job (Core Count)","[Warbler, Booted] Job Size: Per Job (Core Count)","[Thrush, Grey-cheeked] Job Size: Per Job (Core Count)","[Bunting, Black-headed] Job Size: Per Job (Core Count)","[Coot] Job Size: Per Job (Core Count)","[Egret, Cattle] Job Size: Per Job (Core Count)","[Grebe, Pied-billed] Job Size: Per Job (Core Count)","[Grey, Great] Job Size: Per Job (Core Count)","[Grey, Lesser] Job Size: Per Job (Core Count)","[Grey, Southern] Job Size: Per Job (Core Count)","[Gull, Ring-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Lapwing] Job Size: Per Job (Core Count)","[Martin, Purple] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Sparrow, Savannah] Job Size: Per Job (Core Count)","[Tern, Sandwich] Job Size: Per Job (Core Count)","[Warbler, Moltoni's] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,0,12.0000,0,0,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0 -2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,0,72.0000,0,0,0,0,0,0,0,0,0,0,0,32.0000,0,0,16.0000,0,0,16.0000,0,0,0,0,0,16.0000,12.0000,0,1.0000,28.0000,12.0000,0,0,8.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,1.0000 -2016-12-28,0,183.1111,0,144.0000,0,0,0,96.0000,0,64.0000,0,0,60.0000,0,0,0,0,0,32.0000,0,0,0,20.0000,0,24.7273,22.0000,0,16.0000,0,0,16.0000,0,12.0000,0,12.0000,0,16.0000,12.0000,8.0000,1.0000,28.3077,12.0000,0,0,8.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,1.0000,0,1.0000,1.0000 -2016-12-29,0,183.1111,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,0,0,0,40.0000,32.0000,0,0,0,20.0000,0,22.1667,18.6667,1.0000,16.0000,0,0,16.0000,0,12.0000,12.0000,12.0000,5.0000,9.6000,12.0000,8.0000,9.5181,21.1200,8.4211,0,8.0000,8.0000,8.6154,4.0000,4.0000,12.0000,2.0000,0,0,0,1.0000,0,0,0,0,1.0000,0,1.0000,0,1.0000,0,1.0000,1.0000 -2016-12-30,224.0000,183.1111,160.0000,112.0000,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,72.0000,48.0000,44.0444,28.0000,26.6286,24.6500,23.3333,0,20.0000,20.0000,18.1702,15.5556,15.2500,16.0000,16.0000,13.1429,16.0000,0,12.0000,12.0000,12.0000,5.0000,9.3333,12.0000,9.5000,9.0927,8.1004,8.0229,8.0000,8.0000,7.7778,4.0842,4.0000,4.0000,1.7333,9.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,336.0000,183.1111,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,48.0000,0,52.0000,64.0000,92.4000,40.0000,41.7778,24.4615,32.5000,23.1111,0,0,16.4337,17.3333,13.6667,16.0000,0,16.0000,10.3542,12.0000,0,12.0000,12.0000,11.4286,8.0000,23.2000,10.7500,9.8834,8.1216,8.0000,8.0000,8.0000,8.0000,64.0000,4.0000,4.0000,1.0000,2.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,0 -2017-01-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.0000,60.0000,0,0,46.2857,32.0000,37.8993,0,39.1111,24.0000,5.0000,23.1111,0,0,0,24.0000,20.0000,16.0000,0,0,10.5532,12.0000,0,12.0000,12.0000,12.0000,0,6.0385,0,9.1392,16.0000,8.0000,8.0000,8.0000,8.0000,0,4.0000,4.0000,0,2.0000,0,1.0000,1.0000,0,0,0,1.0000,0,0,0,1.0000,1.0000,1.0000,1.0000,0,0 +Day,"[Warbler, Dusky] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Warbler, Yellow-browed] Job Size: Per Job (Core Count)","[Goose, Egyptian] Job Size: Per Job (Core Count)","[Scoter, Velvet] Job Size: Per Job (Core Count)","[Gallinule, Allen's] Job Size: Per Job (Core Count)","[Crane] Job Size: Per Job (Core Count)","[Pipit, Meadow] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Duck, Ferruginous] Job Size: Per Job (Core Count)","[Peregrine] Job Size: Per Job (Core Count)","[Siskin] Job Size: Per Job (Core Count)","[Grosbeak, Evening] Job Size: Per Job (Core Count)","[Whimbrel] Job Size: Per Job (Core Count)","[Swift, Alpine] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Sardinian] Job Size: Per Job (Core Count)","[Bunting, Yellow-browed] Job Size: Per Job (Core Count)","[Warbler, Golden-winged] Job Size: Per Job (Core Count)","[Sparrow, White-throated] Job Size: Per Job (Core Count)","[Ibis, Glossy] Job Size: Per Job (Core Count)","[Martin, Crag] Job Size: Per Job (Core Count)","[Roller] Job Size: Per Job (Core Count)","[Crane, Sandhill] Job Size: Per Job (Core Count)","[Shrike, Long-tailed] Job Size: Per Job (Core Count)","[Ovenbird] Job Size: Per Job (Core Count)","[Partridge, Red-legged] Job Size: Per Job (Core Count)","[Shag] Job Size: Per Job (Core Count)","[Stint, Little] Job Size: Per Job (Core Count)","[Plover, Caspian] Job Size: Per Job (Core Count)","[Plover, White-tailed] Job Size: Per Job (Core Count)","[Sandpiper, Spotted] Job Size: Per Job (Core Count)","[Thrush, Mistle] Job Size: Per Job (Core Count)","[Auk, Little] Job Size: Per Job (Core Count)","[Warbler, Garden] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Honey-buzzard] Job Size: Per Job (Core Count)","[Bunting, Yellow-breasted] Job Size: Per Job (Core Count)","[Oriole, Baltimore] Job Size: Per Job (Core Count)","[Bunting, Reed] Job Size: Per Job (Core Count)","[Dove, Turtle] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[Shearwater, Cory's] Job Size: Per Job (Core Count)","[Treecreeper, Short-toed] Job Size: Per Job (Core Count)","[Thrush, Swainson's] Job Size: Per Job (Core Count)","[Redpoll, Lesser] Job Size: Per Job (Core Count)","[Sapsucker, Yellow-bellied] Job Size: Per Job (Core Count)","[Thrush, Grey-cheeked] Job Size: Per Job (Core Count)","[Warbler, Booted] Job Size: Per Job (Core Count)","[Bunting, Black-headed] Job Size: Per Job (Core Count)","[Coot] Job Size: Per Job (Core Count)","[Egret, Cattle] Job Size: Per Job (Core Count)","[Grebe, Pied-billed] Job Size: Per Job (Core Count)","[Grey, Great] Job Size: Per Job (Core Count)","[Grey, Lesser] Job Size: Per Job (Core Count)","[Grey, Southern] Job Size: Per Job (Core Count)","[Gull, Ring-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Lapwing] Job Size: Per Job (Core Count)","[Martin, Purple] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Sparrow, Savannah] Job Size: Per Job (Core Count)","[Tern, Sandwich] Job Size: Per Job (Core Count)","[Warbler, Moltoni's] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.0000,0,0,0,12.0000,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0 +2016-12-27,0,0,0,0,144.0000,0,0,96.0000,0,64.0000,0,0,72.0000,0,0,0,0,0,0,0,0,0,0,0,32.0000,0,16.0000,0,0,0,0,0,0,0,0,16.0000,0,1.0000,16.0000,12.0000,28.0000,12.0000,0,0,8.0000,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,1.0000 +2016-12-28,0,183.1111,0,0,144.0000,0,0,96.0000,0,64.0000,0,0,60.0000,0,0,0,0,32.0000,0,0,0,20.0000,0,0,24.7273,0,16.0000,0,22.0000,0,0,12.0000,0,12.0000,0,16.0000,8.0000,1.0000,16.0000,12.0000,28.3077,12.0000,0,0,8.0000,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,1.0000,0,1.0000,0,1.0000,1.0000 +2016-12-29,0,183.1111,160.0000,112.0000,144.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,0,0,0,32.0000,40.0000,0,0,20.0000,0,0,22.1667,1.0000,16.0000,0,18.6667,0,0,12.0000,12.0000,12.0000,5.0000,16.0000,8.0000,9.5181,9.6000,12.0000,21.1200,8.4211,0,8.0000,8.0000,8.6154,4.0000,4.0000,2.0000,12.0000,0,0,0,1.0000,0,0,0,0,1.0000,0,1.0000,0,1.0000,0,1.0000,1.0000 +2016-12-30,224.0000,183.1111,160.0000,112.0000,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,72.0000,48.0000,44.0444,26.6286,28.0000,24.6500,0,20.0000,20.0000,23.3333,18.1702,15.2500,16.0000,16.0000,15.5556,13.1429,0,12.0000,12.0000,12.0000,5.0000,16.0000,9.5000,9.0927,9.3333,12.0000,8.1004,8.0229,8.0000,8.0000,7.7778,4.0842,4.0000,4.0000,9.5000,1.7333,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,336.0000,183.1111,0,112.0000,0,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,48.0000,0,52.0000,64.0000,92.4000,41.7778,40.0000,24.4615,23.1111,0,0,32.5000,16.4337,13.6667,16.0000,0,17.3333,16.0000,12.0000,0,12.0000,12.0000,11.4286,10.3542,10.7500,9.8834,8.0000,23.2000,8.1216,8.0000,8.0000,8.0000,8.0000,64.0000,4.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,0 +2017-01-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.0000,60.0000,0,0,46.2857,32.0000,37.8993,39.1111,0,24.0000,23.1111,0,0,5.0000,0,20.0000,16.0000,0,24.0000,0,12.0000,0,12.0000,12.0000,12.0000,10.5532,0,9.1392,0,6.0385,16.0000,8.0000,8.0000,8.0000,8.0000,0,4.0000,4.0000,2.0000,0,0,1.0000,1.0000,0,0,0,1.0000,0,0,0,1.0000,1.0000,1.0000,1.0000,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..fa89dcf3f8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Normalized (% of Total Cores)" +"Warbler, Dusky",5.600000000 +"Scaup, Lesser",4.577777778 +"Warbler, Yellow-browed",4.000000000 +"Goose, Egyptian",2.800000000 +"Gallinule, Allen's",2.700000000 +Crane,2.400000000 +"Pipit, Meadow",2.400000000 +Smew,1.800000000 +Chaffinch,1.600000000 +"Duck, Ferruginous",1.500000000 +Peregrine,1.500000000 +Siskin,1.500000000 +"Grosbeak, Evening",1.400000000 +"Scoter, Velvet",1.400000000 +Whimbrel,1.221428571 +"Swift, Alpine",1.100000000 +Dunlin,1.062343096 +"Warbler, Golden-winged",0.600362319 +"Sparrow, White-throated",0.577777778 +"Ibis, Glossy",0.500000000 +"Martin, Crag",0.500000000 +Roller,0.468750000 +Ovenbird,0.400000000 +"Partridge, Red-legged",0.400000000 +"Warbler, Sardinian",0.365555556 +"Bunting, Yellow-browed",0.350000000 +"Plover, White-tailed",0.300000000 +"Sandpiper, Spotted",0.300000000 +"Thrush, Mistle",0.300000000 +"Auk, Little",0.272500000 +"Warbler, Garden",0.272169811 +"Warbler, Hooded",0.252380952 +"Shrike, Long-tailed",0.220312500 +"Oriole, Baltimore",0.217500000 +"Dove, Turtle",0.200203666 +Fieldfare,0.200000000 +"Shearwater, Cory's",0.200000000 +"Treecreeper, Short-toed",0.195454545 +Shag,0.186363636 +"Stint, Little",0.177272727 +"Plover, Caspian",0.150000000 +"Crane, Sandhill",0.146990741 +"Bunting, Yellow-breasted",0.116666667 +"Redpoll, Lesser",0.100000000 +"Sapsucker, Yellow-bellied",0.100000000 +"Bunting, Reed",0.068467096 +"Thrush, Swainson's",0.051051893 +Honey-buzzard,0.047077097 +"Warbler, Booted",0.043333333 +"Thrush, Grey-cheeked",0.028712871 +"Bunting, Black-headed",0.025000000 +Coot,0.025000000 +"Egret, Cattle",0.025000000 +"Grebe, Pied-billed",0.025000000 +"Grey, Great",0.025000000 +"Grey, Lesser",0.025000000 +"Grey, Southern",0.025000000 +"Gull, Ring-billed",0.025000000 +"Harrier, Hen",0.025000000 +Jackdaw,0.025000000 +Lapwing,0.025000000 +"Martin, Purple",0.025000000 +Moorhen,0.025000000 +"Sparrow, Savannah",0.025000000 +"Tern, Sandwich",0.025000000 +"Warbler, Moltoni's",0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..fa89dcf3f8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Normalized (% of Total Cores)" +"Warbler, Dusky",5.600000000 +"Scaup, Lesser",4.577777778 +"Warbler, Yellow-browed",4.000000000 +"Goose, Egyptian",2.800000000 +"Gallinule, Allen's",2.700000000 +Crane,2.400000000 +"Pipit, Meadow",2.400000000 +Smew,1.800000000 +Chaffinch,1.600000000 +"Duck, Ferruginous",1.500000000 +Peregrine,1.500000000 +Siskin,1.500000000 +"Grosbeak, Evening",1.400000000 +"Scoter, Velvet",1.400000000 +Whimbrel,1.221428571 +"Swift, Alpine",1.100000000 +Dunlin,1.062343096 +"Warbler, Golden-winged",0.600362319 +"Sparrow, White-throated",0.577777778 +"Ibis, Glossy",0.500000000 +"Martin, Crag",0.500000000 +Roller,0.468750000 +Ovenbird,0.400000000 +"Partridge, Red-legged",0.400000000 +"Warbler, Sardinian",0.365555556 +"Bunting, Yellow-browed",0.350000000 +"Plover, White-tailed",0.300000000 +"Sandpiper, Spotted",0.300000000 +"Thrush, Mistle",0.300000000 +"Auk, Little",0.272500000 +"Warbler, Garden",0.272169811 +"Warbler, Hooded",0.252380952 +"Shrike, Long-tailed",0.220312500 +"Oriole, Baltimore",0.217500000 +"Dove, Turtle",0.200203666 +Fieldfare,0.200000000 +"Shearwater, Cory's",0.200000000 +"Treecreeper, Short-toed",0.195454545 +Shag,0.186363636 +"Stint, Little",0.177272727 +"Plover, Caspian",0.150000000 +"Crane, Sandhill",0.146990741 +"Bunting, Yellow-breasted",0.116666667 +"Redpoll, Lesser",0.100000000 +"Sapsucker, Yellow-bellied",0.100000000 +"Bunting, Reed",0.068467096 +"Thrush, Swainson's",0.051051893 +Honey-buzzard,0.047077097 +"Warbler, Booted",0.043333333 +"Thrush, Grey-cheeked",0.028712871 +"Bunting, Black-headed",0.025000000 +Coot,0.025000000 +"Egret, Cattle",0.025000000 +"Grebe, Pied-billed",0.025000000 +"Grey, Great",0.025000000 +"Grey, Lesser",0.025000000 +"Grey, Southern",0.025000000 +"Gull, Ring-billed",0.025000000 +"Harrier, Hen",0.025000000 +Jackdaw,0.025000000 +Lapwing,0.025000000 +"Martin, Purple",0.025000000 +Moorhen,0.025000000 +"Sparrow, Savannah",0.025000000 +"Tern, Sandwich",0.025000000 +"Warbler, Moltoni's",0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..fa89dcf3f8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Normalized (% of Total Cores)" +"Warbler, Dusky",5.600000000 +"Scaup, Lesser",4.577777778 +"Warbler, Yellow-browed",4.000000000 +"Goose, Egyptian",2.800000000 +"Gallinule, Allen's",2.700000000 +Crane,2.400000000 +"Pipit, Meadow",2.400000000 +Smew,1.800000000 +Chaffinch,1.600000000 +"Duck, Ferruginous",1.500000000 +Peregrine,1.500000000 +Siskin,1.500000000 +"Grosbeak, Evening",1.400000000 +"Scoter, Velvet",1.400000000 +Whimbrel,1.221428571 +"Swift, Alpine",1.100000000 +Dunlin,1.062343096 +"Warbler, Golden-winged",0.600362319 +"Sparrow, White-throated",0.577777778 +"Ibis, Glossy",0.500000000 +"Martin, Crag",0.500000000 +Roller,0.468750000 +Ovenbird,0.400000000 +"Partridge, Red-legged",0.400000000 +"Warbler, Sardinian",0.365555556 +"Bunting, Yellow-browed",0.350000000 +"Plover, White-tailed",0.300000000 +"Sandpiper, Spotted",0.300000000 +"Thrush, Mistle",0.300000000 +"Auk, Little",0.272500000 +"Warbler, Garden",0.272169811 +"Warbler, Hooded",0.252380952 +"Shrike, Long-tailed",0.220312500 +"Oriole, Baltimore",0.217500000 +"Dove, Turtle",0.200203666 +Fieldfare,0.200000000 +"Shearwater, Cory's",0.200000000 +"Treecreeper, Short-toed",0.195454545 +Shag,0.186363636 +"Stint, Little",0.177272727 +"Plover, Caspian",0.150000000 +"Crane, Sandhill",0.146990741 +"Bunting, Yellow-breasted",0.116666667 +"Redpoll, Lesser",0.100000000 +"Sapsucker, Yellow-bellied",0.100000000 +"Bunting, Reed",0.068467096 +"Thrush, Swainson's",0.051051893 +Honey-buzzard,0.047077097 +"Warbler, Booted",0.043333333 +"Thrush, Grey-cheeked",0.028712871 +"Bunting, Black-headed",0.025000000 +Coot,0.025000000 +"Egret, Cattle",0.025000000 +"Grebe, Pied-billed",0.025000000 +"Grey, Great",0.025000000 +"Grey, Lesser",0.025000000 +"Grey, Southern",0.025000000 +"Gull, Ring-billed",0.025000000 +"Harrier, Hen",0.025000000 +Jackdaw,0.025000000 +Lapwing,0.025000000 +"Martin, Purple",0.025000000 +Moorhen,0.025000000 +"Sparrow, Savannah",0.025000000 +"Tern, Sandwich",0.025000000 +"Warbler, Moltoni's",0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..fa89dcf3f8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,75 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by User" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Normalized (% of Total Cores)" +"Warbler, Dusky",5.600000000 +"Scaup, Lesser",4.577777778 +"Warbler, Yellow-browed",4.000000000 +"Goose, Egyptian",2.800000000 +"Gallinule, Allen's",2.700000000 +Crane,2.400000000 +"Pipit, Meadow",2.400000000 +Smew,1.800000000 +Chaffinch,1.600000000 +"Duck, Ferruginous",1.500000000 +Peregrine,1.500000000 +Siskin,1.500000000 +"Grosbeak, Evening",1.400000000 +"Scoter, Velvet",1.400000000 +Whimbrel,1.221428571 +"Swift, Alpine",1.100000000 +Dunlin,1.062343096 +"Warbler, Golden-winged",0.600362319 +"Sparrow, White-throated",0.577777778 +"Ibis, Glossy",0.500000000 +"Martin, Crag",0.500000000 +Roller,0.468750000 +Ovenbird,0.400000000 +"Partridge, Red-legged",0.400000000 +"Warbler, Sardinian",0.365555556 +"Bunting, Yellow-browed",0.350000000 +"Plover, White-tailed",0.300000000 +"Sandpiper, Spotted",0.300000000 +"Thrush, Mistle",0.300000000 +"Auk, Little",0.272500000 +"Warbler, Garden",0.272169811 +"Warbler, Hooded",0.252380952 +"Shrike, Long-tailed",0.220312500 +"Oriole, Baltimore",0.217500000 +"Dove, Turtle",0.200203666 +Fieldfare,0.200000000 +"Shearwater, Cory's",0.200000000 +"Treecreeper, Short-toed",0.195454545 +Shag,0.186363636 +"Stint, Little",0.177272727 +"Plover, Caspian",0.150000000 +"Crane, Sandhill",0.146990741 +"Bunting, Yellow-breasted",0.116666667 +"Redpoll, Lesser",0.100000000 +"Sapsucker, Yellow-bellied",0.100000000 +"Bunting, Reed",0.068467096 +"Thrush, Swainson's",0.051051893 +Honey-buzzard,0.047077097 +"Warbler, Booted",0.043333333 +"Thrush, Grey-cheeked",0.028712871 +"Bunting, Black-headed",0.025000000 +Coot,0.025000000 +"Egret, Cattle",0.025000000 +"Grebe, Pied-billed",0.025000000 +"Grey, Great",0.025000000 +"Grey, Lesser",0.025000000 +"Grey, Southern",0.025000000 +"Gull, Ring-billed",0.025000000 +"Harrier, Hen",0.025000000 +Jackdaw,0.025000000 +Lapwing,0.025000000 +"Martin, Purple",0.025000000 +Moorhen,0.025000000 +"Sparrow, Savannah",0.025000000 +"Tern, Sandwich",0.025000000 +"Warbler, Moltoni's",0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv index 729885f8de..05724ffa9d 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/normalized_avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Warbler, Dusky] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Yellow-browed] Job Size: Normalized (% of Total Cores)","[Goose, Egyptian] Job Size: Normalized (% of Total Cores)","[Gallinule, Allen's] Job Size: Normalized (% of Total Cores)","[Crane] Job Size: Normalized (% of Total Cores)","[Pipit, Meadow] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[Scoter, Velvet] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Duck, Ferruginous] Job Size: Normalized (% of Total Cores)","[Peregrine] Job Size: Normalized (% of Total Cores)","[Siskin] Job Size: Normalized (% of Total Cores)","[Grosbeak, Evening] Job Size: Normalized (% of Total Cores)","[Whimbrel] Job Size: Normalized (% of Total Cores)","[Swift, Alpine] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Warbler, Golden-winged] Job Size: Normalized (% of Total Cores)","[Roller] Job Size: Normalized (% of Total Cores)","[Sparrow, White-throated] Job Size: Normalized (% of Total Cores)","[Ibis, Glossy] Job Size: Normalized (% of Total Cores)","[Martin, Crag] Job Size: Normalized (% of Total Cores)","[Bunting, Yellow-browed] Job Size: Normalized (% of Total Cores)","[Ovenbird] Job Size: Normalized (% of Total Cores)","[Partridge, Red-legged] Job Size: Normalized (% of Total Cores)","[Warbler, Sardinian] Job Size: Normalized (% of Total Cores)","[Warbler, Garden] Job Size: Normalized (% of Total Cores)","[Plover, White-tailed] Job Size: Normalized (% of Total Cores)","[Sandpiper, Spotted] Job Size: Normalized (% of Total Cores)","[Thrush, Mistle] Job Size: Normalized (% of Total Cores)","[Auk, Little] Job Size: Normalized (% of Total Cores)","[Oriole, Baltimore] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shag] Job Size: Normalized (% of Total Cores)","[Shrike, Long-tailed] Job Size: Normalized (% of Total Cores)","[Dove, Turtle] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Shearwater, Cory's] Job Size: Normalized (% of Total Cores)","[Treecreeper, Short-toed] Job Size: Normalized (% of Total Cores)","[Stint, Little] Job Size: Normalized (% of Total Cores)","[Crane, Sandhill] Job Size: Normalized (% of Total Cores)","[Plover, Caspian] Job Size: Normalized (% of Total Cores)","[Bunting, Yellow-breasted] Job Size: Normalized (% of Total Cores)","[Redpoll, Lesser] Job Size: Normalized (% of Total Cores)","[Sapsucker, Yellow-bellied] Job Size: Normalized (% of Total Cores)","[Warbler, Booted] Job Size: Normalized (% of Total Cores)","[Bunting, Reed] Job Size: Normalized (% of Total Cores)","[Thrush, Swainson's] Job Size: Normalized (% of Total Cores)","[Honey-buzzard] Job Size: Normalized (% of Total Cores)","[Thrush, Grey-cheeked] Job Size: Normalized (% of Total Cores)","[Bunting, Black-headed] Job Size: Normalized (% of Total Cores)","[Coot] Job Size: Normalized (% of Total Cores)","[Egret, Cattle] Job Size: Normalized (% of Total Cores)","[Grebe, Pied-billed] Job Size: Normalized (% of Total Cores)","[Grey, Great] Job Size: Normalized (% of Total Cores)","[Grey, Lesser] Job Size: Normalized (% of Total Cores)","[Grey, Southern] Job Size: Normalized (% of Total Cores)","[Gull, Ring-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Lapwing] Job Size: Normalized (% of Total Cores)","[Martin, Purple] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Sparrow, Savannah] Job Size: Normalized (% of Total Cores)","[Tern, Sandwich] Job Size: Normalized (% of Total Cores)","[Warbler, Moltoni's] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0 -2016-12-27,0,0,0,0,0,0,2.400000000,0,3.600000000,1.600000000,0,0,1.800000000,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0.400000000,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0.200000000,0,0.800000000,0,0.400000000,0,0,0.300000000,0.350000000,0,0.025000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0.025000000 -2016-12-28,0,4.577777778,0,0,0,0,2.400000000,0,3.600000000,1.600000000,0,0,1.500000000,0,0,0,0,0,0,0,0.500000000,0,0,0.400000000,0,0.800000000,0.400000000,0.300000000,0,0.300000000,0,0.300000000,0.200000000,0.275000000,0,0.300000000,0,0,0.200000000,0,0.309090909,0,0.400000000,0,0,0.300000000,0.353846154,0,0.025000000,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0.025000000,0,0.025000000,0.025000000 -2016-12-29,0,4.577777778,4.000000000,2.800000000,0,2.400000000,2.400000000,1.800000000,3.600000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,0,0,0,0,0,0,0.500000000,0,1.000000000,0.400000000,0,0.800000000,0.400000000,0.300000000,0.300000000,0.300000000,0.125000000,0.300000000,0.200000000,0.233333333,0.025000000,0.210526316,0,0.200000000,0.200000000,0,0.184722222,0,0.120000000,0.100000000,0.100000000,0.300000000,0.176000000,0.107692308,0.059487952,0.050000000,0,0,0,0.025000000,0,0,0,0,0.025000000,0,0.025000000,0,0.025000000,0,0.025000000,0.025000000 -2016-12-30,5.600000000,4.577777778,4.000000000,2.800000000,2.700000000,2.400000000,2.400000000,1.800000000,1.400000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,1.800000000,1.200000000,1.101111111,0.616250000,0.583333333,0,0.500000000,0.500000000,0.350000000,0.400000000,0.400000000,0.332857143,0.400000000,0.300000000,0.300000000,0.300000000,0.125000000,0.300000000,0.237500000,0.194444444,0.190625000,0.200573066,0.200000000,0.200000000,0.194444444,0.164285714,0.151418440,0,0.116666667,0.100000000,0.100000000,0.043333333,0.067503366,0.051051893,0.045463520,0.118750000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2016-12-31,8.400000000,4.577777778,0,2.800000000,0,2.400000000,2.400000000,1.800000000,0,1.600000000,1.500000000,1.500000000,1.200000000,0,1.300000000,1.600000000,2.310000000,0.611538462,0.812500000,0.577777778,0,0,1.000000000,0.400000000,0,0.522222222,0.258854167,0,0.300000000,0.300000000,0.285714286,0.580000000,0.268750000,0.216666667,0.170833333,0.200000000,0.200000000,0.200000000,0.200000000,0.400000000,0.205421687,0.300000000,0.200000000,0.100000000,0.100000000,0.025000000,0.067680180,1.600000000,0.049416863,0.025000000,0.025000000,0.025000000,0.025000000,0,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0 -2017-01-01,0,0,4.000000000,0,0,2.400000000,2.400000000,0,0,1.600000000,1.500000000,1.500000000,0,0,1.157142857,0.800000000,0.947482014,0.600000000,0.125000000,0.577777778,0,0,0,0.400000000,0,0.977777778,0.263829787,0,0.300000000,0.300000000,0.300000000,0.150961538,0,0.600000000,0.500000000,0.200000000,0.200000000,0.200000000,0.200000000,0,0,0.150000000,0,0.100000000,0.100000000,0,0.200000000,0,0.045696121,0.050000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0,0 +Day,"[Warbler, Dusky] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Yellow-browed] Job Size: Normalized (% of Total Cores)","[Goose, Egyptian] Job Size: Normalized (% of Total Cores)","[Gallinule, Allen's] Job Size: Normalized (% of Total Cores)","[Crane] Job Size: Normalized (% of Total Cores)","[Pipit, Meadow] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Duck, Ferruginous] Job Size: Normalized (% of Total Cores)","[Peregrine] Job Size: Normalized (% of Total Cores)","[Siskin] Job Size: Normalized (% of Total Cores)","[Grosbeak, Evening] Job Size: Normalized (% of Total Cores)","[Scoter, Velvet] Job Size: Normalized (% of Total Cores)","[Whimbrel] Job Size: Normalized (% of Total Cores)","[Swift, Alpine] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Warbler, Golden-winged] Job Size: Normalized (% of Total Cores)","[Sparrow, White-throated] Job Size: Normalized (% of Total Cores)","[Ibis, Glossy] Job Size: Normalized (% of Total Cores)","[Martin, Crag] Job Size: Normalized (% of Total Cores)","[Roller] Job Size: Normalized (% of Total Cores)","[Ovenbird] Job Size: Normalized (% of Total Cores)","[Partridge, Red-legged] Job Size: Normalized (% of Total Cores)","[Warbler, Sardinian] Job Size: Normalized (% of Total Cores)","[Bunting, Yellow-browed] Job Size: Normalized (% of Total Cores)","[Plover, White-tailed] Job Size: Normalized (% of Total Cores)","[Sandpiper, Spotted] Job Size: Normalized (% of Total Cores)","[Thrush, Mistle] Job Size: Normalized (% of Total Cores)","[Auk, Little] Job Size: Normalized (% of Total Cores)","[Warbler, Garden] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shrike, Long-tailed] Job Size: Normalized (% of Total Cores)","[Oriole, Baltimore] Job Size: Normalized (% of Total Cores)","[Dove, Turtle] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Shearwater, Cory's] Job Size: Normalized (% of Total Cores)","[Treecreeper, Short-toed] Job Size: Normalized (% of Total Cores)","[Shag] Job Size: Normalized (% of Total Cores)","[Stint, Little] Job Size: Normalized (% of Total Cores)","[Plover, Caspian] Job Size: Normalized (% of Total Cores)","[Crane, Sandhill] Job Size: Normalized (% of Total Cores)","[Bunting, Yellow-breasted] Job Size: Normalized (% of Total Cores)","[Redpoll, Lesser] Job Size: Normalized (% of Total Cores)","[Sapsucker, Yellow-bellied] Job Size: Normalized (% of Total Cores)","[Bunting, Reed] Job Size: Normalized (% of Total Cores)","[Thrush, Swainson's] Job Size: Normalized (% of Total Cores)","[Honey-buzzard] Job Size: Normalized (% of Total Cores)","[Warbler, Booted] Job Size: Normalized (% of Total Cores)","[Thrush, Grey-cheeked] Job Size: Normalized (% of Total Cores)","[Bunting, Black-headed] Job Size: Normalized (% of Total Cores)","[Coot] Job Size: Normalized (% of Total Cores)","[Egret, Cattle] Job Size: Normalized (% of Total Cores)","[Grebe, Pied-billed] Job Size: Normalized (% of Total Cores)","[Grey, Great] Job Size: Normalized (% of Total Cores)","[Grey, Lesser] Job Size: Normalized (% of Total Cores)","[Grey, Southern] Job Size: Normalized (% of Total Cores)","[Gull, Ring-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Lapwing] Job Size: Normalized (% of Total Cores)","[Martin, Purple] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Sparrow, Savannah] Job Size: Normalized (% of Total Cores)","[Tern, Sandwich] Job Size: Normalized (% of Total Cores)","[Warbler, Moltoni's] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0 +2016-12-27,0,0,0,0,0,0,2.400000000,0,1.600000000,0,0,1.800000000,0,3.600000000,0,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0,0,0,0.400000000,0,0,0.300000000,0.300000000,0,0,0.200000000,0,0,0,0.800000000,0.400000000,0,0,0.350000000,0,0.025000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0.025000000 +2016-12-28,0,4.577777778,0,0,0,0,2.400000000,0,1.600000000,0,0,1.500000000,0,3.600000000,0,0,0,0,0,0.500000000,0,0,0.400000000,0,0.800000000,0,0.300000000,0,0.300000000,0,0.400000000,0.200000000,0,0.300000000,0.300000000,0,0,0.200000000,0.275000000,0,0,0.309090909,0.400000000,0,0,0.353846154,0,0.025000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0.025000000,0,0.025000000,0.025000000 +2016-12-29,0,4.577777778,4.000000000,2.800000000,0,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,3.600000000,0,0,0,0,0,0.500000000,0,0,0.400000000,0,0.800000000,1.000000000,0.300000000,0.300000000,0.300000000,0.125000000,0.400000000,0.200000000,0.025000000,0.300000000,0.210526316,0,0.200000000,0.200000000,0.233333333,0,0,0.184722222,0.120000000,0.100000000,0.100000000,0.176000000,0.107692308,0.059487952,0.300000000,0.050000000,0,0,0,0.025000000,0,0,0,0,0.025000000,0,0.025000000,0,0.025000000,0,0.025000000,0.025000000 +2016-12-30,5.600000000,4.577777778,4.000000000,2.800000000,2.700000000,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,1.400000000,1.800000000,1.200000000,1.101111111,0.616250000,0,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.332857143,0.350000000,0.300000000,0.300000000,0.300000000,0.125000000,0.400000000,0.237500000,0.190625000,0.300000000,0.200573066,0.200000000,0.200000000,0.194444444,0.194444444,0.164285714,0,0.151418440,0.116666667,0.100000000,0.100000000,0.067503366,0.051051893,0.045463520,0.043333333,0.118750000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2016-12-31,8.400000000,4.577777778,0,2.800000000,0,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.200000000,0,0,1.300000000,1.600000000,2.310000000,0.611538462,0.577777778,0,0,0.812500000,0.400000000,0,0.522222222,1.000000000,0,0.300000000,0.300000000,0.285714286,0.258854167,0.268750000,0.170833333,0.580000000,0.200000000,0.200000000,0.200000000,0.200000000,0.216666667,0.400000000,0.300000000,0.205421687,0.200000000,0.100000000,0.100000000,0.067680180,1.600000000,0.049416863,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0 +2017-01-01,0,0,4.000000000,0,0,2.400000000,2.400000000,0,1.600000000,1.500000000,1.500000000,0,0,0,1.157142857,0.800000000,0.947482014,0.600000000,0.577777778,0,0,0.125000000,0.400000000,0,0.977777778,0,0,0.300000000,0.300000000,0.300000000,0.263829787,0,0.500000000,0.150961538,0.200000000,0.200000000,0.200000000,0.200000000,0.600000000,0,0.150000000,0,0,0.100000000,0.100000000,0.200000000,0,0.045696121,0,0.050000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0,0,0.025000000,0.025000000,0.025000000,0.025000000,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..f9704fd048 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Scaup, Lesser",4770.96515556, +"Thrush, Hermit",4368.65777778,1642.1290224563402 +Fieldfare,3349.41898359, +Smew,2627.28571429, +Nuthatch,1767.64000000, +"Bunting, Ortolan",1217.11333333, +"White, Great",1099.78650000,28.16858688077423 +"Warbler, Savi's",1006.98777778, +Dotterel,960.13333333, +"Gull, Yellow-legged",722.24444444,221.86209986841982 +"Bluetail, Red-flanked",657.08909329, +"Accentor, Alpine",584.70172840, +"Warbler, Blackpoll",529.63777778, +"Kestrel, Lesser",472.55000000, +Chaffinch,350.97654122,92.37868584083421 +"Shearwater, Balearic",229.08605023,40.75001779915322 +"Warbler, Hooded",199.11258258, +Jackdaw,188.13274411,2.041452970260724 +"Swift, Little",147.58368056,100.57359969220543 +Fulmar,120.93180941,7.498289082723488 +"Shearwater, Great",72.00694444, +"Petrel, Fea's",68.10298148,26.371499330539592 +"Martin, Sand",62.26494444,16.730860685172974 +Bufflehead,49.85089556, +"Gull, Glaucous-winged",28.14000000,0 +Moorhen,25.48654262, +"Egret, Snowy",25.28805115,0.5677021199320009 +"Goose, Red-breasted",20.97018519,8.396540327209507 +"Chiffchaff, Iberian",20.18978548,2.707858002197733 +"Tern, Caspian",18.09286078,3.3250117057748407 +"Lark, Calandra",9.96996384,0.8667729813875754 +"Shearwater, Macaronesian",8.59051583, +Dunlin,6.35208275,0.7295707950782502 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.412736659063767 +"Flycatcher, Taiga",2.92105820,0.019372743040016592 +Blackbird,1.60992063,0.44663758019891886 +"Yellowthroat, Common",1.04000000,0 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Warbler, Cetti's",0.44956007,0.3891122786101412 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..c016061023 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Scaup, Lesser",4770.96515556,1280.6779521962624 +"Thrush, Hermit",4368.65777778,3398.832310418393 +Fieldfare,3349.41898359,483.5702375532598 +Smew,2627.28571429,173.36998095799686 +Nuthatch,1767.64000000,158.84195310837734 +"Bunting, Ortolan",1217.11333333,41.359060776731056 +"White, Great",1099.78650000,285.31920900832716 +"Warbler, Savi's",1006.98777778,712.0416008450284 +Dotterel,960.13333333,0 +"Gull, Yellow-legged",722.24444444,508.25264083286396 +"Bluetail, Red-flanked",657.08909329,51.277475129665504 +"Accentor, Alpine",584.70172840, +"Warbler, Blackpoll",529.63777778,46.636532607630166 +"Kestrel, Lesser",472.55000000,42.08961460801514 +Chaffinch,350.97654122,220.00497833274875 +"Shearwater, Balearic",229.08605023,76.31072359860417 +"Warbler, Hooded",199.11258258,23.468158632214884 +Jackdaw,188.13274411,16.44278594480015 +"Swift, Little",147.58368056,114.52976296802045 +Fulmar,120.93180941,23.278643251385912 +"Shearwater, Great",72.00694444,0 +"Petrel, Fea's",68.10298148,53.28768177700803 +"Martin, Sand",62.26494444,18.726467654568296 +Bufflehead,49.85089556,1.1100595034642202 +"Gull, Glaucous-winged",28.14000000,0 +Moorhen,25.48654262,0.09521527865289223 +"Egret, Snowy",25.28805115,0.5677021199320009 +"Goose, Red-breasted",20.97018519,8.396540327209507 +"Chiffchaff, Iberian",20.18978548,2.814335511780527 +"Tern, Caspian",18.09286078,5.960009068465851 +"Lark, Calandra",9.96996384,1.3696184350054212 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +Dunlin,6.35208275,0.7295707950782502 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Flycatcher, Taiga",2.92105820,0.02265708678309858 +Blackbird,1.60992063,0.44663758019891886 +"Yellowthroat, Common",1.04000000,0 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Warbler, Cetti's",0.44956007,0.42794057709117733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..c016061023 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Scaup, Lesser",4770.96515556,1280.6779521962624 +"Thrush, Hermit",4368.65777778,3398.832310418393 +Fieldfare,3349.41898359,483.5702375532598 +Smew,2627.28571429,173.36998095799686 +Nuthatch,1767.64000000,158.84195310837734 +"Bunting, Ortolan",1217.11333333,41.359060776731056 +"White, Great",1099.78650000,285.31920900832716 +"Warbler, Savi's",1006.98777778,712.0416008450284 +Dotterel,960.13333333,0 +"Gull, Yellow-legged",722.24444444,508.25264083286396 +"Bluetail, Red-flanked",657.08909329,51.277475129665504 +"Accentor, Alpine",584.70172840, +"Warbler, Blackpoll",529.63777778,46.636532607630166 +"Kestrel, Lesser",472.55000000,42.08961460801514 +Chaffinch,350.97654122,220.00497833274875 +"Shearwater, Balearic",229.08605023,76.31072359860417 +"Warbler, Hooded",199.11258258,23.468158632214884 +Jackdaw,188.13274411,16.44278594480015 +"Swift, Little",147.58368056,114.52976296802045 +Fulmar,120.93180941,23.278643251385912 +"Shearwater, Great",72.00694444,0 +"Petrel, Fea's",68.10298148,53.28768177700803 +"Martin, Sand",62.26494444,18.726467654568296 +Bufflehead,49.85089556,1.1100595034642202 +"Gull, Glaucous-winged",28.14000000,0 +Moorhen,25.48654262,0.09521527865289223 +"Egret, Snowy",25.28805115,0.5677021199320009 +"Goose, Red-breasted",20.97018519,8.396540327209507 +"Chiffchaff, Iberian",20.18978548,2.814335511780527 +"Tern, Caspian",18.09286078,5.960009068465851 +"Lark, Calandra",9.96996384,1.3696184350054212 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +Dunlin,6.35208275,0.7295707950782502 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Flycatcher, Taiga",2.92105820,0.02265708678309858 +Blackbird,1.60992063,0.44663758019891886 +"Yellowthroat, Common",1.04000000,0 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Warbler, Cetti's",0.44956007,0.42794057709117733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..c016061023 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"Scaup, Lesser",4770.96515556,1280.6779521962624 +"Thrush, Hermit",4368.65777778,3398.832310418393 +Fieldfare,3349.41898359,483.5702375532598 +Smew,2627.28571429,173.36998095799686 +Nuthatch,1767.64000000,158.84195310837734 +"Bunting, Ortolan",1217.11333333,41.359060776731056 +"White, Great",1099.78650000,285.31920900832716 +"Warbler, Savi's",1006.98777778,712.0416008450284 +Dotterel,960.13333333,0 +"Gull, Yellow-legged",722.24444444,508.25264083286396 +"Bluetail, Red-flanked",657.08909329,51.277475129665504 +"Accentor, Alpine",584.70172840, +"Warbler, Blackpoll",529.63777778,46.636532607630166 +"Kestrel, Lesser",472.55000000,42.08961460801514 +Chaffinch,350.97654122,220.00497833274875 +"Shearwater, Balearic",229.08605023,76.31072359860417 +"Warbler, Hooded",199.11258258,23.468158632214884 +Jackdaw,188.13274411,16.44278594480015 +"Swift, Little",147.58368056,114.52976296802045 +Fulmar,120.93180941,23.278643251385912 +"Shearwater, Great",72.00694444,0 +"Petrel, Fea's",68.10298148,53.28768177700803 +"Martin, Sand",62.26494444,18.726467654568296 +Bufflehead,49.85089556,1.1100595034642202 +"Gull, Glaucous-winged",28.14000000,0 +Moorhen,25.48654262,0.09521527865289223 +"Egret, Snowy",25.28805115,0.5677021199320009 +"Goose, Red-breasted",20.97018519,8.396540327209507 +"Chiffchaff, Iberian",20.18978548,2.814335511780527 +"Tern, Caspian",18.09286078,5.960009068465851 +"Lark, Calandra",9.96996384,1.3696184350054212 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +Dunlin,6.35208275,0.7295707950782502 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Flycatcher, Taiga",2.92105820,0.02265708678309858 +Blackbird,1.60992063,0.44663758019891886 +"Yellowthroat, Common",1.04000000,0 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Warbler, Cetti's",0.44956007,0.42794057709117733 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv index 4b93761087..2be4ccf74c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Thrush, Hermit] CPU Hours: Per Job","[Scaup, Lesser] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Nuthatch] CPU Hours: Per Job","[Bunting, Ortolan] CPU Hours: Per Job","[White, Great] CPU Hours: Per Job","[Warbler, Savi's] CPU Hours: Per Job","[Gull, Yellow-legged] CPU Hours: Per Job","[Dotterel] CPU Hours: Per Job","[Accentor, Alpine] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Bluetail, Red-flanked] CPU Hours: Per Job","[Warbler, Blackpoll] CPU Hours: Per Job","[Kestrel, Lesser] CPU Hours: Per Job","[Shearwater, Balearic] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Swift, Little] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Martin, Sand] CPU Hours: Per Job","[Fulmar] CPU Hours: Per Job","[Petrel, Fea's] CPU Hours: Per Job","[Gull, Glaucous-winged] CPU Hours: Per Job","[Egret, Snowy] CPU Hours: Per Job","[Goose, Red-breasted] CPU Hours: Per Job","[Chiffchaff, Iberian] CPU Hours: Per Job","[Shearwater, Great] CPU Hours: Per Job","[Tern, Caspian] CPU Hours: Per Job","[Bufflehead] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Lark, Calandra] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Spotted, Great] CPU Hours: Per Job","[Shearwater, Macaronesian] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Flycatcher, Taiga] CPU Hours: Per Job","[Blackbird] CPU Hours: Per Job","[Yellowthroat, Common] CPU Hours: Per Job","[Dowitcher, Short-billed] CPU Hours: Per Job","[Bittern] CPU Hours: Per Job","[Warbler, Cetti's] CPU Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,116.56750000,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,288.00000000,43.26666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,432.00000000,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,1246.47111111,0,0,0,1487.82000000,0,0,0,0,265.59111111,384.00000000,0,0,1432.93629630,0,0,0,0,111.72266667,238.86666667,0,0,0,0,4.72138889,79.45703704,0,0,163.84000000,0,0,0,0,3.21666667,0,0,0,0,0 -2016-12-28,0,3274.16345679,1462.12800000,0,0,0,1170.67333333,0,0,94.01111111,0,912.00000000,144.42111111,60.47666667,37.38407407,548.99703704,0,0,70.31866667,0,141.10666667,288.00000000,0,0,0,0,24.00000000,324.00000000,13.35268330,5.01598392,497.74155556,0,0,0,0,24.00000000,0,0,0,0,0 -2016-12-29,0,4394.66666667,2154.62270531,831.60857143,410.97777778,611.49333333,1116.60000000,758.98888889,1038.22222222,480.00000000,0,912.00000000,382.20422222,288.00000000,288.00000000,481.66328889,46.91737374,0,84.37166667,52.00416667,35.54762993,288.00000000,0,0,0,7.24000000,24.00000000,107.02983796,16.60273286,13.10756221,291.44944444,0,0,0,2.01966667,7.00547635,0,0,0,0,107.90888889 -2016-12-30,2468.14222222,3044.46700855,1678.34215278,1568.46000000,1151.41444444,765.75000000,691.69761905,480.00444444,402.80000000,386.12222222,0,912.00000000,302.76555556,181.16111111,174.64030303,82.82847222,107.24694444,21.99861111,109.61282407,68.03194444,31.01048203,13.26442593,28.14000000,0,16.32947222,142.16250000,19.28555556,7.46168131,21.71949405,13.31263065,4.35337278,5.80186420,3.48631944,4.25015531,4.10559722,3.23608859,1.60992063,1.04000000,0.97252976,1.58977533,0.62469624 -2016-12-31,5701.54666667,816.89504274,927.25854167,1590.52000000,821.47333333,977.07428571,472.85472222,294.97777778,0,0,385.99851852,304.60111111,245.43360532,0,288.00000000,30.92378849,171.46924897,251.46666667,94.17464646,70.16857143,119.81037037,1.92791667,0,2.35937500,35.16320513,14.57163265,0,94.71781481,10.83064379,12.53390738,5.37641403,12.54733333,7.65398148,5.54019436,8.63138889,3.90284912,0,0,0.97299603,1.07971065,0.01479010 -2017-01-01,0,7.11888889,144.94972222,0,0,667.68761905,353.78037037,0,3.46666667,0,198.70320988,62.83434156,104.22217494,0,60.55000000,0,59.98977778,21.40555556,68.79111111,5.71666667,141.00285714,0,0,25.37236259,8.24440000,35.25833333,0,185.80611111,13.34534574,11.50582962,16.76606412,6.26263789,0,0,0,0.60766446,0,0,0.96969246,0.02809588,0 +Day,"[Scaup, Lesser] CPU Hours: Per Job","[Thrush, Hermit] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Nuthatch] CPU Hours: Per Job","[Bunting, Ortolan] CPU Hours: Per Job","[White, Great] CPU Hours: Per Job","[Warbler, Savi's] CPU Hours: Per Job","[Dotterel] CPU Hours: Per Job","[Gull, Yellow-legged] CPU Hours: Per Job","[Bluetail, Red-flanked] CPU Hours: Per Job","[Accentor, Alpine] CPU Hours: Per Job","[Warbler, Blackpoll] CPU Hours: Per Job","[Kestrel, Lesser] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Shearwater, Balearic] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Swift, Little] CPU Hours: Per Job","[Fulmar] CPU Hours: Per Job","[Shearwater, Great] CPU Hours: Per Job","[Petrel, Fea's] CPU Hours: Per Job","[Martin, Sand] CPU Hours: Per Job","[Bufflehead] CPU Hours: Per Job","[Gull, Glaucous-winged] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Egret, Snowy] CPU Hours: Per Job","[Goose, Red-breasted] CPU Hours: Per Job","[Chiffchaff, Iberian] CPU Hours: Per Job","[Tern, Caspian] CPU Hours: Per Job","[Lark, Calandra] CPU Hours: Per Job","[Shearwater, Macaronesian] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Spotted, Great] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Flycatcher, Taiga] CPU Hours: Per Job","[Blackbird] CPU Hours: Per Job","[Yellowthroat, Common] CPU Hours: Per Job","[Dowitcher, Short-billed] CPU Hours: Per Job","[Bittern] CPU Hours: Per Job","[Warbler, Cetti's] CPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,288.00000000,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,116.56750000,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,43.26666667,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,432.00000000,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,1246.47111111,0,0,0,1487.82000000,0,0,0,384.00000000,0,0,0,265.59111111,1432.93629630,0,0,0,111.72266667,4.72138889,238.86666667,0,0,0,0,0,0,0,79.45703704,163.84000000,0,0,0,0,3.21666667,0,0,0,0,0 +2016-12-28,3274.16345679,0,1462.12800000,0,0,0,1170.67333333,0,94.01111111,0,144.42111111,0,60.47666667,37.38407407,912.00000000,548.99703704,70.31866667,0,0,141.10666667,24.00000000,288.00000000,0,13.35268330,0,5.01598392,0,0,0,324.00000000,497.74155556,0,0,0,0,24.00000000,0,0,0,0,0 +2016-12-29,4394.66666667,0,2154.62270531,831.60857143,410.97777778,611.49333333,1116.60000000,758.98888889,480.00000000,1038.22222222,382.20422222,0,288.00000000,288.00000000,912.00000000,481.66328889,84.37166667,46.91737374,0,35.54762993,24.00000000,288.00000000,52.00416667,16.60273286,0,13.10756221,0,0,7.24000000,107.02983796,291.44944444,0,0,0,2.01966667,7.00547635,0,0,0,0,107.90888889 +2016-12-30,3044.46700855,2468.14222222,1678.34215278,1568.46000000,1151.41444444,765.75000000,691.69761905,480.00444444,386.12222222,402.80000000,302.76555556,0,181.16111111,174.64030303,912.00000000,82.82847222,109.61282407,107.24694444,21.99861111,31.01048203,19.28555556,13.26442593,68.03194444,21.71949405,28.14000000,13.31263065,0,16.32947222,142.16250000,7.46168131,4.35337278,4.25015531,5.80186420,3.48631944,4.10559722,3.23608859,1.60992063,1.04000000,0.97252976,1.58977533,0.62469624 +2016-12-31,816.89504274,5701.54666667,927.25854167,1590.52000000,821.47333333,977.07428571,472.85472222,294.97777778,0,0,245.43360532,385.99851852,0,288.00000000,304.60111111,30.92378849,94.17464646,171.46924897,251.46666667,119.81037037,0,1.92791667,70.16857143,10.83064379,0,12.53390738,2.35937500,35.16320513,14.57163265,94.71781481,5.37641403,5.54019436,12.54733333,7.65398148,8.63138889,3.90284912,0,0,0.97299603,1.07971065,0.01479010 +2017-01-01,7.11888889,0,144.94972222,0,0,667.68761905,353.78037037,0,0,3.46666667,104.22217494,198.70320988,0,60.55000000,62.83434156,0,68.79111111,59.98977778,21.40555556,141.00285714,0,0,5.71666667,13.34534574,0,11.50582962,25.37236259,8.24440000,35.25833333,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv index fd26f5224a..faf832d7d2 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Scaup, Lesser] CPU Hours: Per Job","[Thrush, Hermit] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Nuthatch] CPU Hours: Per Job","[Bunting, Ortolan] CPU Hours: Per Job","[Warbler, Savi's] CPU Hours: Per Job","[Dotterel] CPU Hours: Per Job","[White, Great] CPU Hours: Per Job","[Gull, Yellow-legged] CPU Hours: Per Job","[Warbler, Blackpoll] CPU Hours: Per Job","[Kestrel, Lesser] CPU Hours: Per Job","[Bluetail, Red-flanked] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Accentor, Alpine] CPU Hours: Per Job","[Shearwater, Balearic] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Swift, Little] CPU Hours: Per Job","[Fulmar] CPU Hours: Per Job","[Shearwater, Great] CPU Hours: Per Job","[Petrel, Fea's] CPU Hours: Per Job","[Martin, Sand] CPU Hours: Per Job","[Bufflehead] CPU Hours: Per Job","[Gull, Glaucous-winged] CPU Hours: Per Job","[Egret, Snowy] CPU Hours: Per Job","[Goose, Red-breasted] CPU Hours: Per Job","[Chiffchaff, Iberian] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Tern, Caspian] CPU Hours: Per Job","[Lark, Calandra] CPU Hours: Per Job","[Shearwater, Macaronesian] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Spotted, Great] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Flycatcher, Taiga] CPU Hours: Per Job","[Blackbird] CPU Hours: Per Job","[Yellowthroat, Common] CPU Hours: Per Job","[Dowitcher, Short-billed] CPU Hours: Per Job","[Bittern] CPU Hours: Per Job","[Warbler, Cetti's] CPU Hours: Per Job" -2016-12,7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1006.98777778,960.13333333,1254.11377778,1441.02222222,529.63777778,467.04545455,564.66565514,1530.62425926,385.99851852,229.08605023,183.58806397,220.83068966,189.64305556,107.22319830,72.00694444,68.10298148,76.40201389,48.78758939,28.14000000,2.35937500,26.97462560,19.84069307,23.01874399,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 -2017-01,7.11888889,0,144.94972222,0,0,667.68761905,0,0,353.78037037,3.46666667,0,60.55000000,104.22217494,62.83434156,198.70320988,0,59.98977778,68.79111111,21.40555556,141.00285714,0,0,5.71666667,13.34534574,0,25.37236259,8.24440000,35.25833333,11.50582962,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 +Month,"[Scaup, Lesser] CPU Hours: Per Job","[Thrush, Hermit] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Nuthatch] CPU Hours: Per Job","[Bunting, Ortolan] CPU Hours: Per Job","[White, Great] CPU Hours: Per Job","[Warbler, Savi's] CPU Hours: Per Job","[Dotterel] CPU Hours: Per Job","[Gull, Yellow-legged] CPU Hours: Per Job","[Bluetail, Red-flanked] CPU Hours: Per Job","[Accentor, Alpine] CPU Hours: Per Job","[Warbler, Blackpoll] CPU Hours: Per Job","[Kestrel, Lesser] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Shearwater, Balearic] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Swift, Little] CPU Hours: Per Job","[Fulmar] CPU Hours: Per Job","[Shearwater, Great] CPU Hours: Per Job","[Petrel, Fea's] CPU Hours: Per Job","[Martin, Sand] CPU Hours: Per Job","[Bufflehead] CPU Hours: Per Job","[Gull, Glaucous-winged] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Egret, Snowy] CPU Hours: Per Job","[Goose, Red-breasted] CPU Hours: Per Job","[Chiffchaff, Iberian] CPU Hours: Per Job","[Tern, Caspian] CPU Hours: Per Job","[Lark, Calandra] CPU Hours: Per Job","[Shearwater, Macaronesian] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Spotted, Great] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Flycatcher, Taiga] CPU Hours: Per Job","[Blackbird] CPU Hours: Per Job","[Yellowthroat, Common] CPU Hours: Per Job","[Dowitcher, Short-billed] CPU Hours: Per Job","[Bittern] CPU Hours: Per Job","[Warbler, Cetti's] CPU Hours: Per Job" +2016-12,7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1254.11377778,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,529.63777778,467.04545455,1530.62425926,229.08605023,220.83068966,183.58806397,189.64305556,107.22319830,72.00694444,68.10298148,76.40201389,48.78758939,28.14000000,23.01874399,2.35937500,26.97462560,19.84069307,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 +2017-01,7.11888889,0,144.94972222,0,0,667.68761905,353.78037037,0,0,3.46666667,104.22217494,198.70320988,0,60.55000000,62.83434156,0,68.79111111,59.98977778,21.40555556,141.00285714,0,0,5.71666667,13.34534574,0,11.50582962,25.37236259,8.24440000,35.25833333,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv index 321747dc4a..38748cc48e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Scaup, Lesser] CPU Hours: Per Job","[Thrush, Hermit] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Nuthatch] CPU Hours: Per Job","[Bunting, Ortolan] CPU Hours: Per Job","[Warbler, Savi's] CPU Hours: Per Job","[Dotterel] CPU Hours: Per Job","[White, Great] CPU Hours: Per Job","[Gull, Yellow-legged] CPU Hours: Per Job","[Warbler, Blackpoll] CPU Hours: Per Job","[Kestrel, Lesser] CPU Hours: Per Job","[Bluetail, Red-flanked] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Accentor, Alpine] CPU Hours: Per Job","[Shearwater, Balearic] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Swift, Little] CPU Hours: Per Job","[Fulmar] CPU Hours: Per Job","[Shearwater, Great] CPU Hours: Per Job","[Petrel, Fea's] CPU Hours: Per Job","[Martin, Sand] CPU Hours: Per Job","[Bufflehead] CPU Hours: Per Job","[Gull, Glaucous-winged] CPU Hours: Per Job","[Egret, Snowy] CPU Hours: Per Job","[Goose, Red-breasted] CPU Hours: Per Job","[Chiffchaff, Iberian] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Tern, Caspian] CPU Hours: Per Job","[Lark, Calandra] CPU Hours: Per Job","[Shearwater, Macaronesian] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Spotted, Great] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Flycatcher, Taiga] CPU Hours: Per Job","[Blackbird] CPU Hours: Per Job","[Yellowthroat, Common] CPU Hours: Per Job","[Dowitcher, Short-billed] CPU Hours: Per Job","[Bittern] CPU Hours: Per Job","[Warbler, Cetti's] CPU Hours: Per Job" -"2016 Q4",7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1006.98777778,960.13333333,1254.11377778,1441.02222222,529.63777778,467.04545455,564.66565514,1530.62425926,385.99851852,229.08605023,183.58806397,220.83068966,189.64305556,107.22319830,72.00694444,68.10298148,76.40201389,48.78758939,28.14000000,2.35937500,26.97462560,19.84069307,23.01874399,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 -"2017 Q1",7.11888889,0,144.94972222,0,0,667.68761905,0,0,353.78037037,3.46666667,0,60.55000000,104.22217494,62.83434156,198.70320988,0,59.98977778,68.79111111,21.40555556,141.00285714,0,0,5.71666667,13.34534574,0,25.37236259,8.24440000,35.25833333,11.50582962,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 +Quarter,"[Scaup, Lesser] CPU Hours: Per Job","[Thrush, Hermit] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Nuthatch] CPU Hours: Per Job","[Bunting, Ortolan] CPU Hours: Per Job","[White, Great] CPU Hours: Per Job","[Warbler, Savi's] CPU Hours: Per Job","[Dotterel] CPU Hours: Per Job","[Gull, Yellow-legged] CPU Hours: Per Job","[Bluetail, Red-flanked] CPU Hours: Per Job","[Accentor, Alpine] CPU Hours: Per Job","[Warbler, Blackpoll] CPU Hours: Per Job","[Kestrel, Lesser] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Shearwater, Balearic] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Swift, Little] CPU Hours: Per Job","[Fulmar] CPU Hours: Per Job","[Shearwater, Great] CPU Hours: Per Job","[Petrel, Fea's] CPU Hours: Per Job","[Martin, Sand] CPU Hours: Per Job","[Bufflehead] CPU Hours: Per Job","[Gull, Glaucous-winged] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Egret, Snowy] CPU Hours: Per Job","[Goose, Red-breasted] CPU Hours: Per Job","[Chiffchaff, Iberian] CPU Hours: Per Job","[Tern, Caspian] CPU Hours: Per Job","[Lark, Calandra] CPU Hours: Per Job","[Shearwater, Macaronesian] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Spotted, Great] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Flycatcher, Taiga] CPU Hours: Per Job","[Blackbird] CPU Hours: Per Job","[Yellowthroat, Common] CPU Hours: Per Job","[Dowitcher, Short-billed] CPU Hours: Per Job","[Bittern] CPU Hours: Per Job","[Warbler, Cetti's] CPU Hours: Per Job" +"2016 Q4",7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1254.11377778,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,529.63777778,467.04545455,1530.62425926,229.08605023,220.83068966,183.58806397,189.64305556,107.22319830,72.00694444,68.10298148,76.40201389,48.78758939,28.14000000,23.01874399,2.35937500,26.97462560,19.84069307,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 +"2017 Q1",7.11888889,0,144.94972222,0,0,667.68761905,353.78037037,0,0,3.46666667,104.22217494,198.70320988,0,60.55000000,62.83434156,0,68.79111111,59.98977778,21.40555556,141.00285714,0,0,5.71666667,13.34534574,0,11.50582962,25.37236259,8.24440000,35.25833333,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv index 821d0f21c9..31e4e04cbe 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_cpu_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Scaup, Lesser] CPU Hours: Per Job","[Thrush, Hermit] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Nuthatch] CPU Hours: Per Job","[Bunting, Ortolan] CPU Hours: Per Job","[Warbler, Savi's] CPU Hours: Per Job","[Dotterel] CPU Hours: Per Job","[White, Great] CPU Hours: Per Job","[Gull, Yellow-legged] CPU Hours: Per Job","[Warbler, Blackpoll] CPU Hours: Per Job","[Kestrel, Lesser] CPU Hours: Per Job","[Bluetail, Red-flanked] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Accentor, Alpine] CPU Hours: Per Job","[Shearwater, Balearic] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Swift, Little] CPU Hours: Per Job","[Fulmar] CPU Hours: Per Job","[Shearwater, Great] CPU Hours: Per Job","[Petrel, Fea's] CPU Hours: Per Job","[Martin, Sand] CPU Hours: Per Job","[Bufflehead] CPU Hours: Per Job","[Gull, Glaucous-winged] CPU Hours: Per Job","[Egret, Snowy] CPU Hours: Per Job","[Goose, Red-breasted] CPU Hours: Per Job","[Chiffchaff, Iberian] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Tern, Caspian] CPU Hours: Per Job","[Lark, Calandra] CPU Hours: Per Job","[Shearwater, Macaronesian] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Spotted, Great] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Flycatcher, Taiga] CPU Hours: Per Job","[Blackbird] CPU Hours: Per Job","[Yellowthroat, Common] CPU Hours: Per Job","[Dowitcher, Short-billed] CPU Hours: Per Job","[Bittern] CPU Hours: Per Job","[Warbler, Cetti's] CPU Hours: Per Job" -2016,7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1006.98777778,960.13333333,1254.11377778,1441.02222222,529.63777778,467.04545455,564.66565514,1530.62425926,385.99851852,229.08605023,183.58806397,220.83068966,189.64305556,107.22319830,72.00694444,68.10298148,76.40201389,48.78758939,28.14000000,2.35937500,26.97462560,19.84069307,23.01874399,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 -2017,7.11888889,0,144.94972222,0,0,667.68761905,0,0,353.78037037,3.46666667,0,60.55000000,104.22217494,62.83434156,198.70320988,0,59.98977778,68.79111111,21.40555556,141.00285714,0,0,5.71666667,13.34534574,0,25.37236259,8.24440000,35.25833333,11.50582962,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 +Year,"[Scaup, Lesser] CPU Hours: Per Job","[Thrush, Hermit] CPU Hours: Per Job","[Fieldfare] CPU Hours: Per Job","[Smew] CPU Hours: Per Job","[Nuthatch] CPU Hours: Per Job","[Bunting, Ortolan] CPU Hours: Per Job","[White, Great] CPU Hours: Per Job","[Warbler, Savi's] CPU Hours: Per Job","[Dotterel] CPU Hours: Per Job","[Gull, Yellow-legged] CPU Hours: Per Job","[Bluetail, Red-flanked] CPU Hours: Per Job","[Accentor, Alpine] CPU Hours: Per Job","[Warbler, Blackpoll] CPU Hours: Per Job","[Kestrel, Lesser] CPU Hours: Per Job","[Chaffinch] CPU Hours: Per Job","[Shearwater, Balearic] CPU Hours: Per Job","[Warbler, Hooded] CPU Hours: Per Job","[Jackdaw] CPU Hours: Per Job","[Swift, Little] CPU Hours: Per Job","[Fulmar] CPU Hours: Per Job","[Shearwater, Great] CPU Hours: Per Job","[Petrel, Fea's] CPU Hours: Per Job","[Martin, Sand] CPU Hours: Per Job","[Bufflehead] CPU Hours: Per Job","[Gull, Glaucous-winged] CPU Hours: Per Job","[Moorhen] CPU Hours: Per Job","[Egret, Snowy] CPU Hours: Per Job","[Goose, Red-breasted] CPU Hours: Per Job","[Chiffchaff, Iberian] CPU Hours: Per Job","[Tern, Caspian] CPU Hours: Per Job","[Lark, Calandra] CPU Hours: Per Job","[Shearwater, Macaronesian] CPU Hours: Per Job","[Dunlin] CPU Hours: Per Job","[Spotted, Great] CPU Hours: Per Job","[Harrier, Hen] CPU Hours: Per Job","[Flycatcher, Taiga] CPU Hours: Per Job","[Blackbird] CPU Hours: Per Job","[Yellowthroat, Common] CPU Hours: Per Job","[Dowitcher, Short-billed] CPU Hours: Per Job","[Bittern] CPU Hours: Per Job","[Warbler, Cetti's] CPU Hours: Per Job" +2016,7012.77516340,4368.65777778,4514.85752604,2627.28571429,1767.64000000,1233.33333333,1254.11377778,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,529.63777778,467.04545455,1530.62425926,229.08605023,220.83068966,183.58806397,189.64305556,107.22319830,72.00694444,68.10298148,76.40201389,48.78758939,28.14000000,23.01874399,2.35937500,26.97462560,19.84069307,17.62892461,9.52178441,8.59051583,6.47641111,5.98691667,5.04208333,3.66207287,1.60992063,1.04000000,0.97276290,1.45671498,0.44956007 +2017,7.11888889,0,144.94972222,0,0,667.68761905,353.78037037,0,0,3.46666667,104.22217494,198.70320988,0,60.55000000,62.83434156,0,68.79111111,59.98977778,21.40555556,141.00285714,0,0,5.71666667,13.34534574,0,11.50582962,25.37236259,8.24440000,35.25833333,185.80611111,16.76606412,0,6.26263789,0,0,0.60766446,0,0,0.96969246,0.02809588,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..1d4d778b92 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Thrush, Hermit",364.05481481,136.8440852046951 +"Scaup, Lesser",299.71225556, +Fieldfare,280.53725379, +Smew,218.94047619, +Nuthatch,110.47750000, +"Bunting, Ortolan",101.42611111, +"White, Great",98.65240278,2.9866256009801653 +"Gull, Yellow-legged",90.28055556,27.732762483552477 +"Shearwater, Great",72.00694444, +"Bluetail, Red-flanked",52.33125262, +"Accentor, Alpine",50.98981481, +"Warbler, Savi's",50.34944444, +Bufflehead,49.85089556, +Dotterel,48.00666667, +"Warbler, Blackpoll",44.13648148, +Chaffinch,39.80336022,11.690025361774948 +"Kestrel, Lesser",39.37916667, +Moorhen,25.48654262, +"Warbler, Hooded",24.23206456, +Fulmar,21.20512731, +Jackdaw,17.27322391, +"Petrel, Fea's",16.76537037, +"Shearwater, Balearic",16.21672374,3.307407725278887 +"Swift, Little",13.65055556,7.948466682221146 +"Shearwater, Macaronesian",8.59051583, +"Chiffchaff, Iberian",7.94699670,0.252707620848999 +"Martin, Sand",7.02769444,1.7557857088278381 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.412736659063767 +"Gull, Glaucous-winged",2.34500000,0 +"Egret, Snowy",2.10733760,0.04730850999433886 +"Tern, Caspian",1.80356997,0.22623042445517075 +"Goose, Red-breasted",1.74795089,0.6996960905360882 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Lark, Calandra",0.77948613,0.07725239052059997 +Dunlin,0.62984891,0.07224051664061484 +"Flycatcher, Taiga",0.29997993,0.003221245083552797 +"Warbler, Cetti's",0.12795354,0.097273556348267 +Blackbird,0.08049603,0.022331879009996006 +"Yellowthroat, Common",0.06500000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..09e9ca6b34 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Thrush, Hermit",364.05481481,283.2360258681995 +"Scaup, Lesser",299.71225556,79.82382338004409 +Fieldfare,280.53725379,40.08967968847617 +Smew,218.94047619,14.44749841316656 +Nuthatch,110.47750000,9.927622069273584 +"Bunting, Ortolan",101.42611111,3.4465883980609213 +"White, Great",98.65240278,27.275167014617164 +"Gull, Yellow-legged",90.28055556,63.531580104107995 +"Shearwater, Great",72.00694444,0 +"Bluetail, Red-flanked",52.33125262, +"Accentor, Alpine",50.98981481, +"Warbler, Savi's",50.34944444,35.60204075854135 +Bufflehead,49.85089556,1.1100595034642202 +Dotterel,48.00666667,0 +"Warbler, Blackpoll",44.13648148,3.8863777173028686 +Chaffinch,39.80336022,26.386475830697922 +"Kestrel, Lesser",39.37916667,3.5074678840012607 +Moorhen,25.48654262,0.09521527865289223 +"Warbler, Hooded",24.23206456,3.046402847031802 +Fulmar,21.20512731,2.519094985257857 +Jackdaw,17.27322391,1.2812633375632778 +"Petrel, Fea's",16.76537037,3.911305555603074 +"Shearwater, Balearic",16.21672374,6.170931378438703 +"Swift, Little",13.65055556,9.195084663741797 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +"Chiffchaff, Iberian",7.94699670,0.4591933087881705 +"Martin, Sand",7.02769444,2.431694700689441 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Gull, Glaucous-winged",2.34500000,0 +"Egret, Snowy",2.10733760,0.04730850999433886 +"Tern, Caspian",1.80356997,0.4327483645961316 +"Goose, Red-breasted",1.74795089,0.6996960905360882 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Lark, Calandra",0.77948613,0.10397217424885151 +Dunlin,0.62984891,0.07224051664061484 +"Flycatcher, Taiga",0.29997993,0.00460726351698731 +"Warbler, Cetti's",0.12795354,0.10698104049029705 +Blackbird,0.08049603,0.022331879009996006 +"Yellowthroat, Common",0.06500000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..09e9ca6b34 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Thrush, Hermit",364.05481481,283.2360258681995 +"Scaup, Lesser",299.71225556,79.82382338004409 +Fieldfare,280.53725379,40.08967968847617 +Smew,218.94047619,14.44749841316656 +Nuthatch,110.47750000,9.927622069273584 +"Bunting, Ortolan",101.42611111,3.4465883980609213 +"White, Great",98.65240278,27.275167014617164 +"Gull, Yellow-legged",90.28055556,63.531580104107995 +"Shearwater, Great",72.00694444,0 +"Bluetail, Red-flanked",52.33125262, +"Accentor, Alpine",50.98981481, +"Warbler, Savi's",50.34944444,35.60204075854135 +Bufflehead,49.85089556,1.1100595034642202 +Dotterel,48.00666667,0 +"Warbler, Blackpoll",44.13648148,3.8863777173028686 +Chaffinch,39.80336022,26.386475830697922 +"Kestrel, Lesser",39.37916667,3.5074678840012607 +Moorhen,25.48654262,0.09521527865289223 +"Warbler, Hooded",24.23206456,3.046402847031802 +Fulmar,21.20512731,2.519094985257857 +Jackdaw,17.27322391,1.2812633375632778 +"Petrel, Fea's",16.76537037,3.911305555603074 +"Shearwater, Balearic",16.21672374,6.170931378438703 +"Swift, Little",13.65055556,9.195084663741797 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +"Chiffchaff, Iberian",7.94699670,0.4591933087881705 +"Martin, Sand",7.02769444,2.431694700689441 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Gull, Glaucous-winged",2.34500000,0 +"Egret, Snowy",2.10733760,0.04730850999433886 +"Tern, Caspian",1.80356997,0.4327483645961316 +"Goose, Red-breasted",1.74795089,0.6996960905360882 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Lark, Calandra",0.77948613,0.10397217424885151 +Dunlin,0.62984891,0.07224051664061484 +"Flycatcher, Taiga",0.29997993,0.00460726351698731 +"Warbler, Cetti's",0.12795354,0.10698104049029705 +Blackbird,0.08049603,0.022331879009996006 +"Yellowthroat, Common",0.06500000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..09e9ca6b34 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"Thrush, Hermit",364.05481481,283.2360258681995 +"Scaup, Lesser",299.71225556,79.82382338004409 +Fieldfare,280.53725379,40.08967968847617 +Smew,218.94047619,14.44749841316656 +Nuthatch,110.47750000,9.927622069273584 +"Bunting, Ortolan",101.42611111,3.4465883980609213 +"White, Great",98.65240278,27.275167014617164 +"Gull, Yellow-legged",90.28055556,63.531580104107995 +"Shearwater, Great",72.00694444,0 +"Bluetail, Red-flanked",52.33125262, +"Accentor, Alpine",50.98981481, +"Warbler, Savi's",50.34944444,35.60204075854135 +Bufflehead,49.85089556,1.1100595034642202 +Dotterel,48.00666667,0 +"Warbler, Blackpoll",44.13648148,3.8863777173028686 +Chaffinch,39.80336022,26.386475830697922 +"Kestrel, Lesser",39.37916667,3.5074678840012607 +Moorhen,25.48654262,0.09521527865289223 +"Warbler, Hooded",24.23206456,3.046402847031802 +Fulmar,21.20512731,2.519094985257857 +Jackdaw,17.27322391,1.2812633375632778 +"Petrel, Fea's",16.76537037,3.911305555603074 +"Shearwater, Balearic",16.21672374,6.170931378438703 +"Swift, Little",13.65055556,9.195084663741797 +"Shearwater, Macaronesian",8.59051583,0.027937647321332644 +"Chiffchaff, Iberian",7.94699670,0.4591933087881705 +"Martin, Sand",7.02769444,2.431694700689441 +"Spotted, Great",5.98691667,0.9781127830854605 +"Harrier, Hen",5.04208333,1.9381499596292342 +"Gull, Glaucous-winged",2.34500000,0 +"Egret, Snowy",2.10733760,0.04730850999433886 +"Tern, Caspian",1.80356997,0.4327483645961316 +"Goose, Red-breasted",1.74795089,0.6996960905360882 +"Dowitcher, Short-billed",0.97173942,0.00025764463006399947 +Bittern,0.88155664,0.09909785167735996 +"Lark, Calandra",0.77948613,0.10397217424885151 +Dunlin,0.62984891,0.07224051664061484 +"Flycatcher, Taiga",0.29997993,0.00460726351698731 +"Warbler, Cetti's",0.12795354,0.10698104049029705 +Blackbird,0.08049603,0.022331879009996006 +"Yellowthroat, Common",0.06500000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv index db82b54ad7..b63a6c9e30 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Thrush, Hermit] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Bunting, Ortolan] Node Hours: Per Job","[Gull, Yellow-legged] Node Hours: Per Job","[White, Great] Node Hours: Per Job","[Nuthatch] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Accentor, Alpine] Node Hours: Per Job","[Warbler, Savi's] Node Hours: Per Job","[Shearwater, Great] Node Hours: Per Job","[Bluetail, Red-flanked] Node Hours: Per Job","[Dotterel] Node Hours: Per Job","[Bufflehead] Node Hours: Per Job","[Warbler, Blackpoll] Node Hours: Per Job","[Kestrel, Lesser] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Petrel, Fea's] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Shearwater, Balearic] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Fulmar] Node Hours: Per Job","[Swift, Little] Node Hours: Per Job","[Chiffchaff, Iberian] Node Hours: Per Job","[Martin, Sand] Node Hours: Per Job","[Spotted, Great] Node Hours: Per Job","[Shearwater, Macaronesian] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Gull, Glaucous-winged] Node Hours: Per Job","[Egret, Snowy] Node Hours: Per Job","[Goose, Red-breasted] Node Hours: Per Job","[Tern, Caspian] Node Hours: Per Job","[Dowitcher, Short-billed] Node Hours: Per Job","[Bittern] Node Hours: Per Job","[Lark, Calandra] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Flycatcher, Taiga] Node Hours: Per Job","[Warbler, Cetti's] Node Hours: Per Job","[Blackbird] Node Hours: Per Job","[Yellowthroat, Common] Node Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,24.00000000,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,24.00000000,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,8.12694444,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,24.00000000,0,0,0,2.70416667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,24.00000000,0,0,0,0,0 -2016-12-27,0,0,103.87259259,0,0,0,123.98500000,0,27.19888889,0,0,4.72138889,24.00000000,0,0,0,0,0,19.90555556,0,110.37185185,0,13.96533333,0,0,0,0,0,0,0,0,0,8.71606481,0,0,8.23638889,0,3.21666667,0,0,0 -2016-12-28,0,204.63521605,121.84400000,0,0,0,110.33416667,0,108.00000000,0,0,24.00000000,9.02631944,4.70055556,13.35268330,5.03972222,3.11533951,5.01598392,24.00000000,8.78983333,41.89046296,0,17.63833333,0,0,0,0,0,0,0,0,0,24.00000000,0,0,23.06965278,0,24.00000000,0,0,0 -2016-12-29,0,274.66666667,180.43835749,69.30071429,50.95777778,129.77777778,105.05000000,25.68611111,108.00000000,0,37.94944444,24.00000000,23.88776389,24.00000000,16.60273286,24.00000000,24.00000000,13.10756221,24.00000000,10.54645833,33.92898889,4.34454545,7.73178763,0,3.62000000,10.40083333,0,0,2.01966667,0,0,0,8.69373843,0,0,17.28543724,0,1.17898003,26.97722222,0,0 -2016-12-30,205.67851852,190.40452991,141.05838294,130.70500000,63.81250000,50.35000000,64.49861111,71.96340278,108.00000000,0,24.00027778,19.28555556,18.92284722,19.30611111,21.71949405,15.09675926,14.55335859,13.31263065,11.72422222,13.41648148,5.43139178,9.68358547,7.32493056,2.52592593,16.84687500,13.60638889,3.48631944,4.25015531,4.10559722,2.34500000,0,1.36229167,0.89853754,0.97252976,1.58977533,0.37156165,0.56942901,0.34371670,0.17419134,0.08049603,0.06500000 -2016-12-31,475.12888889,53.59320513,77.97748843,132.54333333,81.42285714,0,40.94743056,51.34208333,36.07513889,33.22259259,14.74888889,0,23.17923611,0,10.83064379,0,24.00000000,12.53390738,1.92791667,10.97790404,1.97834003,15.93161523,14.97629630,21.37166667,7.28581633,6.47384921,7.65398148,5.54019436,8.63138889,0,0.19661458,2.93026709,6.74688889,0.97299603,1.07971065,0.59342052,1.04561111,0.38194742,0.01479010,0,0 -2017-01-01,0,0.88986111,11.65923611,0,55.64063492,0.43333333,29.48169753,0,7.49293210,17.76722222,0,0,11.20848700,0,13.34534574,0,5.04583333,11.50582962,0,8.59888889,0,6.53122222,17.62535714,4.28111111,17.62916667,0.47638889,0,0,0,0,2.11436355,0.68703333,11.62486111,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 +Day,"[Thrush, Hermit] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Nuthatch] Node Hours: Per Job","[Bunting, Ortolan] Node Hours: Per Job","[White, Great] Node Hours: Per Job","[Gull, Yellow-legged] Node Hours: Per Job","[Shearwater, Great] Node Hours: Per Job","[Bluetail, Red-flanked] Node Hours: Per Job","[Accentor, Alpine] Node Hours: Per Job","[Warbler, Savi's] Node Hours: Per Job","[Bufflehead] Node Hours: Per Job","[Dotterel] Node Hours: Per Job","[Warbler, Blackpoll] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Kestrel, Lesser] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Fulmar] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Petrel, Fea's] Node Hours: Per Job","[Shearwater, Balearic] Node Hours: Per Job","[Swift, Little] Node Hours: Per Job","[Shearwater, Macaronesian] Node Hours: Per Job","[Chiffchaff, Iberian] Node Hours: Per Job","[Martin, Sand] Node Hours: Per Job","[Spotted, Great] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Gull, Glaucous-winged] Node Hours: Per Job","[Egret, Snowy] Node Hours: Per Job","[Tern, Caspian] Node Hours: Per Job","[Goose, Red-breasted] Node Hours: Per Job","[Dowitcher, Short-billed] Node Hours: Per Job","[Bittern] Node Hours: Per Job","[Lark, Calandra] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Flycatcher, Taiga] Node Hours: Per Job","[Warbler, Cetti's] Node Hours: Per Job","[Blackbird] Node Hours: Per Job","[Yellowthroat, Common] Node Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,24.00000000,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,8.12694444,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,2.70416667,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-27,0,0,103.87259259,0,0,0,123.98500000,0,4.72138889,24.00000000,0,0,0,0,0,27.19888889,0,0,0,13.96533333,0,19.90555556,110.37185185,0,0,0,0,0,0,0,0,8.71606481,0,0,0,8.23638889,0,3.21666667,0,0,0 +2016-12-28,0,204.63521605,121.84400000,0,0,0,110.33416667,0,24.00000000,9.02631944,0,0,13.35268330,4.70055556,5.03972222,108.00000000,3.11533951,5.01598392,8.78983333,17.63833333,0,24.00000000,41.89046296,0,0,0,0,0,0,0,0,24.00000000,0,0,0,23.06965278,0,24.00000000,0,0,0 +2016-12-29,0,274.66666667,180.43835749,69.30071429,25.68611111,50.95777778,105.05000000,129.77777778,24.00000000,23.88776389,0,37.94944444,16.60273286,24.00000000,24.00000000,108.00000000,24.00000000,13.10756221,10.54645833,7.73178763,4.34454545,24.00000000,33.92898889,0,0,3.62000000,10.40083333,0,2.01966667,0,0,8.69373843,0,0,0,17.28543724,0,1.17898003,26.97722222,0,0 +2016-12-30,205.67851852,190.40452991,141.05838294,130.70500000,71.96340278,63.81250000,64.49861111,50.35000000,19.28555556,18.92284722,0,24.00027778,21.71949405,19.30611111,15.09675926,108.00000000,14.55335859,13.31263065,13.41648148,7.32493056,9.68358547,11.72422222,5.43139178,2.52592593,4.25015531,16.84687500,13.60638889,3.48631944,4.10559722,2.34500000,0,0.89853754,1.36229167,0.97252976,1.58977533,0.37156165,0.56942901,0.34371670,0.17419134,0.08049603,0.06500000 +2016-12-31,475.12888889,53.59320513,77.97748843,132.54333333,51.34208333,81.42285714,40.94743056,0,0,23.17923611,33.22259259,14.74888889,10.83064379,0,0,36.07513889,24.00000000,12.53390738,10.97790404,14.97629630,15.93161523,1.92791667,1.97834003,21.37166667,5.54019436,7.28581633,6.47384921,7.65398148,8.63138889,0,0.19661458,6.74688889,2.93026709,0.97299603,1.07971065,0.59342052,1.04561111,0.38194742,0.01479010,0,0 +2017-01-01,0,0.88986111,11.65923611,0,0,55.64063492,29.48169753,0.43333333,0,11.20848700,17.76722222,0,13.34534574,0,0,7.49293210,5.04583333,11.50582962,8.59888889,17.62535714,6.53122222,0,0,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv index af6b99e9b6..e9a4d89d9f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Thrush, Hermit] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Nuthatch] Node Hours: Per Job","[Gull, Yellow-legged] Node Hours: Per Job","[Bunting, Ortolan] Node Hours: Per Job","[White, Great] Node Hours: Per Job","[Shearwater, Great] Node Hours: Per Job","[Warbler, Savi's] Node Hours: Per Job","[Dotterel] Node Hours: Per Job","[Warbler, Blackpoll] Node Hours: Per Job","[Bufflehead] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Kestrel, Lesser] Node Hours: Per Job","[Bluetail, Red-flanked] Node Hours: Per Job","[Accentor, Alpine] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Fulmar] Node Hours: Per Job","[Petrel, Fea's] Node Hours: Per Job","[Shearwater, Balearic] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Swift, Little] Node Hours: Per Job","[Shearwater, Macaronesian] Node Hours: Per Job","[Chiffchaff, Iberian] Node Hours: Per Job","[Martin, Sand] Node Hours: Per Job","[Spotted, Great] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Gull, Glaucous-winged] Node Hours: Per Job","[Egret, Snowy] Node Hours: Per Job","[Tern, Caspian] Node Hours: Per Job","[Goose, Red-breasted] Node Hours: Per Job","[Dowitcher, Short-billed] Node Hours: Per Job","[Bittern] Node Hours: Per Job","[Lark, Calandra] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Flycatcher, Taiga] Node Hours: Per Job","[Warbler, Cetti's] Node Hours: Per Job","[Blackbird] Node Hours: Per Job","[Yellowthroat, Common] Node Hours: Per Job" -2016-12,364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,180.12777778,102.77777778,113.84751852,72.00694444,50.34944444,48.00666667,44.13648148,48.78758939,171.93250000,38.92045455,42.39165094,33.22259259,26.76558429,23.01874399,19.49155093,16.76537037,16.21672374,16.77843434,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 -2017-01,0,0.88986111,11.65923611,0,0,0.43333333,55.64063492,29.48169753,0,0,0,0,13.34534574,7.49293210,5.04583333,11.20848700,17.76722222,8.59888889,11.50582962,17.62535714,0,0,6.53122222,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 +Month,"[Thrush, Hermit] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Nuthatch] Node Hours: Per Job","[Bunting, Ortolan] Node Hours: Per Job","[White, Great] Node Hours: Per Job","[Gull, Yellow-legged] Node Hours: Per Job","[Shearwater, Great] Node Hours: Per Job","[Bluetail, Red-flanked] Node Hours: Per Job","[Accentor, Alpine] Node Hours: Per Job","[Warbler, Savi's] Node Hours: Per Job","[Bufflehead] Node Hours: Per Job","[Dotterel] Node Hours: Per Job","[Warbler, Blackpoll] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Kestrel, Lesser] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Fulmar] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Petrel, Fea's] Node Hours: Per Job","[Shearwater, Balearic] Node Hours: Per Job","[Swift, Little] Node Hours: Per Job","[Shearwater, Macaronesian] Node Hours: Per Job","[Chiffchaff, Iberian] Node Hours: Per Job","[Martin, Sand] Node Hours: Per Job","[Spotted, Great] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Gull, Glaucous-winged] Node Hours: Per Job","[Egret, Snowy] Node Hours: Per Job","[Tern, Caspian] Node Hours: Per Job","[Goose, Red-breasted] Node Hours: Per Job","[Dowitcher, Short-billed] Node Hours: Per Job","[Bittern] Node Hours: Per Job","[Lark, Calandra] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Flycatcher, Taiga] Node Hours: Per Job","[Warbler, Cetti's] Node Hours: Per Job","[Blackbird] Node Hours: Per Job","[Yellowthroat, Common] Node Hours: Per Job" +2016-12,364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,102.77777778,113.84751852,180.12777778,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,48.00666667,44.13648148,171.93250000,38.92045455,23.01874399,26.76558429,19.49155093,16.77843434,16.76537037,16.21672374,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 +2017-01,0,0.88986111,11.65923611,0,0,55.64063492,29.48169753,0.43333333,0,11.20848700,17.76722222,0,13.34534574,0,0,7.49293210,5.04583333,11.50582962,8.59888889,17.62535714,6.53122222,0,0,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv index b23567458c..7e6d8f3b8b 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Thrush, Hermit] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Nuthatch] Node Hours: Per Job","[Gull, Yellow-legged] Node Hours: Per Job","[Bunting, Ortolan] Node Hours: Per Job","[White, Great] Node Hours: Per Job","[Shearwater, Great] Node Hours: Per Job","[Warbler, Savi's] Node Hours: Per Job","[Dotterel] Node Hours: Per Job","[Warbler, Blackpoll] Node Hours: Per Job","[Bufflehead] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Kestrel, Lesser] Node Hours: Per Job","[Bluetail, Red-flanked] Node Hours: Per Job","[Accentor, Alpine] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Fulmar] Node Hours: Per Job","[Petrel, Fea's] Node Hours: Per Job","[Shearwater, Balearic] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Swift, Little] Node Hours: Per Job","[Shearwater, Macaronesian] Node Hours: Per Job","[Chiffchaff, Iberian] Node Hours: Per Job","[Martin, Sand] Node Hours: Per Job","[Spotted, Great] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Gull, Glaucous-winged] Node Hours: Per Job","[Egret, Snowy] Node Hours: Per Job","[Tern, Caspian] Node Hours: Per Job","[Goose, Red-breasted] Node Hours: Per Job","[Dowitcher, Short-billed] Node Hours: Per Job","[Bittern] Node Hours: Per Job","[Lark, Calandra] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Flycatcher, Taiga] Node Hours: Per Job","[Warbler, Cetti's] Node Hours: Per Job","[Blackbird] Node Hours: Per Job","[Yellowthroat, Common] Node Hours: Per Job" -"2016 Q4",364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,180.12777778,102.77777778,113.84751852,72.00694444,50.34944444,48.00666667,44.13648148,48.78758939,171.93250000,38.92045455,42.39165094,33.22259259,26.76558429,23.01874399,19.49155093,16.76537037,16.21672374,16.77843434,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 -"2017 Q1",0,0.88986111,11.65923611,0,0,0.43333333,55.64063492,29.48169753,0,0,0,0,13.34534574,7.49293210,5.04583333,11.20848700,17.76722222,8.59888889,11.50582962,17.62535714,0,0,6.53122222,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 +Quarter,"[Thrush, Hermit] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Nuthatch] Node Hours: Per Job","[Bunting, Ortolan] Node Hours: Per Job","[White, Great] Node Hours: Per Job","[Gull, Yellow-legged] Node Hours: Per Job","[Shearwater, Great] Node Hours: Per Job","[Bluetail, Red-flanked] Node Hours: Per Job","[Accentor, Alpine] Node Hours: Per Job","[Warbler, Savi's] Node Hours: Per Job","[Bufflehead] Node Hours: Per Job","[Dotterel] Node Hours: Per Job","[Warbler, Blackpoll] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Kestrel, Lesser] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Fulmar] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Petrel, Fea's] Node Hours: Per Job","[Shearwater, Balearic] Node Hours: Per Job","[Swift, Little] Node Hours: Per Job","[Shearwater, Macaronesian] Node Hours: Per Job","[Chiffchaff, Iberian] Node Hours: Per Job","[Martin, Sand] Node Hours: Per Job","[Spotted, Great] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Gull, Glaucous-winged] Node Hours: Per Job","[Egret, Snowy] Node Hours: Per Job","[Tern, Caspian] Node Hours: Per Job","[Goose, Red-breasted] Node Hours: Per Job","[Dowitcher, Short-billed] Node Hours: Per Job","[Bittern] Node Hours: Per Job","[Lark, Calandra] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Flycatcher, Taiga] Node Hours: Per Job","[Warbler, Cetti's] Node Hours: Per Job","[Blackbird] Node Hours: Per Job","[Yellowthroat, Common] Node Hours: Per Job" +"2016 Q4",364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,102.77777778,113.84751852,180.12777778,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,48.00666667,44.13648148,171.93250000,38.92045455,23.01874399,26.76558429,19.49155093,16.77843434,16.76537037,16.21672374,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 +"2017 Q1",0,0.88986111,11.65923611,0,0,55.64063492,29.48169753,0.43333333,0,11.20848700,17.76722222,0,13.34534574,0,0,7.49293210,5.04583333,11.50582962,8.59888889,17.62535714,6.53122222,0,0,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv index 29ec22a473..c864b6cd37 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Thrush, Hermit] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Nuthatch] Node Hours: Per Job","[Gull, Yellow-legged] Node Hours: Per Job","[Bunting, Ortolan] Node Hours: Per Job","[White, Great] Node Hours: Per Job","[Shearwater, Great] Node Hours: Per Job","[Warbler, Savi's] Node Hours: Per Job","[Dotterel] Node Hours: Per Job","[Warbler, Blackpoll] Node Hours: Per Job","[Bufflehead] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Kestrel, Lesser] Node Hours: Per Job","[Bluetail, Red-flanked] Node Hours: Per Job","[Accentor, Alpine] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Fulmar] Node Hours: Per Job","[Petrel, Fea's] Node Hours: Per Job","[Shearwater, Balearic] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Swift, Little] Node Hours: Per Job","[Shearwater, Macaronesian] Node Hours: Per Job","[Chiffchaff, Iberian] Node Hours: Per Job","[Martin, Sand] Node Hours: Per Job","[Spotted, Great] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Gull, Glaucous-winged] Node Hours: Per Job","[Egret, Snowy] Node Hours: Per Job","[Tern, Caspian] Node Hours: Per Job","[Goose, Red-breasted] Node Hours: Per Job","[Dowitcher, Short-billed] Node Hours: Per Job","[Bittern] Node Hours: Per Job","[Lark, Calandra] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Flycatcher, Taiga] Node Hours: Per Job","[Warbler, Cetti's] Node Hours: Per Job","[Blackbird] Node Hours: Per Job","[Yellowthroat, Common] Node Hours: Per Job" -2016,364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,180.12777778,102.77777778,113.84751852,72.00694444,50.34944444,48.00666667,44.13648148,48.78758939,171.93250000,38.92045455,42.39165094,33.22259259,26.76558429,23.01874399,19.49155093,16.76537037,16.21672374,16.77843434,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 -2017,0,0.88986111,11.65923611,0,0,0.43333333,55.64063492,29.48169753,0,0,0,0,13.34534574,7.49293210,5.04583333,11.20848700,17.76722222,8.59888889,11.50582962,17.62535714,0,0,6.53122222,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 +Year,"[Thrush, Hermit] Node Hours: Per Job","[Scaup, Lesser] Node Hours: Per Job","[Fieldfare] Node Hours: Per Job","[Smew] Node Hours: Per Job","[Nuthatch] Node Hours: Per Job","[Bunting, Ortolan] Node Hours: Per Job","[White, Great] Node Hours: Per Job","[Gull, Yellow-legged] Node Hours: Per Job","[Shearwater, Great] Node Hours: Per Job","[Bluetail, Red-flanked] Node Hours: Per Job","[Accentor, Alpine] Node Hours: Per Job","[Warbler, Savi's] Node Hours: Per Job","[Bufflehead] Node Hours: Per Job","[Dotterel] Node Hours: Per Job","[Warbler, Blackpoll] Node Hours: Per Job","[Chaffinch] Node Hours: Per Job","[Kestrel, Lesser] Node Hours: Per Job","[Moorhen] Node Hours: Per Job","[Warbler, Hooded] Node Hours: Per Job","[Fulmar] Node Hours: Per Job","[Jackdaw] Node Hours: Per Job","[Petrel, Fea's] Node Hours: Per Job","[Shearwater, Balearic] Node Hours: Per Job","[Swift, Little] Node Hours: Per Job","[Shearwater, Macaronesian] Node Hours: Per Job","[Chiffchaff, Iberian] Node Hours: Per Job","[Martin, Sand] Node Hours: Per Job","[Spotted, Great] Node Hours: Per Job","[Harrier, Hen] Node Hours: Per Job","[Gull, Glaucous-winged] Node Hours: Per Job","[Egret, Snowy] Node Hours: Per Job","[Tern, Caspian] Node Hours: Per Job","[Goose, Red-breasted] Node Hours: Per Job","[Dowitcher, Short-billed] Node Hours: Per Job","[Bittern] Node Hours: Per Job","[Lark, Calandra] Node Hours: Per Job","[Dunlin] Node Hours: Per Job","[Flycatcher, Taiga] Node Hours: Per Job","[Warbler, Cetti's] Node Hours: Per Job","[Blackbird] Node Hours: Per Job","[Yellowthroat, Common] Node Hours: Per Job" +2016,364.05481481,440.33455882,378.45170139,218.94047619,110.47750000,102.77777778,113.84751852,180.12777778,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,48.00666667,44.13648148,171.93250000,38.92045455,23.01874399,26.76558429,19.49155093,16.77843434,16.76537037,16.21672374,16.77370370,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,2.34500000,0.19661458,1.77542542,2.24853865,0.97276290,1.45671498,0.72579524,0.61704722,0.37457084,0.12795354,0.08049603,0.06500000 +2017,0,0.88986111,11.65923611,0,0,55.64063492,29.48169753,0.43333333,0,11.20848700,17.76722222,0,13.34534574,0,0,7.49293210,5.04583333,11.50582962,8.59888889,17.62535714,6.53122222,0,0,4.28111111,0,17.62916667,0.47638889,0,0,0,2.11436355,11.62486111,0.68703333,0.96969246,0.02809588,1.61531716,0.63905875,0.06690347,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Day-reference.csv index 68ce959394..1dd643cf93 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Thrush, Hermit",224.0000,72.73696905059123 +"Gull, Yellow-legged",160.0000,0 +Nuthatch,112.0000,0 +"Gull, Glaucous-winged",108.0000,0 +"Bunting, Ortolan",96.0000,0 +"Scaup, Lesser",94.0800,13.913782519502021 +Smew,72.0000,0 +Fieldfare,59.3409,6.100056156105137 +"White, Great",52.2000,3.5267548823245414 +Dunlin,42.4937,2.1967513051929584 +"Warbler, Savi's",28.0000,8.48528137423857 +"Goose, Red-breasted",24.0145,1.2257293401539964 +"Accentor, Alpine",23.1111,0.8380524817467393 +Blackbird,20.0000,0 +Dotterel,20.0000,0 +"Shearwater, Balearic",18.9315,1.0384183998010423 +"Swift, Little",18.7500,11.90784930203603 +"Yellowthroat, Common",16.0000,0 +"Egret, Snowy",12.0000,0 +"Kestrel, Lesser",12.0000,0 +"Warbler, Blackpoll",12.0000,0 +Jackdaw,11.0909,0.35773447517085943 +"Martin, Sand",10.9000,0.7273238618387268 +"Bluetail, Red-flanked",10.8868,0.562036409390535 +Chaffinch,10.4839,2.317589156067726 +"Flycatcher, Taiga",9.4136,0.00817111972673608 +"Warbler, Hooded",9.1892,0.3005663947224767 +"Lark, Calandra",8.3335,0.03265027676775671 +"Tern, Caspian",4.2359,0.10099005099930815 +Fulmar,3.0833,0.5345869237466392 +"Chiffchaff, Iberian",2.2970,0.1689240965440023 +"Petrel, Fea's",1.7333,0.7084673076458524 +"Warbler, Cetti's",1.0418,0.029529889560875294 +Bittern,1.0000,0 +Bufflehead,1.0000,0 +"Dowitcher, Short-billed",1.0000,0 +"Harrier, Hen",1.0000,0 +Moorhen,1.0000,0 +"Shearwater, Great",1.0000,0 +"Shearwater, Macaronesian",1.0000,0 +"Spotted, Great",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Month-reference.csv index 68ce959394..1dd643cf93 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Thrush, Hermit",224.0000,72.73696905059123 +"Gull, Yellow-legged",160.0000,0 +Nuthatch,112.0000,0 +"Gull, Glaucous-winged",108.0000,0 +"Bunting, Ortolan",96.0000,0 +"Scaup, Lesser",94.0800,13.913782519502021 +Smew,72.0000,0 +Fieldfare,59.3409,6.100056156105137 +"White, Great",52.2000,3.5267548823245414 +Dunlin,42.4937,2.1967513051929584 +"Warbler, Savi's",28.0000,8.48528137423857 +"Goose, Red-breasted",24.0145,1.2257293401539964 +"Accentor, Alpine",23.1111,0.8380524817467393 +Blackbird,20.0000,0 +Dotterel,20.0000,0 +"Shearwater, Balearic",18.9315,1.0384183998010423 +"Swift, Little",18.7500,11.90784930203603 +"Yellowthroat, Common",16.0000,0 +"Egret, Snowy",12.0000,0 +"Kestrel, Lesser",12.0000,0 +"Warbler, Blackpoll",12.0000,0 +Jackdaw,11.0909,0.35773447517085943 +"Martin, Sand",10.9000,0.7273238618387268 +"Bluetail, Red-flanked",10.8868,0.562036409390535 +Chaffinch,10.4839,2.317589156067726 +"Flycatcher, Taiga",9.4136,0.00817111972673608 +"Warbler, Hooded",9.1892,0.3005663947224767 +"Lark, Calandra",8.3335,0.03265027676775671 +"Tern, Caspian",4.2359,0.10099005099930815 +Fulmar,3.0833,0.5345869237466392 +"Chiffchaff, Iberian",2.2970,0.1689240965440023 +"Petrel, Fea's",1.7333,0.7084673076458524 +"Warbler, Cetti's",1.0418,0.029529889560875294 +Bittern,1.0000,0 +Bufflehead,1.0000,0 +"Dowitcher, Short-billed",1.0000,0 +"Harrier, Hen",1.0000,0 +Moorhen,1.0000,0 +"Shearwater, Great",1.0000,0 +"Shearwater, Macaronesian",1.0000,0 +"Spotted, Great",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..1dd643cf93 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Thrush, Hermit",224.0000,72.73696905059123 +"Gull, Yellow-legged",160.0000,0 +Nuthatch,112.0000,0 +"Gull, Glaucous-winged",108.0000,0 +"Bunting, Ortolan",96.0000,0 +"Scaup, Lesser",94.0800,13.913782519502021 +Smew,72.0000,0 +Fieldfare,59.3409,6.100056156105137 +"White, Great",52.2000,3.5267548823245414 +Dunlin,42.4937,2.1967513051929584 +"Warbler, Savi's",28.0000,8.48528137423857 +"Goose, Red-breasted",24.0145,1.2257293401539964 +"Accentor, Alpine",23.1111,0.8380524817467393 +Blackbird,20.0000,0 +Dotterel,20.0000,0 +"Shearwater, Balearic",18.9315,1.0384183998010423 +"Swift, Little",18.7500,11.90784930203603 +"Yellowthroat, Common",16.0000,0 +"Egret, Snowy",12.0000,0 +"Kestrel, Lesser",12.0000,0 +"Warbler, Blackpoll",12.0000,0 +Jackdaw,11.0909,0.35773447517085943 +"Martin, Sand",10.9000,0.7273238618387268 +"Bluetail, Red-flanked",10.8868,0.562036409390535 +Chaffinch,10.4839,2.317589156067726 +"Flycatcher, Taiga",9.4136,0.00817111972673608 +"Warbler, Hooded",9.1892,0.3005663947224767 +"Lark, Calandra",8.3335,0.03265027676775671 +"Tern, Caspian",4.2359,0.10099005099930815 +Fulmar,3.0833,0.5345869237466392 +"Chiffchaff, Iberian",2.2970,0.1689240965440023 +"Petrel, Fea's",1.7333,0.7084673076458524 +"Warbler, Cetti's",1.0418,0.029529889560875294 +Bittern,1.0000,0 +Bufflehead,1.0000,0 +"Dowitcher, Short-billed",1.0000,0 +"Harrier, Hen",1.0000,0 +Moorhen,1.0000,0 +"Shearwater, Great",1.0000,0 +"Shearwater, Macaronesian",1.0000,0 +"Spotted, Great",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Year-reference.csv index 68ce959394..1dd643cf93 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"Thrush, Hermit",224.0000,72.73696905059123 +"Gull, Yellow-legged",160.0000,0 +Nuthatch,112.0000,0 +"Gull, Glaucous-winged",108.0000,0 +"Bunting, Ortolan",96.0000,0 +"Scaup, Lesser",94.0800,13.913782519502021 +Smew,72.0000,0 +Fieldfare,59.3409,6.100056156105137 +"White, Great",52.2000,3.5267548823245414 +Dunlin,42.4937,2.1967513051929584 +"Warbler, Savi's",28.0000,8.48528137423857 +"Goose, Red-breasted",24.0145,1.2257293401539964 +"Accentor, Alpine",23.1111,0.8380524817467393 +Blackbird,20.0000,0 +Dotterel,20.0000,0 +"Shearwater, Balearic",18.9315,1.0384183998010423 +"Swift, Little",18.7500,11.90784930203603 +"Yellowthroat, Common",16.0000,0 +"Egret, Snowy",12.0000,0 +"Kestrel, Lesser",12.0000,0 +"Warbler, Blackpoll",12.0000,0 +Jackdaw,11.0909,0.35773447517085943 +"Martin, Sand",10.9000,0.7273238618387268 +"Bluetail, Red-flanked",10.8868,0.562036409390535 +Chaffinch,10.4839,2.317589156067726 +"Flycatcher, Taiga",9.4136,0.00817111972673608 +"Warbler, Hooded",9.1892,0.3005663947224767 +"Lark, Calandra",8.3335,0.03265027676775671 +"Tern, Caspian",4.2359,0.10099005099930815 +Fulmar,3.0833,0.5345869237466392 +"Chiffchaff, Iberian",2.2970,0.1689240965440023 +"Petrel, Fea's",1.7333,0.7084673076458524 +"Warbler, Cetti's",1.0418,0.029529889560875294 +Bittern,1.0000,0 +Bufflehead,1.0000,0 +"Dowitcher, Short-billed",1.0000,0 +"Harrier, Hen",1.0000,0 +Moorhen,1.0000,0 +"Shearwater, Great",1.0000,0 +"Shearwater, Macaronesian",1.0000,0 +"Spotted, Great",1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Day-reference.csv index a1b1711e0c..bdcbce68f9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Thrush, Hermit] Job Size: Per Job (Core Count)","[Gull, Yellow-legged] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Nuthatch] Job Size: Per Job (Core Count)","[Gull, Glaucous-winged] Job Size: Per Job (Core Count)","[Bunting, Ortolan] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[White, Great] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Savi's] Job Size: Per Job (Core Count)","[Goose, Red-breasted] Job Size: Per Job (Core Count)","[Swift, Little] Job Size: Per Job (Core Count)","[Accentor, Alpine] Job Size: Per Job (Core Count)","[Shearwater, Balearic] Job Size: Per Job (Core Count)","[Blackbird] Job Size: Per Job (Core Count)","[Dotterel] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Yellowthroat, Common] Job Size: Per Job (Core Count)","[Bluetail, Red-flanked] Job Size: Per Job (Core Count)","[Egret, Snowy] Job Size: Per Job (Core Count)","[Kestrel, Lesser] Job Size: Per Job (Core Count)","[Warbler, Blackpoll] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Martin, Sand] Job Size: Per Job (Core Count)","[Flycatcher, Taiga] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Lark, Calandra] Job Size: Per Job (Core Count)","[Tern, Caspian] Job Size: Per Job (Core Count)","[Fulmar] Job Size: Per Job (Core Count)","[Petrel, Fea's] Job Size: Per Job (Core Count)","[Chiffchaff, Iberian] Job Size: Per Job (Core Count)","[Warbler, Cetti's] Job Size: Per Job (Core Count)","[Bittern] Job Size: Per Job (Core Count)","[Bufflehead] Job Size: Per Job (Core Count)","[Dowitcher, Short-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Shearwater, Great] Job Size: Per Job (Core Count)","[Shearwater, Macaronesian] Job Size: Per Job (Core Count)","[Spotted, Great] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,12.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,12.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,18.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,16.0000,0,0,0,0,0,0,0,18.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,96.0000,0,72.0000,0,0,0,0,0,69.3333,0,0,38.0000,0,16.0000,0,0,0,0,0,1.0000,0,25.7143,13.5000,8.0000,12.0000,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-28,0,0,183.1111,0,0,0,96.0000,0,60.0000,0,0,0,0,0,34.6667,0,20.0000,38.0000,0,16.0000,0,12.0000,12.0000,0,0,1.0000,8.0000,26.6000,13.5000,8.0000,12.0000,0,0,0,1.0000,0,0,1.0000,1.0000,0,0 -2016-12-29,0,160.0000,183.1111,112.0000,0,96.0000,91.8696,72.0000,60.0000,0,40.0000,0,0,0,27.0400,0,20.0000,38.0000,0,16.0000,0,12.0000,12.0000,11.2727,5.0000,9.3672,8.0000,17.9259,9.4167,2.3548,12.0000,2.0000,56.0000,0,1.0000,0,1.0000,1.0000,1.0000,0,0 -2016-12-30,224.0000,160.0000,141.5385,112.0000,108.0000,96.0000,77.9286,72.0000,61.7143,44.0444,28.0000,24.6500,23.3333,0,20.1250,20.0000,20.0000,38.0000,16.0000,16.0000,0,12.0000,12.0000,11.2000,5.0000,9.0887,9.0000,8.2788,4.2351,2.7941,1.7333,9.5000,1.0647,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,336.0000,0,146.4615,112.0000,0,96.0000,78.0833,72.0000,53.0000,92.4000,40.0000,24.4615,32.5000,23.1111,16.4337,0,0,30.0000,0,10.3542,12.0000,12.0000,0,10.8889,11.4286,9.8789,10.0000,8.2365,8.3000,8.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000 -2017-01-01,0,160.0000,32.0000,0,0,96.0000,53.0000,0,49.3333,37.8993,0,24.0000,5.0000,23.1111,0,0,0,8.1852,0,10.5532,12.0000,12.0000,0,10.4000,12.0000,9.1352,8.0000,10.4080,8.5000,8.0000,0,2.0000,0,1.0000,1.0000,1.0000,0,1.0000,0,0,0 +Day,"[Thrush, Hermit] Job Size: Per Job (Core Count)","[Gull, Yellow-legged] Job Size: Per Job (Core Count)","[Nuthatch] Job Size: Per Job (Core Count)","[Gull, Glaucous-winged] Job Size: Per Job (Core Count)","[Bunting, Ortolan] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[White, Great] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Savi's] Job Size: Per Job (Core Count)","[Goose, Red-breasted] Job Size: Per Job (Core Count)","[Accentor, Alpine] Job Size: Per Job (Core Count)","[Blackbird] Job Size: Per Job (Core Count)","[Dotterel] Job Size: Per Job (Core Count)","[Shearwater, Balearic] Job Size: Per Job (Core Count)","[Swift, Little] Job Size: Per Job (Core Count)","[Yellowthroat, Common] Job Size: Per Job (Core Count)","[Egret, Snowy] Job Size: Per Job (Core Count)","[Kestrel, Lesser] Job Size: Per Job (Core Count)","[Warbler, Blackpoll] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Martin, Sand] Job Size: Per Job (Core Count)","[Bluetail, Red-flanked] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Flycatcher, Taiga] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Lark, Calandra] Job Size: Per Job (Core Count)","[Tern, Caspian] Job Size: Per Job (Core Count)","[Fulmar] Job Size: Per Job (Core Count)","[Chiffchaff, Iberian] Job Size: Per Job (Core Count)","[Petrel, Fea's] Job Size: Per Job (Core Count)","[Warbler, Cetti's] Job Size: Per Job (Core Count)","[Bittern] Job Size: Per Job (Core Count)","[Bufflehead] Job Size: Per Job (Core Count)","[Dowitcher, Short-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Shearwater, Great] Job Size: Per Job (Core Count)","[Shearwater, Macaronesian] Job Size: Per Job (Core Count)","[Spotted, Great] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,12.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,12.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,18.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.0000,12.0000,0,0,18.0000,1.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,0,96.0000,72.0000,0,0,0,0,0,0,69.3333,0,0,0,0,0,0,0,16.0000,38.0000,1.0000,0,25.7143,13.5000,8.0000,0,12.0000,0,0,0,0,0,0,1.0000,0,0 +2016-12-28,0,0,0,0,0,183.1111,0,96.0000,60.0000,0,0,0,0,0,20.0000,34.6667,0,0,0,12.0000,12.0000,0,0,16.0000,38.0000,1.0000,8.0000,26.6000,13.5000,8.0000,0,12.0000,0,0,1.0000,0,0,1.0000,1.0000,0,0 +2016-12-29,0,160.0000,112.0000,0,96.0000,183.1111,72.0000,91.8696,60.0000,0,40.0000,0,0,0,20.0000,27.0400,0,0,0,12.0000,12.0000,11.2727,5.0000,16.0000,38.0000,9.3672,8.0000,17.9259,9.4167,2.3548,2.0000,12.0000,56.0000,0,1.0000,0,1.0000,1.0000,1.0000,0,0 +2016-12-30,224.0000,160.0000,112.0000,108.0000,96.0000,141.5385,72.0000,77.9286,61.7143,44.0444,28.0000,24.6500,0,20.0000,20.0000,20.1250,23.3333,16.0000,0,12.0000,12.0000,11.2000,5.0000,16.0000,38.0000,9.0887,9.0000,8.2788,4.2351,2.7941,9.5000,1.7333,1.0647,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,336.0000,0,112.0000,0,96.0000,146.4615,72.0000,78.0833,53.0000,92.4000,40.0000,24.4615,23.1111,0,0,16.4337,32.5000,0,12.0000,12.0000,0,10.8889,11.4286,10.3542,30.0000,9.8789,10.0000,8.2365,8.3000,8.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,1.0000 +2017-01-01,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,12.0000,12.0000,0,10.4000,12.0000,10.5532,8.1852,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,0,1.0000,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Month-reference.csv index 73ad046611..39cdd700ac 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Thrush, Hermit] Job Size: Per Job (Core Count)","[Gull, Yellow-legged] Job Size: Per Job (Core Count)","[Nuthatch] Job Size: Per Job (Core Count)","[Gull, Glaucous-winged] Job Size: Per Job (Core Count)","[Bunting, Ortolan] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[White, Great] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Savi's] Job Size: Per Job (Core Count)","[Goose, Red-breasted] Job Size: Per Job (Core Count)","[Accentor, Alpine] Job Size: Per Job (Core Count)","[Blackbird] Job Size: Per Job (Core Count)","[Dotterel] Job Size: Per Job (Core Count)","[Shearwater, Balearic] Job Size: Per Job (Core Count)","[Swift, Little] Job Size: Per Job (Core Count)","[Yellowthroat, Common] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Egret, Snowy] Job Size: Per Job (Core Count)","[Kestrel, Lesser] Job Size: Per Job (Core Count)","[Warbler, Blackpoll] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Martin, Sand] Job Size: Per Job (Core Count)","[Bluetail, Red-flanked] Job Size: Per Job (Core Count)","[Flycatcher, Taiga] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Lark, Calandra] Job Size: Per Job (Core Count)","[Tern, Caspian] Job Size: Per Job (Core Count)","[Fulmar] Job Size: Per Job (Core Count)","[Chiffchaff, Iberian] Job Size: Per Job (Core Count)","[Petrel, Fea's] Job Size: Per Job (Core Count)","[Warbler, Cetti's] Job Size: Per Job (Core Count)","[Bittern] Job Size: Per Job (Core Count)","[Bufflehead] Job Size: Per Job (Core Count)","[Dowitcher, Short-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Shearwater, Great] Job Size: Per Job (Core Count)","[Shearwater, Macaronesian] Job Size: Per Job (Core Count)","[Spotted, Great] Job Size: Per Job (Core Count)" -2016-12,224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,30.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.8868,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017-01,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,8.1852,12.0000,12.0000,0,10.4000,12.0000,10.5532,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,0,1.0000,0,0,0 +Month,"[Thrush, Hermit] Job Size: Per Job (Core Count)","[Gull, Yellow-legged] Job Size: Per Job (Core Count)","[Nuthatch] Job Size: Per Job (Core Count)","[Gull, Glaucous-winged] Job Size: Per Job (Core Count)","[Bunting, Ortolan] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[White, Great] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Savi's] Job Size: Per Job (Core Count)","[Goose, Red-breasted] Job Size: Per Job (Core Count)","[Accentor, Alpine] Job Size: Per Job (Core Count)","[Blackbird] Job Size: Per Job (Core Count)","[Dotterel] Job Size: Per Job (Core Count)","[Shearwater, Balearic] Job Size: Per Job (Core Count)","[Swift, Little] Job Size: Per Job (Core Count)","[Yellowthroat, Common] Job Size: Per Job (Core Count)","[Egret, Snowy] Job Size: Per Job (Core Count)","[Kestrel, Lesser] Job Size: Per Job (Core Count)","[Warbler, Blackpoll] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Martin, Sand] Job Size: Per Job (Core Count)","[Bluetail, Red-flanked] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Flycatcher, Taiga] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Lark, Calandra] Job Size: Per Job (Core Count)","[Tern, Caspian] Job Size: Per Job (Core Count)","[Fulmar] Job Size: Per Job (Core Count)","[Chiffchaff, Iberian] Job Size: Per Job (Core Count)","[Petrel, Fea's] Job Size: Per Job (Core Count)","[Warbler, Cetti's] Job Size: Per Job (Core Count)","[Bittern] Job Size: Per Job (Core Count)","[Bufflehead] Job Size: Per Job (Core Count)","[Dowitcher, Short-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Shearwater, Great] Job Size: Per Job (Core Count)","[Shearwater, Macaronesian] Job Size: Per Job (Core Count)","[Spotted, Great] Job Size: Per Job (Core Count)" +2016-12,224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.8868,30.0000,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017-01,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,12.0000,12.0000,0,10.4000,12.0000,10.5532,8.1852,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,0,1.0000,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv index 5e76c0d684..0859fff7c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Thrush, Hermit] Job Size: Per Job (Core Count)","[Gull, Yellow-legged] Job Size: Per Job (Core Count)","[Nuthatch] Job Size: Per Job (Core Count)","[Gull, Glaucous-winged] Job Size: Per Job (Core Count)","[Bunting, Ortolan] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[White, Great] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Savi's] Job Size: Per Job (Core Count)","[Goose, Red-breasted] Job Size: Per Job (Core Count)","[Accentor, Alpine] Job Size: Per Job (Core Count)","[Blackbird] Job Size: Per Job (Core Count)","[Dotterel] Job Size: Per Job (Core Count)","[Shearwater, Balearic] Job Size: Per Job (Core Count)","[Swift, Little] Job Size: Per Job (Core Count)","[Yellowthroat, Common] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Egret, Snowy] Job Size: Per Job (Core Count)","[Kestrel, Lesser] Job Size: Per Job (Core Count)","[Warbler, Blackpoll] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Martin, Sand] Job Size: Per Job (Core Count)","[Bluetail, Red-flanked] Job Size: Per Job (Core Count)","[Flycatcher, Taiga] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Lark, Calandra] Job Size: Per Job (Core Count)","[Tern, Caspian] Job Size: Per Job (Core Count)","[Fulmar] Job Size: Per Job (Core Count)","[Chiffchaff, Iberian] Job Size: Per Job (Core Count)","[Petrel, Fea's] Job Size: Per Job (Core Count)","[Warbler, Cetti's] Job Size: Per Job (Core Count)","[Bittern] Job Size: Per Job (Core Count)","[Bufflehead] Job Size: Per Job (Core Count)","[Dowitcher, Short-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Shearwater, Great] Job Size: Per Job (Core Count)","[Shearwater, Macaronesian] Job Size: Per Job (Core Count)","[Spotted, Great] Job Size: Per Job (Core Count)" -"2016 Q4",224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,30.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.8868,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -"2017 Q1",0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,8.1852,12.0000,12.0000,0,10.4000,12.0000,10.5532,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,0,1.0000,0,0,0 +Quarter,"[Thrush, Hermit] Job Size: Per Job (Core Count)","[Gull, Yellow-legged] Job Size: Per Job (Core Count)","[Nuthatch] Job Size: Per Job (Core Count)","[Gull, Glaucous-winged] Job Size: Per Job (Core Count)","[Bunting, Ortolan] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[White, Great] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Savi's] Job Size: Per Job (Core Count)","[Goose, Red-breasted] Job Size: Per Job (Core Count)","[Accentor, Alpine] Job Size: Per Job (Core Count)","[Blackbird] Job Size: Per Job (Core Count)","[Dotterel] Job Size: Per Job (Core Count)","[Shearwater, Balearic] Job Size: Per Job (Core Count)","[Swift, Little] Job Size: Per Job (Core Count)","[Yellowthroat, Common] Job Size: Per Job (Core Count)","[Egret, Snowy] Job Size: Per Job (Core Count)","[Kestrel, Lesser] Job Size: Per Job (Core Count)","[Warbler, Blackpoll] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Martin, Sand] Job Size: Per Job (Core Count)","[Bluetail, Red-flanked] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Flycatcher, Taiga] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Lark, Calandra] Job Size: Per Job (Core Count)","[Tern, Caspian] Job Size: Per Job (Core Count)","[Fulmar] Job Size: Per Job (Core Count)","[Chiffchaff, Iberian] Job Size: Per Job (Core Count)","[Petrel, Fea's] Job Size: Per Job (Core Count)","[Warbler, Cetti's] Job Size: Per Job (Core Count)","[Bittern] Job Size: Per Job (Core Count)","[Bufflehead] Job Size: Per Job (Core Count)","[Dowitcher, Short-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Shearwater, Great] Job Size: Per Job (Core Count)","[Shearwater, Macaronesian] Job Size: Per Job (Core Count)","[Spotted, Great] Job Size: Per Job (Core Count)" +"2016 Q4",224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.8868,30.0000,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +"2017 Q1",0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,12.0000,12.0000,0,10.4000,12.0000,10.5532,8.1852,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,0,1.0000,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Year-reference.csv index eae0479654..c11f491dc4 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_processors/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Thrush, Hermit] Job Size: Per Job (Core Count)","[Gull, Yellow-legged] Job Size: Per Job (Core Count)","[Nuthatch] Job Size: Per Job (Core Count)","[Gull, Glaucous-winged] Job Size: Per Job (Core Count)","[Bunting, Ortolan] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[White, Great] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Savi's] Job Size: Per Job (Core Count)","[Goose, Red-breasted] Job Size: Per Job (Core Count)","[Accentor, Alpine] Job Size: Per Job (Core Count)","[Blackbird] Job Size: Per Job (Core Count)","[Dotterel] Job Size: Per Job (Core Count)","[Shearwater, Balearic] Job Size: Per Job (Core Count)","[Swift, Little] Job Size: Per Job (Core Count)","[Yellowthroat, Common] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Egret, Snowy] Job Size: Per Job (Core Count)","[Kestrel, Lesser] Job Size: Per Job (Core Count)","[Warbler, Blackpoll] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Martin, Sand] Job Size: Per Job (Core Count)","[Bluetail, Red-flanked] Job Size: Per Job (Core Count)","[Flycatcher, Taiga] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Lark, Calandra] Job Size: Per Job (Core Count)","[Tern, Caspian] Job Size: Per Job (Core Count)","[Fulmar] Job Size: Per Job (Core Count)","[Chiffchaff, Iberian] Job Size: Per Job (Core Count)","[Petrel, Fea's] Job Size: Per Job (Core Count)","[Warbler, Cetti's] Job Size: Per Job (Core Count)","[Bittern] Job Size: Per Job (Core Count)","[Bufflehead] Job Size: Per Job (Core Count)","[Dowitcher, Short-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Shearwater, Great] Job Size: Per Job (Core Count)","[Shearwater, Macaronesian] Job Size: Per Job (Core Count)","[Spotted, Great] Job Size: Per Job (Core Count)" -2016,224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,30.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.8868,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2017,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,8.1852,12.0000,12.0000,0,10.4000,12.0000,10.5532,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,0,1.0000,0,0,0 +Year,"[Thrush, Hermit] Job Size: Per Job (Core Count)","[Gull, Yellow-legged] Job Size: Per Job (Core Count)","[Nuthatch] Job Size: Per Job (Core Count)","[Gull, Glaucous-winged] Job Size: Per Job (Core Count)","[Bunting, Ortolan] Job Size: Per Job (Core Count)","[Scaup, Lesser] Job Size: Per Job (Core Count)","[Smew] Job Size: Per Job (Core Count)","[Fieldfare] Job Size: Per Job (Core Count)","[White, Great] Job Size: Per Job (Core Count)","[Dunlin] Job Size: Per Job (Core Count)","[Warbler, Savi's] Job Size: Per Job (Core Count)","[Goose, Red-breasted] Job Size: Per Job (Core Count)","[Accentor, Alpine] Job Size: Per Job (Core Count)","[Blackbird] Job Size: Per Job (Core Count)","[Dotterel] Job Size: Per Job (Core Count)","[Shearwater, Balearic] Job Size: Per Job (Core Count)","[Swift, Little] Job Size: Per Job (Core Count)","[Yellowthroat, Common] Job Size: Per Job (Core Count)","[Egret, Snowy] Job Size: Per Job (Core Count)","[Kestrel, Lesser] Job Size: Per Job (Core Count)","[Warbler, Blackpoll] Job Size: Per Job (Core Count)","[Jackdaw] Job Size: Per Job (Core Count)","[Martin, Sand] Job Size: Per Job (Core Count)","[Bluetail, Red-flanked] Job Size: Per Job (Core Count)","[Chaffinch] Job Size: Per Job (Core Count)","[Flycatcher, Taiga] Job Size: Per Job (Core Count)","[Warbler, Hooded] Job Size: Per Job (Core Count)","[Lark, Calandra] Job Size: Per Job (Core Count)","[Tern, Caspian] Job Size: Per Job (Core Count)","[Fulmar] Job Size: Per Job (Core Count)","[Chiffchaff, Iberian] Job Size: Per Job (Core Count)","[Petrel, Fea's] Job Size: Per Job (Core Count)","[Warbler, Cetti's] Job Size: Per Job (Core Count)","[Bittern] Job Size: Per Job (Core Count)","[Bufflehead] Job Size: Per Job (Core Count)","[Dowitcher, Short-billed] Job Size: Per Job (Core Count)","[Harrier, Hen] Job Size: Per Job (Core Count)","[Moorhen] Job Size: Per Job (Core Count)","[Shearwater, Great] Job Size: Per Job (Core Count)","[Shearwater, Macaronesian] Job Size: Per Job (Core Count)","[Spotted, Great] Job Size: Per Job (Core Count)" +2016,224.0000,160.0000,112.0000,108.0000,96.0000,123.2941,72.0000,69.7188,55.2000,48.8800,28.0000,24.5435,23.1111,20.0000,20.0000,18.9315,23.3333,16.0000,12.0000,12.0000,12.0000,11.0909,10.6250,10.8868,30.0000,9.5143,9.5172,8.2151,4.2402,3.0833,2.2970,1.7333,1.0418,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2017,0,160.0000,0,0,96.0000,32.0000,0,53.0000,49.3333,37.8993,0,24.0000,23.1111,0,0,0,5.0000,0,12.0000,12.0000,0,10.4000,12.0000,10.5532,8.1852,9.1352,8.0000,10.4080,8.5000,8.0000,2.0000,0,0,1.0000,1.0000,1.0000,0,1.0000,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..5b29d9d5c7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Normalized (% of Total Cores)" +"Thrush, Hermit",5.600000000 +"Gull, Yellow-legged",4.000000000 +Nuthatch,2.800000000 +"Gull, Glaucous-winged",2.700000000 +"Bunting, Ortolan",2.400000000 +Smew,1.800000000 +"White, Great",1.305000000 +"Scaup, Lesser",1.176000000 +Dunlin,1.062343096 +Fieldfare,0.741761364 +"Goose, Red-breasted",0.600362319 +"Accentor, Alpine",0.577777778 +Blackbird,0.500000000 +Dotterel,0.500000000 +"Swift, Little",0.468750000 +"Yellowthroat, Common",0.400000000 +"Warbler, Savi's",0.350000000 +"Kestrel, Lesser",0.300000000 +"Warbler, Blackpoll",0.300000000 +"Martin, Sand",0.272500000 +"Bluetail, Red-flanked",0.272169811 +Chaffinch,0.262096774 +"Warbler, Hooded",0.229729730 +"Shearwater, Balearic",0.157762557 +"Egret, Snowy",0.150000000 +Jackdaw,0.138636364 +Fulmar,0.077083333 +"Lark, Calandra",0.069446045 +"Flycatcher, Taiga",0.047068235 +"Petrel, Fea's",0.043333333 +"Tern, Caspian",0.035299257 +"Chiffchaff, Iberian",0.028712871 +"Warbler, Cetti's",0.026044436 +Bittern,0.025000000 +Bufflehead,0.025000000 +"Dowitcher, Short-billed",0.025000000 +"Harrier, Hen",0.025000000 +Moorhen,0.025000000 +"Shearwater, Great",0.025000000 +"Shearwater, Macaronesian",0.025000000 +"Spotted, Great",0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..5b29d9d5c7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Normalized (% of Total Cores)" +"Thrush, Hermit",5.600000000 +"Gull, Yellow-legged",4.000000000 +Nuthatch,2.800000000 +"Gull, Glaucous-winged",2.700000000 +"Bunting, Ortolan",2.400000000 +Smew,1.800000000 +"White, Great",1.305000000 +"Scaup, Lesser",1.176000000 +Dunlin,1.062343096 +Fieldfare,0.741761364 +"Goose, Red-breasted",0.600362319 +"Accentor, Alpine",0.577777778 +Blackbird,0.500000000 +Dotterel,0.500000000 +"Swift, Little",0.468750000 +"Yellowthroat, Common",0.400000000 +"Warbler, Savi's",0.350000000 +"Kestrel, Lesser",0.300000000 +"Warbler, Blackpoll",0.300000000 +"Martin, Sand",0.272500000 +"Bluetail, Red-flanked",0.272169811 +Chaffinch,0.262096774 +"Warbler, Hooded",0.229729730 +"Shearwater, Balearic",0.157762557 +"Egret, Snowy",0.150000000 +Jackdaw,0.138636364 +Fulmar,0.077083333 +"Lark, Calandra",0.069446045 +"Flycatcher, Taiga",0.047068235 +"Petrel, Fea's",0.043333333 +"Tern, Caspian",0.035299257 +"Chiffchaff, Iberian",0.028712871 +"Warbler, Cetti's",0.026044436 +Bittern,0.025000000 +Bufflehead,0.025000000 +"Dowitcher, Short-billed",0.025000000 +"Harrier, Hen",0.025000000 +Moorhen,0.025000000 +"Shearwater, Great",0.025000000 +"Shearwater, Macaronesian",0.025000000 +"Spotted, Great",0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..5b29d9d5c7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Normalized (% of Total Cores)" +"Thrush, Hermit",5.600000000 +"Gull, Yellow-legged",4.000000000 +Nuthatch,2.800000000 +"Gull, Glaucous-winged",2.700000000 +"Bunting, Ortolan",2.400000000 +Smew,1.800000000 +"White, Great",1.305000000 +"Scaup, Lesser",1.176000000 +Dunlin,1.062343096 +Fieldfare,0.741761364 +"Goose, Red-breasted",0.600362319 +"Accentor, Alpine",0.577777778 +Blackbird,0.500000000 +Dotterel,0.500000000 +"Swift, Little",0.468750000 +"Yellowthroat, Common",0.400000000 +"Warbler, Savi's",0.350000000 +"Kestrel, Lesser",0.300000000 +"Warbler, Blackpoll",0.300000000 +"Martin, Sand",0.272500000 +"Bluetail, Red-flanked",0.272169811 +Chaffinch,0.262096774 +"Warbler, Hooded",0.229729730 +"Shearwater, Balearic",0.157762557 +"Egret, Snowy",0.150000000 +Jackdaw,0.138636364 +Fulmar,0.077083333 +"Lark, Calandra",0.069446045 +"Flycatcher, Taiga",0.047068235 +"Petrel, Fea's",0.043333333 +"Tern, Caspian",0.035299257 +"Chiffchaff, Iberian",0.028712871 +"Warbler, Cetti's",0.026044436 +Bittern,0.025000000 +Bufflehead,0.025000000 +"Dowitcher, Short-billed",0.025000000 +"Harrier, Hen",0.025000000 +Moorhen,0.025000000 +"Shearwater, Great",0.025000000 +"Shearwater, Macaronesian",0.025000000 +"Spotted, Great",0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..5b29d9d5c7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,50 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by PI" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Normalized (% of Total Cores)" +"Thrush, Hermit",5.600000000 +"Gull, Yellow-legged",4.000000000 +Nuthatch,2.800000000 +"Gull, Glaucous-winged",2.700000000 +"Bunting, Ortolan",2.400000000 +Smew,1.800000000 +"White, Great",1.305000000 +"Scaup, Lesser",1.176000000 +Dunlin,1.062343096 +Fieldfare,0.741761364 +"Goose, Red-breasted",0.600362319 +"Accentor, Alpine",0.577777778 +Blackbird,0.500000000 +Dotterel,0.500000000 +"Swift, Little",0.468750000 +"Yellowthroat, Common",0.400000000 +"Warbler, Savi's",0.350000000 +"Kestrel, Lesser",0.300000000 +"Warbler, Blackpoll",0.300000000 +"Martin, Sand",0.272500000 +"Bluetail, Red-flanked",0.272169811 +Chaffinch,0.262096774 +"Warbler, Hooded",0.229729730 +"Shearwater, Balearic",0.157762557 +"Egret, Snowy",0.150000000 +Jackdaw,0.138636364 +Fulmar,0.077083333 +"Lark, Calandra",0.069446045 +"Flycatcher, Taiga",0.047068235 +"Petrel, Fea's",0.043333333 +"Tern, Caspian",0.035299257 +"Chiffchaff, Iberian",0.028712871 +"Warbler, Cetti's",0.026044436 +Bittern,0.025000000 +Bufflehead,0.025000000 +"Dowitcher, Short-billed",0.025000000 +"Harrier, Hen",0.025000000 +Moorhen,0.025000000 +"Shearwater, Great",0.025000000 +"Shearwater, Macaronesian",0.025000000 +"Spotted, Great",0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv index c463c56677..a1d0049831 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[Thrush, Hermit] Job Size: Normalized (% of Total Cores)","[Gull, Yellow-legged] Job Size: Normalized (% of Total Cores)","[Nuthatch] Job Size: Normalized (% of Total Cores)","[Gull, Glaucous-winged] Job Size: Normalized (% of Total Cores)","[Bunting, Ortolan] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[White, Great] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Goose, Red-breasted] Job Size: Normalized (% of Total Cores)","[Swift, Little] Job Size: Normalized (% of Total Cores)","[Accentor, Alpine] Job Size: Normalized (% of Total Cores)","[Blackbird] Job Size: Normalized (% of Total Cores)","[Dotterel] Job Size: Normalized (% of Total Cores)","[Warbler, Savi's] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Yellowthroat, Common] Job Size: Normalized (% of Total Cores)","[Bluetail, Red-flanked] Job Size: Normalized (% of Total Cores)","[Kestrel, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Blackpoll] Job Size: Normalized (% of Total Cores)","[Martin, Sand] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shearwater, Balearic] Job Size: Normalized (% of Total Cores)","[Egret, Snowy] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Fulmar] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] Job Size: Normalized (% of Total Cores)","[Lark, Calandra] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Chiffchaff, Iberian] Job Size: Normalized (% of Total Cores)","[Warbler, Cetti's] Job Size: Normalized (% of Total Cores)","[Bittern] Job Size: Normalized (% of Total Cores)","[Bufflehead] Job Size: Normalized (% of Total Cores)","[Dowitcher, Short-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Shearwater, Great] Job Size: Normalized (% of Total Cores)","[Shearwater, Macaronesian] Job Size: Normalized (% of Total Cores)","[Spotted, Great] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0.025000000,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0.025000000,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0.450000000,0,0.025000000,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0.400000000,0,0,0,0,0,0,0,0,0,0.450000000,0,0.025000000,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,0,0,0,0,0,1.800000000,0,2.400000000,0,0,0,0,0,0,0.950000000,0,0.400000000,0,0,0,0,1.733333333,0,0,0.200000000,0.300000000,0.321428571,0.025000000,0.168750000,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-28,0,0,0,0,0,0,4.577777778,1.500000000,0,2.400000000,0,0,0,0,0.500000000,0,0.950000000,0,0.400000000,0.300000000,0.300000000,0,0.200000000,0.433333333,0,0,0.200000000,0.300000000,0.332500000,0.025000000,0.168750000,0,0,0,0.025000000,0,0,0.025000000,0.025000000,0,0 -2016-12-29,0,4.000000000,2.800000000,0,2.400000000,1.800000000,4.577777778,1.500000000,0,2.296739130,0,0,0,0,0.500000000,1.000000000,0.950000000,0,0.400000000,0.300000000,0.300000000,0.125000000,0.200000000,0.225333333,0,0.140909091,0.058870968,0.300000000,0.149382716,0.058544922,0.078472222,0.050000000,1.400000000,0,0.025000000,0,0.025000000,0.025000000,0.025000000,0,0 -2016-12-30,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.769230769,1.542857143,1.101111111,0.974107143,0.616250000,0.583333333,0,0.500000000,0.500000000,0.350000000,0.950000000,0.400000000,0.400000000,0.300000000,0.300000000,0.125000000,0.225000000,0.167708333,0,0.140000000,0.069852941,0.043333333,0.068990239,0.045443743,0.035292793,0.118750000,0.026617647,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2016-12-31,8.400000000,0,2.800000000,0,2.400000000,1.800000000,1.830769231,1.325000000,2.310000000,0.976041667,0.611538462,0.812500000,0.577777778,0,0,1.000000000,0.750000000,0,0.258854167,0.300000000,0,0.285714286,0.250000000,0.205421687,0.300000000,0.136111111,0.200000000,0.025000000,0.068637470,0.049394653,0.207500000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0.025000000,0.025000000 -2017-01-01,0,4.000000000,0,0,2.400000000,0,0.800000000,1.233333333,0.947482014,0.662500000,0.600000000,0.125000000,0.577777778,0,0,0,0.204629630,0,0.263829787,0.300000000,0,0.300000000,0.200000000,0,0.150000000,0.130000000,0.200000000,0,0.086733002,0.045675831,0.212500000,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 +Day,"[Thrush, Hermit] Job Size: Normalized (% of Total Cores)","[Gull, Yellow-legged] Job Size: Normalized (% of Total Cores)","[Nuthatch] Job Size: Normalized (% of Total Cores)","[Gull, Glaucous-winged] Job Size: Normalized (% of Total Cores)","[Bunting, Ortolan] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[White, Great] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Goose, Red-breasted] Job Size: Normalized (% of Total Cores)","[Accentor, Alpine] Job Size: Normalized (% of Total Cores)","[Blackbird] Job Size: Normalized (% of Total Cores)","[Dotterel] Job Size: Normalized (% of Total Cores)","[Swift, Little] Job Size: Normalized (% of Total Cores)","[Yellowthroat, Common] Job Size: Normalized (% of Total Cores)","[Warbler, Savi's] Job Size: Normalized (% of Total Cores)","[Kestrel, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Blackpoll] Job Size: Normalized (% of Total Cores)","[Martin, Sand] Job Size: Normalized (% of Total Cores)","[Bluetail, Red-flanked] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shearwater, Balearic] Job Size: Normalized (% of Total Cores)","[Egret, Snowy] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Fulmar] Job Size: Normalized (% of Total Cores)","[Lark, Calandra] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] Job Size: Normalized (% of Total Cores)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Chiffchaff, Iberian] Job Size: Normalized (% of Total Cores)","[Warbler, Cetti's] Job Size: Normalized (% of Total Cores)","[Bittern] Job Size: Normalized (% of Total Cores)","[Bufflehead] Job Size: Normalized (% of Total Cores)","[Dowitcher, Short-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Shearwater, Great] Job Size: Normalized (% of Total Cores)","[Shearwater, Macaronesian] Job Size: Normalized (% of Total Cores)","[Spotted, Great] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0.300000000,0,0,0.025000000,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0.300000000,0,0,0.025000000,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0,0,0.450000000,0,0,0.025000000,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0.300000000,0,0,0,0,0,0.450000000,0,0,0.025000000,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,0,0,0,0,0,1.800000000,0,0,2.400000000,0,0,0,0,0,0,0,0,0,0,0.400000000,0.950000000,0,1.733333333,0,0,0.200000000,0.321428571,0.025000000,0.300000000,0.168750000,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-28,0,0,0,0,0,0,1.500000000,4.577777778,0,2.400000000,0,0,0,0.500000000,0,0,0,0.300000000,0.300000000,0,0.400000000,0.950000000,0.200000000,0.433333333,0,0,0.200000000,0.332500000,0.025000000,0.300000000,0.168750000,0,0,0,0.025000000,0,0,0.025000000,0.025000000,0,0 +2016-12-29,0,4.000000000,2.800000000,0,2.400000000,1.800000000,1.500000000,4.577777778,0,2.296739130,0,0,0,0.500000000,0,0,1.000000000,0.300000000,0.300000000,0.125000000,0.400000000,0.950000000,0.200000000,0.225333333,0,0.140909091,0.058870968,0.149382716,0.058544922,0.300000000,0.078472222,0.050000000,1.400000000,0,0.025000000,0,0.025000000,0.025000000,0.025000000,0,0 +2016-12-30,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.542857143,1.769230769,1.101111111,0.974107143,0.616250000,0,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.300000000,0.300000000,0.125000000,0.400000000,0.950000000,0.225000000,0.167708333,0,0.140000000,0.069852941,0.068990239,0.045443743,0.043333333,0.035292793,0.118750000,0.026617647,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2016-12-31,8.400000000,0,2.800000000,0,2.400000000,1.800000000,1.325000000,1.830769231,2.310000000,0.976041667,0.611538462,0.577777778,0,0,0.812500000,0,1.000000000,0.300000000,0,0.285714286,0.258854167,0.750000000,0.250000000,0.205421687,0.300000000,0.136111111,0.200000000,0.068637470,0.049394653,0.025000000,0.207500000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0.025000000,0.025000000 +2017-01-01,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.300000000,0,0.300000000,0.263829787,0.204629630,0.200000000,0,0.150000000,0.130000000,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv index b9b673d4cb..8b11ff2b1a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[Thrush, Hermit] Job Size: Normalized (% of Total Cores)","[Gull, Yellow-legged] Job Size: Normalized (% of Total Cores)","[Nuthatch] Job Size: Normalized (% of Total Cores)","[Gull, Glaucous-winged] Job Size: Normalized (% of Total Cores)","[Bunting, Ortolan] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[White, Great] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Goose, Red-breasted] Job Size: Normalized (% of Total Cores)","[Accentor, Alpine] Job Size: Normalized (% of Total Cores)","[Blackbird] Job Size: Normalized (% of Total Cores)","[Dotterel] Job Size: Normalized (% of Total Cores)","[Swift, Little] Job Size: Normalized (% of Total Cores)","[Yellowthroat, Common] Job Size: Normalized (% of Total Cores)","[Warbler, Savi's] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Kestrel, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Blackpoll] Job Size: Normalized (% of Total Cores)","[Martin, Sand] Job Size: Normalized (% of Total Cores)","[Bluetail, Red-flanked] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shearwater, Balearic] Job Size: Normalized (% of Total Cores)","[Egret, Snowy] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Fulmar] Job Size: Normalized (% of Total Cores)","[Lark, Calandra] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] Job Size: Normalized (% of Total Cores)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Chiffchaff, Iberian] Job Size: Normalized (% of Total Cores)","[Warbler, Cetti's] Job Size: Normalized (% of Total Cores)","[Bittern] Job Size: Normalized (% of Total Cores)","[Bufflehead] Job Size: Normalized (% of Total Cores)","[Dowitcher, Short-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Shearwater, Great] Job Size: Normalized (% of Total Cores)","[Shearwater, Macaronesian] Job Size: Normalized (% of Total Cores)","[Spotted, Great] Job Size: Normalized (% of Total Cores)" -2016-12,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.750000000,0.300000000,0.300000000,0.265625000,0.272169811,0.237931034,0.157762557,0.300000000,0.138636364,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2017-01,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.204629630,0.300000000,0,0.300000000,0.263829787,0.200000000,0,0.150000000,0.130000000,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 +Month,"[Thrush, Hermit] Job Size: Normalized (% of Total Cores)","[Gull, Yellow-legged] Job Size: Normalized (% of Total Cores)","[Nuthatch] Job Size: Normalized (% of Total Cores)","[Gull, Glaucous-winged] Job Size: Normalized (% of Total Cores)","[Bunting, Ortolan] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[White, Great] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Goose, Red-breasted] Job Size: Normalized (% of Total Cores)","[Accentor, Alpine] Job Size: Normalized (% of Total Cores)","[Blackbird] Job Size: Normalized (% of Total Cores)","[Dotterel] Job Size: Normalized (% of Total Cores)","[Swift, Little] Job Size: Normalized (% of Total Cores)","[Yellowthroat, Common] Job Size: Normalized (% of Total Cores)","[Warbler, Savi's] Job Size: Normalized (% of Total Cores)","[Kestrel, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Blackpoll] Job Size: Normalized (% of Total Cores)","[Martin, Sand] Job Size: Normalized (% of Total Cores)","[Bluetail, Red-flanked] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shearwater, Balearic] Job Size: Normalized (% of Total Cores)","[Egret, Snowy] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Fulmar] Job Size: Normalized (% of Total Cores)","[Lark, Calandra] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] Job Size: Normalized (% of Total Cores)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Chiffchaff, Iberian] Job Size: Normalized (% of Total Cores)","[Warbler, Cetti's] Job Size: Normalized (% of Total Cores)","[Bittern] Job Size: Normalized (% of Total Cores)","[Bufflehead] Job Size: Normalized (% of Total Cores)","[Dowitcher, Short-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Shearwater, Great] Job Size: Normalized (% of Total Cores)","[Shearwater, Macaronesian] Job Size: Normalized (% of Total Cores)","[Spotted, Great] Job Size: Normalized (% of Total Cores)" +2016-12,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.300000000,0.300000000,0.265625000,0.272169811,0.750000000,0.237931034,0.157762557,0.300000000,0.138636364,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2017-01,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.300000000,0,0.300000000,0.263829787,0.204629630,0.200000000,0,0.150000000,0.130000000,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv index f493d0a41a..025a28c0a9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[Thrush, Hermit] Job Size: Normalized (% of Total Cores)","[Gull, Yellow-legged] Job Size: Normalized (% of Total Cores)","[Nuthatch] Job Size: Normalized (% of Total Cores)","[Gull, Glaucous-winged] Job Size: Normalized (% of Total Cores)","[Bunting, Ortolan] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[White, Great] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Goose, Red-breasted] Job Size: Normalized (% of Total Cores)","[Accentor, Alpine] Job Size: Normalized (% of Total Cores)","[Blackbird] Job Size: Normalized (% of Total Cores)","[Dotterel] Job Size: Normalized (% of Total Cores)","[Swift, Little] Job Size: Normalized (% of Total Cores)","[Yellowthroat, Common] Job Size: Normalized (% of Total Cores)","[Warbler, Savi's] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Kestrel, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Blackpoll] Job Size: Normalized (% of Total Cores)","[Martin, Sand] Job Size: Normalized (% of Total Cores)","[Bluetail, Red-flanked] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shearwater, Balearic] Job Size: Normalized (% of Total Cores)","[Egret, Snowy] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Fulmar] Job Size: Normalized (% of Total Cores)","[Lark, Calandra] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] Job Size: Normalized (% of Total Cores)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Chiffchaff, Iberian] Job Size: Normalized (% of Total Cores)","[Warbler, Cetti's] Job Size: Normalized (% of Total Cores)","[Bittern] Job Size: Normalized (% of Total Cores)","[Bufflehead] Job Size: Normalized (% of Total Cores)","[Dowitcher, Short-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Shearwater, Great] Job Size: Normalized (% of Total Cores)","[Shearwater, Macaronesian] Job Size: Normalized (% of Total Cores)","[Spotted, Great] Job Size: Normalized (% of Total Cores)" -"2016 Q4",5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.750000000,0.300000000,0.300000000,0.265625000,0.272169811,0.237931034,0.157762557,0.300000000,0.138636364,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -"2017 Q1",0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.204629630,0.300000000,0,0.300000000,0.263829787,0.200000000,0,0.150000000,0.130000000,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 +Quarter,"[Thrush, Hermit] Job Size: Normalized (% of Total Cores)","[Gull, Yellow-legged] Job Size: Normalized (% of Total Cores)","[Nuthatch] Job Size: Normalized (% of Total Cores)","[Gull, Glaucous-winged] Job Size: Normalized (% of Total Cores)","[Bunting, Ortolan] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[White, Great] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Goose, Red-breasted] Job Size: Normalized (% of Total Cores)","[Accentor, Alpine] Job Size: Normalized (% of Total Cores)","[Blackbird] Job Size: Normalized (% of Total Cores)","[Dotterel] Job Size: Normalized (% of Total Cores)","[Swift, Little] Job Size: Normalized (% of Total Cores)","[Yellowthroat, Common] Job Size: Normalized (% of Total Cores)","[Warbler, Savi's] Job Size: Normalized (% of Total Cores)","[Kestrel, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Blackpoll] Job Size: Normalized (% of Total Cores)","[Martin, Sand] Job Size: Normalized (% of Total Cores)","[Bluetail, Red-flanked] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shearwater, Balearic] Job Size: Normalized (% of Total Cores)","[Egret, Snowy] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Fulmar] Job Size: Normalized (% of Total Cores)","[Lark, Calandra] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] Job Size: Normalized (% of Total Cores)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Chiffchaff, Iberian] Job Size: Normalized (% of Total Cores)","[Warbler, Cetti's] Job Size: Normalized (% of Total Cores)","[Bittern] Job Size: Normalized (% of Total Cores)","[Bufflehead] Job Size: Normalized (% of Total Cores)","[Dowitcher, Short-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Shearwater, Great] Job Size: Normalized (% of Total Cores)","[Shearwater, Macaronesian] Job Size: Normalized (% of Total Cores)","[Spotted, Great] Job Size: Normalized (% of Total Cores)" +"2016 Q4",5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.300000000,0.300000000,0.265625000,0.272169811,0.750000000,0.237931034,0.157762557,0.300000000,0.138636364,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +"2017 Q1",0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.300000000,0,0.300000000,0.263829787,0.204629630,0.200000000,0,0.150000000,0.130000000,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv index dde2350474..60f78f7194 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/normalized_avg_processors/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[Thrush, Hermit] Job Size: Normalized (% of Total Cores)","[Gull, Yellow-legged] Job Size: Normalized (% of Total Cores)","[Nuthatch] Job Size: Normalized (% of Total Cores)","[Gull, Glaucous-winged] Job Size: Normalized (% of Total Cores)","[Bunting, Ortolan] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[White, Great] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Goose, Red-breasted] Job Size: Normalized (% of Total Cores)","[Accentor, Alpine] Job Size: Normalized (% of Total Cores)","[Blackbird] Job Size: Normalized (% of Total Cores)","[Dotterel] Job Size: Normalized (% of Total Cores)","[Swift, Little] Job Size: Normalized (% of Total Cores)","[Yellowthroat, Common] Job Size: Normalized (% of Total Cores)","[Warbler, Savi's] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Kestrel, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Blackpoll] Job Size: Normalized (% of Total Cores)","[Martin, Sand] Job Size: Normalized (% of Total Cores)","[Bluetail, Red-flanked] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shearwater, Balearic] Job Size: Normalized (% of Total Cores)","[Egret, Snowy] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Fulmar] Job Size: Normalized (% of Total Cores)","[Lark, Calandra] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] Job Size: Normalized (% of Total Cores)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Chiffchaff, Iberian] Job Size: Normalized (% of Total Cores)","[Warbler, Cetti's] Job Size: Normalized (% of Total Cores)","[Bittern] Job Size: Normalized (% of Total Cores)","[Bufflehead] Job Size: Normalized (% of Total Cores)","[Dowitcher, Short-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Shearwater, Great] Job Size: Normalized (% of Total Cores)","[Shearwater, Macaronesian] Job Size: Normalized (% of Total Cores)","[Spotted, Great] Job Size: Normalized (% of Total Cores)" -2016,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.750000000,0.300000000,0.300000000,0.265625000,0.272169811,0.237931034,0.157762557,0.300000000,0.138636364,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2017,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.204629630,0.300000000,0,0.300000000,0.263829787,0.200000000,0,0.150000000,0.130000000,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 +Year,"[Thrush, Hermit] Job Size: Normalized (% of Total Cores)","[Gull, Yellow-legged] Job Size: Normalized (% of Total Cores)","[Nuthatch] Job Size: Normalized (% of Total Cores)","[Gull, Glaucous-winged] Job Size: Normalized (% of Total Cores)","[Bunting, Ortolan] Job Size: Normalized (% of Total Cores)","[Smew] Job Size: Normalized (% of Total Cores)","[White, Great] Job Size: Normalized (% of Total Cores)","[Scaup, Lesser] Job Size: Normalized (% of Total Cores)","[Dunlin] Job Size: Normalized (% of Total Cores)","[Fieldfare] Job Size: Normalized (% of Total Cores)","[Goose, Red-breasted] Job Size: Normalized (% of Total Cores)","[Accentor, Alpine] Job Size: Normalized (% of Total Cores)","[Blackbird] Job Size: Normalized (% of Total Cores)","[Dotterel] Job Size: Normalized (% of Total Cores)","[Swift, Little] Job Size: Normalized (% of Total Cores)","[Yellowthroat, Common] Job Size: Normalized (% of Total Cores)","[Warbler, Savi's] Job Size: Normalized (% of Total Cores)","[Kestrel, Lesser] Job Size: Normalized (% of Total Cores)","[Warbler, Blackpoll] Job Size: Normalized (% of Total Cores)","[Martin, Sand] Job Size: Normalized (% of Total Cores)","[Bluetail, Red-flanked] Job Size: Normalized (% of Total Cores)","[Chaffinch] Job Size: Normalized (% of Total Cores)","[Warbler, Hooded] Job Size: Normalized (% of Total Cores)","[Shearwater, Balearic] Job Size: Normalized (% of Total Cores)","[Egret, Snowy] Job Size: Normalized (% of Total Cores)","[Jackdaw] Job Size: Normalized (% of Total Cores)","[Fulmar] Job Size: Normalized (% of Total Cores)","[Lark, Calandra] Job Size: Normalized (% of Total Cores)","[Flycatcher, Taiga] Job Size: Normalized (% of Total Cores)","[Petrel, Fea's] Job Size: Normalized (% of Total Cores)","[Tern, Caspian] Job Size: Normalized (% of Total Cores)","[Chiffchaff, Iberian] Job Size: Normalized (% of Total Cores)","[Warbler, Cetti's] Job Size: Normalized (% of Total Cores)","[Bittern] Job Size: Normalized (% of Total Cores)","[Bufflehead] Job Size: Normalized (% of Total Cores)","[Dowitcher, Short-billed] Job Size: Normalized (% of Total Cores)","[Harrier, Hen] Job Size: Normalized (% of Total Cores)","[Moorhen] Job Size: Normalized (% of Total Cores)","[Shearwater, Great] Job Size: Normalized (% of Total Cores)","[Shearwater, Macaronesian] Job Size: Normalized (% of Total Cores)","[Spotted, Great] Job Size: Normalized (% of Total Cores)" +2016,5.600000000,4.000000000,2.800000000,2.700000000,2.400000000,1.800000000,1.380000000,1.541176471,1.222000000,0.871484375,0.613586957,0.577777778,0.500000000,0.500000000,0.583333333,0.400000000,0.350000000,0.300000000,0.300000000,0.265625000,0.272169811,0.750000000,0.237931034,0.157762557,0.300000000,0.138636364,0.077083333,0.068459546,0.047571583,0.043333333,0.035334646,0.028712871,0.026044436,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2017,0,4.000000000,0,0,2.400000000,0,1.233333333,0.800000000,0.947482014,0.662500000,0.600000000,0.577777778,0,0,0.125000000,0,0,0.300000000,0,0.300000000,0.263829787,0.204629630,0.200000000,0,0.150000000,0.130000000,0.200000000,0.086733002,0.045675831,0,0.212500000,0.050000000,0,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..b00e446a82 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +roti,1244.07001543, +pikelet,657.08909329, +cornbread,249.03877778,41.70324903190007 +crumpet,247.38450980,89.08320735238685 +focaccia,236.92098291,26.6108956407919 +brioche,186.33193056, +brown,154.59506643,41.104792843063635 +barm,138.49833333, +chapti,71.73458333,25.81135523381282 +panettone,65.51148148,37.94894414137108 +bannock,56.47858025,13.419997925806559 +pumpernickel,41.59687500,8.792253378250166 +pita,39.76185185, +white,30.72319343,1.576019047989531 +croutons,22.13566106,2.193319495548494 +nann,13.85848617,0.21603874775956594 +black,4.96075667,0.39050731312870735 +potbrood,4.18053268,0.45111331069582705 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..b104ac07c1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +roti,1244.07001543,206.38455742904313 +pikelet,657.08909329,51.277475129665504 +cornbread,249.03877778,91.16480557715708 +crumpet,247.38450980,187.1142642607946 +focaccia,236.92098291,205.44947089795318 +brioche,186.33193056, +brown,154.59506643,53.70543314926935 +barm,138.49833333, +chapti,71.73458333,39.456096442832205 +panettone,65.51148148,61.73618026540957 +bannock,56.47858025,13.419997925806559 +pumpernickel,41.59687500,23.13876312144338 +pita,39.76185185,6.954023834196349 +white,30.72319343,2.6204061416160993 +croutons,22.13566106,4.758147308851854 +nann,13.85848617,0.21603874775956594 +black,4.96075667,0.7230367811264875 +potbrood,4.18053268,0.45111331069582705 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..b104ac07c1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +roti,1244.07001543,206.38455742904313 +pikelet,657.08909329,51.277475129665504 +cornbread,249.03877778,91.16480557715708 +crumpet,247.38450980,187.1142642607946 +focaccia,236.92098291,205.44947089795318 +brioche,186.33193056, +brown,154.59506643,53.70543314926935 +barm,138.49833333, +chapti,71.73458333,39.456096442832205 +panettone,65.51148148,61.73618026540957 +bannock,56.47858025,13.419997925806559 +pumpernickel,41.59687500,23.13876312144338 +pita,39.76185185,6.954023834196349 +white,30.72319343,2.6204061416160993 +croutons,22.13566106,4.758147308851854 +nann,13.85848617,0.21603874775956594 +black,4.96075667,0.7230367811264875 +potbrood,4.18053268,0.45111331069582705 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..b104ac07c1 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +roti,1244.07001543,206.38455742904313 +pikelet,657.08909329,51.277475129665504 +cornbread,249.03877778,91.16480557715708 +crumpet,247.38450980,187.1142642607946 +focaccia,236.92098291,205.44947089795318 +brioche,186.33193056, +brown,154.59506643,53.70543314926935 +barm,138.49833333, +chapti,71.73458333,39.456096442832205 +panettone,65.51148148,61.73618026540957 +bannock,56.47858025,13.419997925806559 +pumpernickel,41.59687500,23.13876312144338 +pita,39.76185185,6.954023834196349 +white,30.72319343,2.6204061416160993 +croutons,22.13566106,4.758147308851854 +nann,13.85848617,0.21603874775956594 +black,4.96075667,0.7230367811264875 +potbrood,4.18053268,0.45111331069582705 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv index d4905c4bf0..aecd9374c8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[roti] CPU Hours: Per Job","[pikelet] CPU Hours: Per Job","[crumpet] CPU Hours: Per Job","[brown] CPU Hours: Per Job","[cornbread] CPU Hours: Per Job","[focaccia] CPU Hours: Per Job","[brioche] CPU Hours: Per Job","[panettone] CPU Hours: Per Job","[chapti] CPU Hours: Per Job","[bannock] CPU Hours: Per Job","[barm] CPU Hours: Per Job","[pumpernickel] CPU Hours: Per Job","[pita] CPU Hours: Per Job","[white] CPU Hours: Per Job","[croutons] CPU Hours: Per Job","[nann] CPU Hours: Per Job","[black] CPU Hours: Per Job","[potbrood] CPU Hours: Per Job" -2016-12-22,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,203.30000000,0,0,0 -2016-12-23,0,0,0,0,8.60361111,288.00000000,0,0,0,0,0,0,0,0,288.00000000,0,0,0 -2016-12-24,0,0,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,288.00000000,0,0,0 -2016-12-25,0,0,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,116.56750000,0,0,0 -2016-12-26,0,43.26666667,0,0,24.00000000,288.00000000,0,0,0,0,0,0,0,0,432.00000000,0,0,0 -2016-12-27,52.04657407,384.00000000,243.18222222,0,67.98933333,288.00000000,3.21666667,0,0,0,0,0,0,794.11709402,305.01037037,0,136.79555556,0 -2016-12-28,591.26222222,144.42111111,1536.00000000,0,312.00000000,288.00000000,24.00000000,94.01111111,0,0,0,0,0,92.20425573,382.18857143,0,2197.17746032,0 -2016-12-29,642.62349206,382.20422222,1536.00000000,410.97777778,197.56924242,288.00000000,64.67280864,480.00000000,105.63000000,0,7.24000000,52.00416667,28.69444444,71.73057709,122.39944444,0,185.34869732,0 -2016-12-30,325.71734568,302.76555556,312.41422222,256.62628858,174.53574495,288.00000000,71.43784314,27.24407407,66.19722222,50.54044444,48.00000000,28.61481481,19.18227778,23.52835910,12.08797952,0,4.44285199,4.05184127 -2016-12-31,561.31555556,245.43360532,229.70641975,103.53553819,94.71781481,288.00000000,69.87630117,0,23.68777778,78.67925926,48.00000000,7.13333333,22.66768519,21.23818487,11.68358025,2.35937500,3.82502985,3.83706790 -2017-01-01,0,104.22217494,66.65737374,0.96969246,185.80611111,22.07816239,47.93946759,0,0,47.98858586,35.25833333,21.40555556,45.96222222,7.23359666,10.26015720,13.93708148,0.97867284,4.77956522 +Day,"[roti] CPU Hours: Per Job","[pikelet] CPU Hours: Per Job","[cornbread] CPU Hours: Per Job","[crumpet] CPU Hours: Per Job","[focaccia] CPU Hours: Per Job","[brioche] CPU Hours: Per Job","[brown] CPU Hours: Per Job","[barm] CPU Hours: Per Job","[chapti] CPU Hours: Per Job","[panettone] CPU Hours: Per Job","[bannock] CPU Hours: Per Job","[pumpernickel] CPU Hours: Per Job","[pita] CPU Hours: Per Job","[white] CPU Hours: Per Job","[croutons] CPU Hours: Per Job","[nann] CPU Hours: Per Job","[black] CPU Hours: Per Job","[potbrood] CPU Hours: Per Job" +2016-12-22,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0 +2016-12-23,0,0,8.60361111,0,288.00000000,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0 +2016-12-24,0,0,24.00000000,0,288.00000000,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0 +2016-12-25,0,0,24.00000000,0,288.00000000,0,0,0,0,0,0,0,0,0,116.56750000,0,0,0 +2016-12-26,0,43.26666667,24.00000000,0,288.00000000,0,0,0,0,0,0,0,0,0,432.00000000,0,0,0 +2016-12-27,52.04657407,384.00000000,67.98933333,243.18222222,288.00000000,3.21666667,0,0,0,0,0,0,0,794.11709402,305.01037037,0,136.79555556,0 +2016-12-28,591.26222222,144.42111111,312.00000000,1536.00000000,288.00000000,24.00000000,0,0,0,94.01111111,0,0,0,92.20425573,382.18857143,0,2197.17746032,0 +2016-12-29,642.62349206,382.20422222,197.56924242,1536.00000000,288.00000000,64.67280864,410.97777778,7.24000000,105.63000000,480.00000000,0,52.00416667,28.69444444,71.73057709,122.39944444,0,185.34869732,0 +2016-12-30,325.71734568,302.76555556,174.53574495,312.41422222,288.00000000,71.43784314,256.62628858,48.00000000,66.19722222,27.24407407,50.54044444,28.61481481,19.18227778,23.52835910,12.08797952,0,4.44285199,4.05184127 +2016-12-31,561.31555556,245.43360532,94.71781481,229.70641975,288.00000000,69.87630117,103.53553819,48.00000000,23.68777778,0,78.67925926,7.13333333,22.66768519,21.23818487,11.68358025,2.35937500,3.82502985,3.83706790 +2017-01-01,0,104.22217494,185.80611111,66.65737374,22.07816239,47.93946759,0.96969246,35.25833333,0,0,47.98858586,21.40555556,45.96222222,7.23359666,10.26015720,13.93708148,0.97867284,4.77956522 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv index db1094b5a8..cdb86f600f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[roti] CPU Hours: Per Job","[pikelet] CPU Hours: Per Job","[cornbread] CPU Hours: Per Job","[crumpet] CPU Hours: Per Job","[focaccia] CPU Hours: Per Job","[brown] CPU Hours: Per Job","[brioche] CPU Hours: Per Job","[chapti] CPU Hours: Per Job","[barm] CPU Hours: Per Job","[panettone] CPU Hours: Per Job","[bannock] CPU Hours: Per Job","[pumpernickel] CPU Hours: Per Job","[pita] CPU Hours: Per Job","[white] CPU Hours: Per Job","[croutons] CPU Hours: Per Job","[nann] CPU Hours: Per Job","[black] CPU Hours: Per Job","[potbrood] CPU Hours: Per Job" -2016-12,1244.07001543,564.66565514,246.25301768,534.20085470,2792.95666667,221.80616753,157.56825000,71.73458333,103.24000000,65.51148148,61.09250000,48.32731481,32.10148148,43.79903347,26.76184720,2.35937500,5.74575693,3.95831093 -2017-01,0,104.22217494,185.80611111,66.65737374,22.07816239,0.96969246,47.93946759,0,35.25833333,0,47.98858586,21.40555556,45.96222222,7.23359666,10.26015720,13.93708148,0.97867284,4.77956522 +Month,"[roti] CPU Hours: Per Job","[pikelet] CPU Hours: Per Job","[cornbread] CPU Hours: Per Job","[crumpet] CPU Hours: Per Job","[focaccia] CPU Hours: Per Job","[brioche] CPU Hours: Per Job","[brown] CPU Hours: Per Job","[barm] CPU Hours: Per Job","[chapti] CPU Hours: Per Job","[panettone] CPU Hours: Per Job","[bannock] CPU Hours: Per Job","[pumpernickel] CPU Hours: Per Job","[pita] CPU Hours: Per Job","[white] CPU Hours: Per Job","[croutons] CPU Hours: Per Job","[nann] CPU Hours: Per Job","[black] CPU Hours: Per Job","[potbrood] CPU Hours: Per Job" +2016-12,1244.07001543,564.66565514,246.25301768,534.20085470,2792.95666667,157.56825000,221.80616753,103.24000000,71.73458333,65.51148148,61.09250000,48.32731481,32.10148148,43.79903347,26.76184720,2.35937500,5.74575693,3.95831093 +2017-01,0,104.22217494,185.80611111,66.65737374,22.07816239,47.93946759,0.96969246,35.25833333,0,0,47.98858586,21.40555556,45.96222222,7.23359666,10.26015720,13.93708148,0.97867284,4.77956522 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv index 4557506561..aa8e59d3ce 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[roti] CPU Hours: Per Job","[pikelet] CPU Hours: Per Job","[cornbread] CPU Hours: Per Job","[crumpet] CPU Hours: Per Job","[focaccia] CPU Hours: Per Job","[brown] CPU Hours: Per Job","[brioche] CPU Hours: Per Job","[chapti] CPU Hours: Per Job","[barm] CPU Hours: Per Job","[panettone] CPU Hours: Per Job","[bannock] CPU Hours: Per Job","[pumpernickel] CPU Hours: Per Job","[pita] CPU Hours: Per Job","[white] CPU Hours: Per Job","[croutons] CPU Hours: Per Job","[nann] CPU Hours: Per Job","[black] CPU Hours: Per Job","[potbrood] CPU Hours: Per Job" -"2016 Q4",1244.07001543,564.66565514,246.25301768,534.20085470,2792.95666667,221.80616753,157.56825000,71.73458333,103.24000000,65.51148148,61.09250000,48.32731481,32.10148148,43.79903347,26.76184720,2.35937500,5.74575693,3.95831093 -"2017 Q1",0,104.22217494,185.80611111,66.65737374,22.07816239,0.96969246,47.93946759,0,35.25833333,0,47.98858586,21.40555556,45.96222222,7.23359666,10.26015720,13.93708148,0.97867284,4.77956522 +Quarter,"[roti] CPU Hours: Per Job","[pikelet] CPU Hours: Per Job","[cornbread] CPU Hours: Per Job","[crumpet] CPU Hours: Per Job","[focaccia] CPU Hours: Per Job","[brioche] CPU Hours: Per Job","[brown] CPU Hours: Per Job","[barm] CPU Hours: Per Job","[chapti] CPU Hours: Per Job","[panettone] CPU Hours: Per Job","[bannock] CPU Hours: Per Job","[pumpernickel] CPU Hours: Per Job","[pita] CPU Hours: Per Job","[white] CPU Hours: Per Job","[croutons] CPU Hours: Per Job","[nann] CPU Hours: Per Job","[black] CPU Hours: Per Job","[potbrood] CPU Hours: Per Job" +"2016 Q4",1244.07001543,564.66565514,246.25301768,534.20085470,2792.95666667,157.56825000,221.80616753,103.24000000,71.73458333,65.51148148,61.09250000,48.32731481,32.10148148,43.79903347,26.76184720,2.35937500,5.74575693,3.95831093 +"2017 Q1",0,104.22217494,185.80611111,66.65737374,22.07816239,47.93946759,0.96969246,35.25833333,0,0,47.98858586,21.40555556,45.96222222,7.23359666,10.26015720,13.93708148,0.97867284,4.77956522 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv index 8a52ba96d7..aa109e963c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_cpu_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[roti] CPU Hours: Per Job","[pikelet] CPU Hours: Per Job","[cornbread] CPU Hours: Per Job","[crumpet] CPU Hours: Per Job","[focaccia] CPU Hours: Per Job","[brown] CPU Hours: Per Job","[brioche] CPU Hours: Per Job","[chapti] CPU Hours: Per Job","[barm] CPU Hours: Per Job","[panettone] CPU Hours: Per Job","[bannock] CPU Hours: Per Job","[pumpernickel] CPU Hours: Per Job","[pita] CPU Hours: Per Job","[white] CPU Hours: Per Job","[croutons] CPU Hours: Per Job","[nann] CPU Hours: Per Job","[black] CPU Hours: Per Job","[potbrood] CPU Hours: Per Job" -2016,1244.07001543,564.66565514,246.25301768,534.20085470,2792.95666667,221.80616753,157.56825000,71.73458333,103.24000000,65.51148148,61.09250000,48.32731481,32.10148148,43.79903347,26.76184720,2.35937500,5.74575693,3.95831093 -2017,0,104.22217494,185.80611111,66.65737374,22.07816239,0.96969246,47.93946759,0,35.25833333,0,47.98858586,21.40555556,45.96222222,7.23359666,10.26015720,13.93708148,0.97867284,4.77956522 +Year,"[roti] CPU Hours: Per Job","[pikelet] CPU Hours: Per Job","[cornbread] CPU Hours: Per Job","[crumpet] CPU Hours: Per Job","[focaccia] CPU Hours: Per Job","[brioche] CPU Hours: Per Job","[brown] CPU Hours: Per Job","[barm] CPU Hours: Per Job","[chapti] CPU Hours: Per Job","[panettone] CPU Hours: Per Job","[bannock] CPU Hours: Per Job","[pumpernickel] CPU Hours: Per Job","[pita] CPU Hours: Per Job","[white] CPU Hours: Per Job","[croutons] CPU Hours: Per Job","[nann] CPU Hours: Per Job","[black] CPU Hours: Per Job","[potbrood] CPU Hours: Per Job" +2016,1244.07001543,564.66565514,246.25301768,534.20085470,2792.95666667,157.56825000,221.80616753,103.24000000,71.73458333,65.51148148,61.09250000,48.32731481,32.10148148,43.79903347,26.76184720,2.35937500,5.74575693,3.95831093 +2017,0,104.22217494,185.80611111,66.65737374,22.07816239,47.93946759,0.96969246,35.25833333,0,0,47.98858586,21.40555556,45.96222222,7.23359666,10.26015720,13.93708148,0.97867284,4.77956522 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..477959bdf7 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +barm,69.24916667, +pikelet,52.33125262, +brioche,51.98147222, +roti,42.75256173, +crumpet,30.92306373,11.135400919048372 +cornbread,21.01051235,2.3074539084507912 +pita,20.86393519, +focaccia,19.91282051,2.1056822673563573 +brown,10.49397947,2.5351755398719042 +white,8.67351727,0.14507693181437734 +pumpernickel,8.31937500,1.758450675650033 +chapti,5.97788194,2.1509462694844017 +bannock,4.26132716,1.1966226549134287 +panettone,3.27557407,1.8974472070685748 +croutons,1.96935845,0.13184311298229182 +nann,1.15487385,0.01800322897998984 +black,0.39523503,0.02443490458087321 +potbrood,0.35792157,0.03694253683270605 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..b1ad932db2 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +barm,69.24916667, +pikelet,52.33125262, +brioche,51.98147222, +roti,42.75256173,6.325264219699847 +crumpet,30.92306373,23.389283032599334 +cornbread,21.01051235,6.53028328321424 +pita,20.86393519, +focaccia,19.91282051,17.106656154646572 +brown,10.49397947,3.3307345987775676 +white,8.67351727,0.24116888548923435 +pumpernickel,8.31937500,4.627752624288676 +chapti,5.97788194,3.288008036902684 +bannock,4.26132716,1.1966226549134287 +panettone,3.27557407,3.0868090132704915 +croutons,1.96935845,0.29339046762365356 +nann,1.15487385,0.01800322897998984 +black,0.39523503,0.045213844336952275 +potbrood,0.35792157,0.03694253683270605 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..b1ad932db2 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +barm,69.24916667, +pikelet,52.33125262, +brioche,51.98147222, +roti,42.75256173,6.325264219699847 +crumpet,30.92306373,23.389283032599334 +cornbread,21.01051235,6.53028328321424 +pita,20.86393519, +focaccia,19.91282051,17.106656154646572 +brown,10.49397947,3.3307345987775676 +white,8.67351727,0.24116888548923435 +pumpernickel,8.31937500,4.627752624288676 +chapti,5.97788194,3.288008036902684 +bannock,4.26132716,1.1966226549134287 +panettone,3.27557407,3.0868090132704915 +croutons,1.96935845,0.29339046762365356 +nann,1.15487385,0.01800322897998984 +black,0.39523503,0.045213844336952275 +potbrood,0.35792157,0.03694253683270605 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..b1ad932db2 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +barm,69.24916667, +pikelet,52.33125262, +brioche,51.98147222, +roti,42.75256173,6.325264219699847 +crumpet,30.92306373,23.389283032599334 +cornbread,21.01051235,6.53028328321424 +pita,20.86393519, +focaccia,19.91282051,17.106656154646572 +brown,10.49397947,3.3307345987775676 +white,8.67351727,0.24116888548923435 +pumpernickel,8.31937500,4.627752624288676 +chapti,5.97788194,3.288008036902684 +bannock,4.26132716,1.1966226549134287 +panettone,3.27557407,3.0868090132704915 +croutons,1.96935845,0.29339046762365356 +nann,1.15487385,0.01800322897998984 +black,0.39523503,0.045213844336952275 +potbrood,0.35792157,0.03694253683270605 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv index 68db53ef85..25925e1a04 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[crumpet] Node Hours: Per Job","[brioche] Node Hours: Per Job","[barm] Node Hours: Per Job","[pikelet] Node Hours: Per Job","[roti] Node Hours: Per Job","[pita] Node Hours: Per Job","[cornbread] Node Hours: Per Job","[focaccia] Node Hours: Per Job","[brown] Node Hours: Per Job","[white] Node Hours: Per Job","[pumpernickel] Node Hours: Per Job","[chapti] Node Hours: Per Job","[bannock] Node Hours: Per Job","[panettone] Node Hours: Per Job","[croutons] Node Hours: Per Job","[nann] Node Hours: Per Job","[black] Node Hours: Per Job","[potbrood] Node Hours: Per Job" +Day,"[barm] Node Hours: Per Job","[pikelet] Node Hours: Per Job","[brioche] Node Hours: Per Job","[roti] Node Hours: Per Job","[crumpet] Node Hours: Per Job","[cornbread] Node Hours: Per Job","[pita] Node Hours: Per Job","[focaccia] Node Hours: Per Job","[brown] Node Hours: Per Job","[white] Node Hours: Per Job","[pumpernickel] Node Hours: Per Job","[chapti] Node Hours: Per Job","[bannock] Node Hours: Per Job","[panettone] Node Hours: Per Job","[croutons] Node Hours: Per Job","[nann] Node Hours: Per Job","[black] Node Hours: Per Job","[potbrood] Node Hours: Per Job" 2016-12-22,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,16.94166667,0,0,0 -2016-12-23,0,0,0,0,0,0,8.60361111,24.00000000,0,0,0,0,0,0,24.00000000,0,0,0 -2016-12-24,0,0,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,24.00000000,0,0,0 -2016-12-25,0,0,0,0,0,0,24.00000000,24.00000000,0,0,0,0,0,0,8.12694444,0,0,0 -2016-12-26,0,0,0,2.70416667,0,0,24.00000000,24.00000000,0,0,0,0,0,0,24.00000000,0,0,0 -2016-12-27,30.39777778,3.21666667,0,24.00000000,2.13466049,0,8.74933333,24.00000000,0,65.88081197,0,0,0,0,16.80314815,0,8.54972222,0 -2016-12-28,192.00000000,24.00000000,0,9.02631944,20.59058081,0,24.00000000,24.00000000,0,14.70378428,0,0,0,4.70055556,22.70619048,0,138.67628968,0 -2016-12-29,192.00000000,18.35067901,3.62000000,23.88776389,21.74269841,7.17361111,16.52601010,24.00000000,25.68611111,16.98205837,10.40083333,8.80250000,0,24.00000000,7.79993056,0,11.81862548,0 -2016-12-30,39.05177778,19.97710784,24.00000000,18.92284722,11.21660494,11.30094444,13.34910354,24.00000000,16.74827932,6.82886056,5.72296296,5.51643519,3.48755556,1.36220370,1.30373306,0,0.37318364,0.36080952 -2016-12-31,28.71330247,18.76051170,24.00000000,23.17923611,17.54111111,16.67157407,6.74688889,24.00000000,7.26913194,7.55344119,1.42666667,1.97398148,7.89157407,0,1.30500376,0.19661458,0.33500607,0.31978395 -2017-01-01,8.33217172,12.59967593,17.62916667,11.20848700,0,11.49055556,11.62486111,2.00925214,0.96969246,2.43695305,4.28111111,0,3.23558081,0,1.24754823,1.16142346,0.08171698,0.39829710 +2016-12-23,0,0,0,0,0,8.60361111,0,24.00000000,0,0,0,0,0,0,24.00000000,0,0,0 +2016-12-24,0,0,0,0,0,24.00000000,0,24.00000000,0,0,0,0,0,0,24.00000000,0,0,0 +2016-12-25,0,0,0,0,0,24.00000000,0,24.00000000,0,0,0,0,0,0,8.12694444,0,0,0 +2016-12-26,0,2.70416667,0,0,0,24.00000000,0,24.00000000,0,0,0,0,0,0,24.00000000,0,0,0 +2016-12-27,0,24.00000000,3.21666667,2.13466049,30.39777778,8.74933333,0,24.00000000,0,65.88081197,0,0,0,0,16.80314815,0,8.54972222,0 +2016-12-28,0,9.02631944,24.00000000,20.59058081,192.00000000,24.00000000,0,24.00000000,0,14.70378428,0,0,0,4.70055556,22.70619048,0,138.67628968,0 +2016-12-29,3.62000000,23.88776389,18.35067901,21.74269841,192.00000000,16.52601010,7.17361111,24.00000000,25.68611111,16.98205837,10.40083333,8.80250000,0,24.00000000,7.79993056,0,11.81862548,0 +2016-12-30,24.00000000,18.92284722,19.97710784,11.21660494,39.05177778,13.34910354,11.30094444,24.00000000,16.74827932,6.82886056,5.72296296,5.51643519,3.48755556,1.36220370,1.30373306,0,0.37318364,0.36080952 +2016-12-31,24.00000000,23.17923611,18.76051170,17.54111111,28.71330247,6.74688889,16.67157407,24.00000000,7.26913194,7.55344119,1.42666667,1.97398148,7.89157407,0,1.30500376,0.19661458,0.33500607,0.31978395 +2017-01-01,17.62916667,11.20848700,12.59967593,0,8.33217172,11.62486111,11.49055556,2.00925214,0.96969246,2.43695305,4.28111111,0,3.23558081,0,1.24754823,1.16142346,0.08171698,0.39829710 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv index f87676124f..11c1b271c5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[roti] Node Hours: Per Job","[barm] Node Hours: Per Job","[brioche] Node Hours: Per Job","[crumpet] Node Hours: Per Job","[pikelet] Node Hours: Per Job","[cornbread] Node Hours: Per Job","[focaccia] Node Hours: Per Job","[pita] Node Hours: Per Job","[brown] Node Hours: Per Job","[pumpernickel] Node Hours: Per Job","[white] Node Hours: Per Job","[chapti] Node Hours: Per Job","[bannock] Node Hours: Per Job","[panettone] Node Hours: Per Job","[croutons] Node Hours: Per Job","[nann] Node Hours: Per Job","[black] Node Hours: Per Job","[potbrood] Node Hours: Per Job" -2016-12,42.75256173,51.62000000,44.42166667,66.77510684,42.39165094,20.95962121,232.74638889,18.94884259,14.66085503,9.66546296,12.08687053,5.97788194,5.13906250,3.27557407,2.23575159,0.19661458,0.45700404,0.34294355 -2017-01,0,17.62916667,12.59967593,8.33217172,11.20848700,11.62486111,2.00925214,11.49055556,0.96969246,4.28111111,2.43695305,0,3.23558081,0,1.24754823,1.16142346,0.08171698,0.39829710 +Month,"[barm] Node Hours: Per Job","[pikelet] Node Hours: Per Job","[brioche] Node Hours: Per Job","[roti] Node Hours: Per Job","[crumpet] Node Hours: Per Job","[cornbread] Node Hours: Per Job","[pita] Node Hours: Per Job","[focaccia] Node Hours: Per Job","[brown] Node Hours: Per Job","[white] Node Hours: Per Job","[pumpernickel] Node Hours: Per Job","[chapti] Node Hours: Per Job","[bannock] Node Hours: Per Job","[panettone] Node Hours: Per Job","[croutons] Node Hours: Per Job","[nann] Node Hours: Per Job","[black] Node Hours: Per Job","[potbrood] Node Hours: Per Job" +2016-12,51.62000000,42.39165094,44.42166667,42.75256173,66.77510684,20.95962121,18.94884259,232.74638889,14.66085503,12.08687053,9.66546296,5.97788194,5.13906250,3.27557407,2.23575159,0.19661458,0.45700404,0.34294355 +2017-01,17.62916667,11.20848700,12.59967593,0,8.33217172,11.62486111,11.49055556,2.00925214,0.96969246,2.43695305,4.28111111,0,3.23558081,0,1.24754823,1.16142346,0.08171698,0.39829710 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv index 4557e45f7c..c0411614a0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[roti] Node Hours: Per Job","[barm] Node Hours: Per Job","[brioche] Node Hours: Per Job","[crumpet] Node Hours: Per Job","[pikelet] Node Hours: Per Job","[cornbread] Node Hours: Per Job","[focaccia] Node Hours: Per Job","[pita] Node Hours: Per Job","[brown] Node Hours: Per Job","[pumpernickel] Node Hours: Per Job","[white] Node Hours: Per Job","[chapti] Node Hours: Per Job","[bannock] Node Hours: Per Job","[panettone] Node Hours: Per Job","[croutons] Node Hours: Per Job","[nann] Node Hours: Per Job","[black] Node Hours: Per Job","[potbrood] Node Hours: Per Job" -"2016 Q4",42.75256173,51.62000000,44.42166667,66.77510684,42.39165094,20.95962121,232.74638889,18.94884259,14.66085503,9.66546296,12.08687053,5.97788194,5.13906250,3.27557407,2.23575159,0.19661458,0.45700404,0.34294355 -"2017 Q1",0,17.62916667,12.59967593,8.33217172,11.20848700,11.62486111,2.00925214,11.49055556,0.96969246,4.28111111,2.43695305,0,3.23558081,0,1.24754823,1.16142346,0.08171698,0.39829710 +Quarter,"[barm] Node Hours: Per Job","[pikelet] Node Hours: Per Job","[brioche] Node Hours: Per Job","[roti] Node Hours: Per Job","[crumpet] Node Hours: Per Job","[cornbread] Node Hours: Per Job","[pita] Node Hours: Per Job","[focaccia] Node Hours: Per Job","[brown] Node Hours: Per Job","[white] Node Hours: Per Job","[pumpernickel] Node Hours: Per Job","[chapti] Node Hours: Per Job","[bannock] Node Hours: Per Job","[panettone] Node Hours: Per Job","[croutons] Node Hours: Per Job","[nann] Node Hours: Per Job","[black] Node Hours: Per Job","[potbrood] Node Hours: Per Job" +"2016 Q4",51.62000000,42.39165094,44.42166667,42.75256173,66.77510684,20.95962121,18.94884259,232.74638889,14.66085503,12.08687053,9.66546296,5.97788194,5.13906250,3.27557407,2.23575159,0.19661458,0.45700404,0.34294355 +"2017 Q1",17.62916667,11.20848700,12.59967593,0,8.33217172,11.62486111,11.49055556,2.00925214,0.96969246,2.43695305,4.28111111,0,3.23558081,0,1.24754823,1.16142346,0.08171698,0.39829710 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv index fd5814ab51..9270b0193a 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_node_hours/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[roti] Node Hours: Per Job","[barm] Node Hours: Per Job","[brioche] Node Hours: Per Job","[crumpet] Node Hours: Per Job","[pikelet] Node Hours: Per Job","[cornbread] Node Hours: Per Job","[focaccia] Node Hours: Per Job","[pita] Node Hours: Per Job","[brown] Node Hours: Per Job","[pumpernickel] Node Hours: Per Job","[white] Node Hours: Per Job","[chapti] Node Hours: Per Job","[bannock] Node Hours: Per Job","[panettone] Node Hours: Per Job","[croutons] Node Hours: Per Job","[nann] Node Hours: Per Job","[black] Node Hours: Per Job","[potbrood] Node Hours: Per Job" -2016,42.75256173,51.62000000,44.42166667,66.77510684,42.39165094,20.95962121,232.74638889,18.94884259,14.66085503,9.66546296,12.08687053,5.97788194,5.13906250,3.27557407,2.23575159,0.19661458,0.45700404,0.34294355 -2017,0,17.62916667,12.59967593,8.33217172,11.20848700,11.62486111,2.00925214,11.49055556,0.96969246,4.28111111,2.43695305,0,3.23558081,0,1.24754823,1.16142346,0.08171698,0.39829710 +Year,"[barm] Node Hours: Per Job","[pikelet] Node Hours: Per Job","[brioche] Node Hours: Per Job","[roti] Node Hours: Per Job","[crumpet] Node Hours: Per Job","[cornbread] Node Hours: Per Job","[pita] Node Hours: Per Job","[focaccia] Node Hours: Per Job","[brown] Node Hours: Per Job","[white] Node Hours: Per Job","[pumpernickel] Node Hours: Per Job","[chapti] Node Hours: Per Job","[bannock] Node Hours: Per Job","[panettone] Node Hours: Per Job","[croutons] Node Hours: Per Job","[nann] Node Hours: Per Job","[black] Node Hours: Per Job","[potbrood] Node Hours: Per Job" +2016,51.62000000,42.39165094,44.42166667,42.75256173,66.77510684,20.95962121,18.94884259,232.74638889,14.66085503,12.08687053,9.66546296,5.97788194,5.13906250,3.27557407,2.23575159,0.19661458,0.45700404,0.34294355 +2017,17.62916667,11.20848700,12.59967593,0,8.33217172,11.62486111,11.49055556,2.00925214,0.96969246,2.43695305,4.28111111,0,3.23558081,0,1.24754823,1.16142346,0.08171698,0.39829710 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Day-reference.csv index 68ce959394..b8f23f9bd5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +roti,30.2778,1.6736991557835712 +crumpet,28.7059,3.585710156019513 +bannock,21.3333,3.5136418447439697 +panettone,20.0000,0 +potbrood,18.8000,1.1660479493010583 +chapti,12.0000,0 +nann,12.0000,0 +pikelet,10.8868,0.562036409390535 +brown,10.6522,3.260812853950742 +black,9.4651,0.012647935956656382 +croutons,8.1820,0.0447461868824424 +cornbread,6.8444,1.5950403240206177 +white,5.7271,0.08705974028424106 +pumpernickel,5.0000,0 +focaccia,4.0769,1.3075182622208246 +brioche,3.7000,0.20124611797498093 +barm,2.0000,0 +pita,2.0000,0.5773502691896257 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Month-reference.csv index 68ce959394..b8f23f9bd5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +roti,30.2778,1.6736991557835712 +crumpet,28.7059,3.585710156019513 +bannock,21.3333,3.5136418447439697 +panettone,20.0000,0 +potbrood,18.8000,1.1660479493010583 +chapti,12.0000,0 +nann,12.0000,0 +pikelet,10.8868,0.562036409390535 +brown,10.6522,3.260812853950742 +black,9.4651,0.012647935956656382 +croutons,8.1820,0.0447461868824424 +cornbread,6.8444,1.5950403240206177 +white,5.7271,0.08705974028424106 +pumpernickel,5.0000,0 +focaccia,4.0769,1.3075182622208246 +brioche,3.7000,0.20124611797498093 +barm,2.0000,0 +pita,2.0000,0.5773502691896257 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..b8f23f9bd5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +roti,30.2778,1.6736991557835712 +crumpet,28.7059,3.585710156019513 +bannock,21.3333,3.5136418447439697 +panettone,20.0000,0 +potbrood,18.8000,1.1660479493010583 +chapti,12.0000,0 +nann,12.0000,0 +pikelet,10.8868,0.562036409390535 +brown,10.6522,3.260812853950742 +black,9.4651,0.012647935956656382 +croutons,8.1820,0.0447461868824424 +cornbread,6.8444,1.5950403240206177 +white,5.7271,0.08705974028424106 +pumpernickel,5.0000,0 +focaccia,4.0769,1.3075182622208246 +brioche,3.7000,0.20124611797498093 +barm,2.0000,0 +pita,2.0000,0.5773502691896257 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Year-reference.csv index 68ce959394..b8f23f9bd5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +roti,30.2778,1.6736991557835712 +crumpet,28.7059,3.585710156019513 +bannock,21.3333,3.5136418447439697 +panettone,20.0000,0 +potbrood,18.8000,1.1660479493010583 +chapti,12.0000,0 +nann,12.0000,0 +pikelet,10.8868,0.562036409390535 +brown,10.6522,3.260812853950742 +black,9.4651,0.012647935956656382 +croutons,8.1820,0.0447461868824424 +cornbread,6.8444,1.5950403240206177 +white,5.7271,0.08705974028424106 +pumpernickel,5.0000,0 +focaccia,4.0769,1.3075182622208246 +brioche,3.7000,0.20124611797498093 +barm,2.0000,0 +pita,2.0000,0.5773502691896257 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Day-reference.csv index c4404576c3..a5f76e484c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[crumpet] Job Size: Per Job (Core Count)","[roti] Job Size: Per Job (Core Count)","[bannock] Job Size: Per Job (Core Count)","[panettone] Job Size: Per Job (Core Count)","[potbrood] Job Size: Per Job (Core Count)","[brown] Job Size: Per Job (Core Count)","[pikelet] Job Size: Per Job (Core Count)","[chapti] Job Size: Per Job (Core Count)","[nann] Job Size: Per Job (Core Count)","[cornbread] Job Size: Per Job (Core Count)","[black] Job Size: Per Job (Core Count)","[croutons] Job Size: Per Job (Core Count)","[focaccia] Job Size: Per Job (Core Count)","[white] Job Size: Per Job (Core Count)","[pumpernickel] Job Size: Per Job (Core Count)","[brioche] Job Size: Per Job (Core Count)","[pita] Job Size: Per Job (Core Count)","[barm] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,12.0000,12.0000,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,1.0000,0,12.0000,12.0000,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,1.0000,0,12.0000,12.0000,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,1.0000,0,18.0000,12.0000,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,16.0000,0,0,1.0000,0,18.0000,12.0000,0,0,0,0,0 -2016-12-27,64.0000,28.5556,0,0,0,0,16.0000,0,0,13.0000,16.0000,17.3333,12.0000,47.6923,0,1.0000,0,0 -2016-12-28,64.0000,29.1818,0,20.0000,0,0,16.0000,0,0,13.0000,122.2857,16.5714,12.0000,6.7099,0,1.0000,0,0 -2016-12-29,64.0000,29.7857,0,20.0000,0,112.0000,16.0000,12.0000,0,14.7273,17.1552,10.5000,12.0000,4.3798,5.0000,3.3333,4.0000,2.0000 -2016-12-30,51.2000,30.2778,29.6000,20.0000,14.0857,25.6667,16.0000,12.0000,0,9.5455,9.0360,8.4553,12.0000,3.9329,5.0000,3.6471,1.6000,2.0000 -2016-12-31,47.1111,32.0000,16.0000,0,21.3704,14.8750,10.3542,12.0000,12.0000,8.3000,9.8497,8.0759,12.0000,3.3146,5.0000,3.6842,2.0000,2.0000 -2017-01-01,19.2727,0,17.8182,0,22.9565,1.0000,10.5532,0,12.0000,8.5000,9.7316,8.1029,4.0769,8.1254,5.0000,3.7500,4.0000,2.0000 +Day,"[roti] Job Size: Per Job (Core Count)","[crumpet] Job Size: Per Job (Core Count)","[bannock] Job Size: Per Job (Core Count)","[panettone] Job Size: Per Job (Core Count)","[potbrood] Job Size: Per Job (Core Count)","[chapti] Job Size: Per Job (Core Count)","[nann] Job Size: Per Job (Core Count)","[pikelet] Job Size: Per Job (Core Count)","[brown] Job Size: Per Job (Core Count)","[black] Job Size: Per Job (Core Count)","[croutons] Job Size: Per Job (Core Count)","[cornbread] Job Size: Per Job (Core Count)","[white] Job Size: Per Job (Core Count)","[pumpernickel] Job Size: Per Job (Core Count)","[focaccia] Job Size: Per Job (Core Count)","[brioche] Job Size: Per Job (Core Count)","[barm] Job Size: Per Job (Core Count)","[pita] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,12.0000,1.0000,0,0,12.0000,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,12.0000,1.0000,0,0,12.0000,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,18.0000,1.0000,0,0,12.0000,0,0,0 +2016-12-26,0,0,0,0,0,0,0,16.0000,0,0,18.0000,1.0000,0,0,12.0000,0,0,0 +2016-12-27,28.5556,64.0000,0,0,0,0,0,16.0000,0,16.0000,17.3333,13.0000,47.6923,0,12.0000,1.0000,0,0 +2016-12-28,29.1818,64.0000,0,20.0000,0,0,0,16.0000,0,122.2857,16.5714,13.0000,6.7099,0,12.0000,1.0000,0,0 +2016-12-29,29.7857,64.0000,0,20.0000,0,12.0000,0,16.0000,112.0000,17.1552,10.5000,14.7273,4.3798,5.0000,12.0000,3.3333,2.0000,4.0000 +2016-12-30,30.2778,51.2000,29.6000,20.0000,14.0857,12.0000,0,16.0000,25.6667,9.0360,8.4553,9.5455,3.9329,5.0000,12.0000,3.6471,2.0000,1.6000 +2016-12-31,32.0000,47.1111,16.0000,0,21.3704,12.0000,12.0000,10.3542,14.8750,9.8497,8.0759,8.3000,3.3146,5.0000,12.0000,3.6842,2.0000,2.0000 +2017-01-01,0,19.2727,17.8182,0,22.9565,0,12.0000,10.5532,1.0000,9.7316,8.1029,8.5000,8.1254,5.0000,4.0769,3.7500,2.0000,4.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Month-reference.csv index eb3f906bfe..e2c55e36a8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[roti] Job Size: Per Job (Core Count)","[crumpet] Job Size: Per Job (Core Count)","[bannock] Job Size: Per Job (Core Count)","[panettone] Job Size: Per Job (Core Count)","[potbrood] Job Size: Per Job (Core Count)","[chapti] Job Size: Per Job (Core Count)","[nann] Job Size: Per Job (Core Count)","[pikelet] Job Size: Per Job (Core Count)","[brown] Job Size: Per Job (Core Count)","[black] Job Size: Per Job (Core Count)","[croutons] Job Size: Per Job (Core Count)","[cornbread] Job Size: Per Job (Core Count)","[white] Job Size: Per Job (Core Count)","[pumpernickel] Job Size: Per Job (Core Count)","[focaccia] Job Size: Per Job (Core Count)","[brioche] Job Size: Per Job (Core Count)","[pita] Job Size: Per Job (Core Count)","[barm] Job Size: Per Job (Core Count)" +Month,"[roti] Job Size: Per Job (Core Count)","[crumpet] Job Size: Per Job (Core Count)","[bannock] Job Size: Per Job (Core Count)","[panettone] Job Size: Per Job (Core Count)","[potbrood] Job Size: Per Job (Core Count)","[chapti] Job Size: Per Job (Core Count)","[nann] Job Size: Per Job (Core Count)","[pikelet] Job Size: Per Job (Core Count)","[brown] Job Size: Per Job (Core Count)","[black] Job Size: Per Job (Core Count)","[croutons] Job Size: Per Job (Core Count)","[cornbread] Job Size: Per Job (Core Count)","[white] Job Size: Per Job (Core Count)","[pumpernickel] Job Size: Per Job (Core Count)","[focaccia] Job Size: Per Job (Core Count)","[brioche] Job Size: Per Job (Core Count)","[barm] Job Size: Per Job (Core Count)","[pita] Job Size: Per Job (Core Count)" 2016-12,30.2778,47.3846,24.5000,20.0000,17.2581,12.0000,12.0000,10.8868,14.8750,9.4220,8.2343,6.9773,3.7834,5.0000,12.0000,3.7000,2.0000,2.0000 -2017-01,0,19.2727,17.8182,0,22.9565,0,12.0000,10.5532,1.0000,9.7316,8.1029,8.5000,8.1254,5.0000,4.0769,3.7500,4.0000,2.0000 +2017-01,0,19.2727,17.8182,0,22.9565,0,12.0000,10.5532,1.0000,9.7316,8.1029,8.5000,8.1254,5.0000,4.0769,3.7500,2.0000,4.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv index 83dd69998b..b798163d33 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[roti] Job Size: Per Job (Core Count)","[crumpet] Job Size: Per Job (Core Count)","[bannock] Job Size: Per Job (Core Count)","[panettone] Job Size: Per Job (Core Count)","[potbrood] Job Size: Per Job (Core Count)","[chapti] Job Size: Per Job (Core Count)","[nann] Job Size: Per Job (Core Count)","[pikelet] Job Size: Per Job (Core Count)","[brown] Job Size: Per Job (Core Count)","[black] Job Size: Per Job (Core Count)","[croutons] Job Size: Per Job (Core Count)","[cornbread] Job Size: Per Job (Core Count)","[white] Job Size: Per Job (Core Count)","[pumpernickel] Job Size: Per Job (Core Count)","[focaccia] Job Size: Per Job (Core Count)","[brioche] Job Size: Per Job (Core Count)","[pita] Job Size: Per Job (Core Count)","[barm] Job Size: Per Job (Core Count)" +Quarter,"[roti] Job Size: Per Job (Core Count)","[crumpet] Job Size: Per Job (Core Count)","[bannock] Job Size: Per Job (Core Count)","[panettone] Job Size: Per Job (Core Count)","[potbrood] Job Size: Per Job (Core Count)","[chapti] Job Size: Per Job (Core Count)","[nann] Job Size: Per Job (Core Count)","[pikelet] Job Size: Per Job (Core Count)","[brown] Job Size: Per Job (Core Count)","[black] Job Size: Per Job (Core Count)","[croutons] Job Size: Per Job (Core Count)","[cornbread] Job Size: Per Job (Core Count)","[white] Job Size: Per Job (Core Count)","[pumpernickel] Job Size: Per Job (Core Count)","[focaccia] Job Size: Per Job (Core Count)","[brioche] Job Size: Per Job (Core Count)","[barm] Job Size: Per Job (Core Count)","[pita] Job Size: Per Job (Core Count)" "2016 Q4",30.2778,47.3846,24.5000,20.0000,17.2581,12.0000,12.0000,10.8868,14.8750,9.4220,8.2343,6.9773,3.7834,5.0000,12.0000,3.7000,2.0000,2.0000 -"2017 Q1",0,19.2727,17.8182,0,22.9565,0,12.0000,10.5532,1.0000,9.7316,8.1029,8.5000,8.1254,5.0000,4.0769,3.7500,4.0000,2.0000 +"2017 Q1",0,19.2727,17.8182,0,22.9565,0,12.0000,10.5532,1.0000,9.7316,8.1029,8.5000,8.1254,5.0000,4.0769,3.7500,2.0000,4.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Year-reference.csv index 1cf74c2a6f..71bdba2fa3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_processors/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[roti] Job Size: Per Job (Core Count)","[crumpet] Job Size: Per Job (Core Count)","[bannock] Job Size: Per Job (Core Count)","[panettone] Job Size: Per Job (Core Count)","[potbrood] Job Size: Per Job (Core Count)","[chapti] Job Size: Per Job (Core Count)","[nann] Job Size: Per Job (Core Count)","[pikelet] Job Size: Per Job (Core Count)","[brown] Job Size: Per Job (Core Count)","[black] Job Size: Per Job (Core Count)","[croutons] Job Size: Per Job (Core Count)","[cornbread] Job Size: Per Job (Core Count)","[white] Job Size: Per Job (Core Count)","[pumpernickel] Job Size: Per Job (Core Count)","[focaccia] Job Size: Per Job (Core Count)","[brioche] Job Size: Per Job (Core Count)","[pita] Job Size: Per Job (Core Count)","[barm] Job Size: Per Job (Core Count)" +Year,"[roti] Job Size: Per Job (Core Count)","[crumpet] Job Size: Per Job (Core Count)","[bannock] Job Size: Per Job (Core Count)","[panettone] Job Size: Per Job (Core Count)","[potbrood] Job Size: Per Job (Core Count)","[chapti] Job Size: Per Job (Core Count)","[nann] Job Size: Per Job (Core Count)","[pikelet] Job Size: Per Job (Core Count)","[brown] Job Size: Per Job (Core Count)","[black] Job Size: Per Job (Core Count)","[croutons] Job Size: Per Job (Core Count)","[cornbread] Job Size: Per Job (Core Count)","[white] Job Size: Per Job (Core Count)","[pumpernickel] Job Size: Per Job (Core Count)","[focaccia] Job Size: Per Job (Core Count)","[brioche] Job Size: Per Job (Core Count)","[barm] Job Size: Per Job (Core Count)","[pita] Job Size: Per Job (Core Count)" 2016,30.2778,47.3846,24.5000,20.0000,17.2581,12.0000,12.0000,10.8868,14.8750,9.4220,8.2343,6.9773,3.7834,5.0000,12.0000,3.7000,2.0000,2.0000 -2017,0,19.2727,17.8182,0,22.9565,0,12.0000,10.5532,1.0000,9.7316,8.1029,8.5000,8.1254,5.0000,4.0769,3.7500,4.0000,2.0000 +2017,0,19.2727,17.8182,0,22.9565,0,12.0000,10.5532,1.0000,9.7316,8.1029,8.5000,8.1254,5.0000,4.0769,3.7500,2.0000,4.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..573b9398bf 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Normalized (% of Total Cores)" +roti,0.756944444 +crumpet,0.717647059 +bannock,0.533333333 +panettone,0.500000000 +potbrood,0.470000000 +chapti,0.300000000 +nann,0.300000000 +pikelet,0.272169811 +brown,0.266304348 +croutons,0.204549951 +cornbread,0.171111111 +white,0.143177842 +pumpernickel,0.125000000 +focaccia,0.101923077 +brioche,0.092500000 +black,0.059157103 +barm,0.050000000 +pita,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..573b9398bf 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Normalized (% of Total Cores)" +roti,0.756944444 +crumpet,0.717647059 +bannock,0.533333333 +panettone,0.500000000 +potbrood,0.470000000 +chapti,0.300000000 +nann,0.300000000 +pikelet,0.272169811 +brown,0.266304348 +croutons,0.204549951 +cornbread,0.171111111 +white,0.143177842 +pumpernickel,0.125000000 +focaccia,0.101923077 +brioche,0.092500000 +black,0.059157103 +barm,0.050000000 +pita,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..573b9398bf 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Normalized (% of Total Cores)" +roti,0.756944444 +crumpet,0.717647059 +bannock,0.533333333 +panettone,0.500000000 +potbrood,0.470000000 +chapti,0.300000000 +nann,0.300000000 +pikelet,0.272169811 +brown,0.266304348 +croutons,0.204549951 +cornbread,0.171111111 +white,0.143177842 +pumpernickel,0.125000000 +focaccia,0.101923077 +brioche,0.092500000 +black,0.059157103 +barm,0.050000000 +pita,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..573b9398bf 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,27 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Queue" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Normalized (% of Total Cores)" +roti,0.756944444 +crumpet,0.717647059 +bannock,0.533333333 +panettone,0.500000000 +potbrood,0.470000000 +chapti,0.300000000 +nann,0.300000000 +pikelet,0.272169811 +brown,0.266304348 +croutons,0.204549951 +cornbread,0.171111111 +white,0.143177842 +pumpernickel,0.125000000 +focaccia,0.101923077 +brioche,0.092500000 +black,0.059157103 +barm,0.050000000 +pita,0.050000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv index 5fea4d86a9..87f113be40 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[crumpet] Job Size: Normalized (% of Total Cores)","[roti] Job Size: Normalized (% of Total Cores)","[bannock] Job Size: Normalized (% of Total Cores)","[panettone] Job Size: Normalized (% of Total Cores)","[potbrood] Job Size: Normalized (% of Total Cores)","[brown] Job Size: Normalized (% of Total Cores)","[pikelet] Job Size: Normalized (% of Total Cores)","[chapti] Job Size: Normalized (% of Total Cores)","[nann] Job Size: Normalized (% of Total Cores)","[cornbread] Job Size: Normalized (% of Total Cores)","[croutons] Job Size: Normalized (% of Total Cores)","[focaccia] Job Size: Normalized (% of Total Cores)","[white] Job Size: Normalized (% of Total Cores)","[pumpernickel] Job Size: Normalized (% of Total Cores)","[brioche] Job Size: Normalized (% of Total Cores)","[black] Job Size: Normalized (% of Total Cores)","[pita] Job Size: Normalized (% of Total Cores)","[barm] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0.025000000,0.300000000,0.300000000,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0.025000000,0.300000000,0.300000000,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0.025000000,0.450000000,0.300000000,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0.400000000,0,0,0.025000000,0.450000000,0.300000000,0,0,0,0,0,0 -2016-12-27,1.600000000,0.713888889,0,0,0,0,0.400000000,0,0,0.325000000,0.433333333,0.300000000,1.192307692,0,0.025000000,0.400000000,0,0 -2016-12-28,1.600000000,0.729545455,0,0.500000000,0,0,0.400000000,0,0,0.325000000,0.414285714,0.300000000,0.167748092,0,0.025000000,1.528571429,0,0 -2016-12-29,1.600000000,0.744642857,0,0.500000000,0,2.800000000,0.400000000,0.300000000,0,0.368181818,0.262500000,0.300000000,0.109496124,0.125000000,0.083333333,0.142959770,0.100000000,0.050000000 -2016-12-30,1.280000000,0.756944444,0.740000000,0.500000000,0.352142857,0.641666667,0.400000000,0.300000000,0,0.238636364,0.211382114,0.300000000,0.098322037,0.125000000,0.091176471,0.056475020,0.040000000,0.050000000 -2016-12-31,1.177777778,0.800000000,0.400000000,0,0.534259259,0.371875000,0.258854167,0.300000000,0.300000000,0.207500000,0.201897019,0.300000000,0.082863947,0.125000000,0.092105263,0.061560861,0.050000000,0.050000000 -2017-01-01,0.481818182,0,0.445454545,0,0.573913043,0.025000000,0.263829787,0,0.300000000,0.212500000,0.202572347,0.101923077,0.203134883,0.125000000,0.093750000,0.060822420,0.100000000,0.050000000 +Day,"[roti] Job Size: Normalized (% of Total Cores)","[crumpet] Job Size: Normalized (% of Total Cores)","[bannock] Job Size: Normalized (% of Total Cores)","[panettone] Job Size: Normalized (% of Total Cores)","[potbrood] Job Size: Normalized (% of Total Cores)","[chapti] Job Size: Normalized (% of Total Cores)","[nann] Job Size: Normalized (% of Total Cores)","[pikelet] Job Size: Normalized (% of Total Cores)","[brown] Job Size: Normalized (% of Total Cores)","[croutons] Job Size: Normalized (% of Total Cores)","[cornbread] Job Size: Normalized (% of Total Cores)","[white] Job Size: Normalized (% of Total Cores)","[pumpernickel] Job Size: Normalized (% of Total Cores)","[focaccia] Job Size: Normalized (% of Total Cores)","[brioche] Job Size: Normalized (% of Total Cores)","[black] Job Size: Normalized (% of Total Cores)","[barm] Job Size: Normalized (% of Total Cores)","[pita] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0.300000000,0.025000000,0,0,0.300000000,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0.300000000,0.025000000,0,0,0.300000000,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0.450000000,0.025000000,0,0,0.300000000,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0.400000000,0,0.450000000,0.025000000,0,0,0.300000000,0,0,0,0 +2016-12-27,0.713888889,1.600000000,0,0,0,0,0,0.400000000,0,0.433333333,0.325000000,1.192307692,0,0.300000000,0.025000000,0.400000000,0,0 +2016-12-28,0.729545455,1.600000000,0,0.500000000,0,0,0,0.400000000,0,0.414285714,0.325000000,0.167748092,0,0.300000000,0.025000000,1.528571429,0,0 +2016-12-29,0.744642857,1.600000000,0,0.500000000,0,0.300000000,0,0.400000000,2.800000000,0.262500000,0.368181818,0.109496124,0.125000000,0.300000000,0.083333333,0.142959770,0.050000000,0.100000000 +2016-12-30,0.756944444,1.280000000,0.740000000,0.500000000,0.352142857,0.300000000,0,0.400000000,0.641666667,0.211382114,0.238636364,0.098322037,0.125000000,0.300000000,0.091176471,0.056475020,0.050000000,0.040000000 +2016-12-31,0.800000000,1.177777778,0.400000000,0,0.534259259,0.300000000,0.300000000,0.258854167,0.371875000,0.201897019,0.207500000,0.082863947,0.125000000,0.300000000,0.092105263,0.061560861,0.050000000,0.050000000 +2017-01-01,0,0.481818182,0.445454545,0,0.573913043,0,0.300000000,0.263829787,0.025000000,0.202572347,0.212500000,0.203134883,0.125000000,0.101923077,0.093750000,0.060822420,0.050000000,0.100000000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv index 8f9f7f5981..c3279e6ee4 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Month-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[roti] Job Size: Normalized (% of Total Cores)","[crumpet] Job Size: Normalized (% of Total Cores)","[bannock] Job Size: Normalized (% of Total Cores)","[panettone] Job Size: Normalized (% of Total Cores)","[potbrood] Job Size: Normalized (% of Total Cores)","[chapti] Job Size: Normalized (% of Total Cores)","[nann] Job Size: Normalized (% of Total Cores)","[pikelet] Job Size: Normalized (% of Total Cores)","[brown] Job Size: Normalized (% of Total Cores)","[croutons] Job Size: Normalized (% of Total Cores)","[cornbread] Job Size: Normalized (% of Total Cores)","[white] Job Size: Normalized (% of Total Cores)","[pumpernickel] Job Size: Normalized (% of Total Cores)","[focaccia] Job Size: Normalized (% of Total Cores)","[brioche] Job Size: Normalized (% of Total Cores)","[black] Job Size: Normalized (% of Total Cores)","[pita] Job Size: Normalized (% of Total Cores)","[barm] Job Size: Normalized (% of Total Cores)" +Month,"[roti] Job Size: Normalized (% of Total Cores)","[crumpet] Job Size: Normalized (% of Total Cores)","[bannock] Job Size: Normalized (% of Total Cores)","[panettone] Job Size: Normalized (% of Total Cores)","[potbrood] Job Size: Normalized (% of Total Cores)","[chapti] Job Size: Normalized (% of Total Cores)","[nann] Job Size: Normalized (% of Total Cores)","[pikelet] Job Size: Normalized (% of Total Cores)","[brown] Job Size: Normalized (% of Total Cores)","[croutons] Job Size: Normalized (% of Total Cores)","[cornbread] Job Size: Normalized (% of Total Cores)","[white] Job Size: Normalized (% of Total Cores)","[pumpernickel] Job Size: Normalized (% of Total Cores)","[focaccia] Job Size: Normalized (% of Total Cores)","[brioche] Job Size: Normalized (% of Total Cores)","[black] Job Size: Normalized (% of Total Cores)","[barm] Job Size: Normalized (% of Total Cores)","[pita] Job Size: Normalized (% of Total Cores)" 2016-12,0.756944444,1.184615385,0.612500000,0.500000000,0.431451613,0.300000000,0.300000000,0.272169811,0.371875000,0.205857741,0.174431818,0.094583983,0.125000000,0.300000000,0.092500000,0.058887797,0.050000000,0.050000000 -2017-01,0,0.481818182,0.445454545,0,0.573913043,0,0.300000000,0.263829787,0.025000000,0.202572347,0.212500000,0.203134883,0.125000000,0.101923077,0.093750000,0.060822420,0.100000000,0.050000000 +2017-01,0,0.481818182,0.445454545,0,0.573913043,0,0.300000000,0.263829787,0.025000000,0.202572347,0.212500000,0.203134883,0.125000000,0.101923077,0.093750000,0.060822420,0.050000000,0.100000000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv index 386edbcbdf..d2d059f538 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[roti] Job Size: Normalized (% of Total Cores)","[crumpet] Job Size: Normalized (% of Total Cores)","[bannock] Job Size: Normalized (% of Total Cores)","[panettone] Job Size: Normalized (% of Total Cores)","[potbrood] Job Size: Normalized (% of Total Cores)","[chapti] Job Size: Normalized (% of Total Cores)","[nann] Job Size: Normalized (% of Total Cores)","[pikelet] Job Size: Normalized (% of Total Cores)","[brown] Job Size: Normalized (% of Total Cores)","[croutons] Job Size: Normalized (% of Total Cores)","[cornbread] Job Size: Normalized (% of Total Cores)","[white] Job Size: Normalized (% of Total Cores)","[pumpernickel] Job Size: Normalized (% of Total Cores)","[focaccia] Job Size: Normalized (% of Total Cores)","[brioche] Job Size: Normalized (% of Total Cores)","[black] Job Size: Normalized (% of Total Cores)","[pita] Job Size: Normalized (% of Total Cores)","[barm] Job Size: Normalized (% of Total Cores)" +Quarter,"[roti] Job Size: Normalized (% of Total Cores)","[crumpet] Job Size: Normalized (% of Total Cores)","[bannock] Job Size: Normalized (% of Total Cores)","[panettone] Job Size: Normalized (% of Total Cores)","[potbrood] Job Size: Normalized (% of Total Cores)","[chapti] Job Size: Normalized (% of Total Cores)","[nann] Job Size: Normalized (% of Total Cores)","[pikelet] Job Size: Normalized (% of Total Cores)","[brown] Job Size: Normalized (% of Total Cores)","[croutons] Job Size: Normalized (% of Total Cores)","[cornbread] Job Size: Normalized (% of Total Cores)","[white] Job Size: Normalized (% of Total Cores)","[pumpernickel] Job Size: Normalized (% of Total Cores)","[focaccia] Job Size: Normalized (% of Total Cores)","[brioche] Job Size: Normalized (% of Total Cores)","[black] Job Size: Normalized (% of Total Cores)","[barm] Job Size: Normalized (% of Total Cores)","[pita] Job Size: Normalized (% of Total Cores)" "2016 Q4",0.756944444,1.184615385,0.612500000,0.500000000,0.431451613,0.300000000,0.300000000,0.272169811,0.371875000,0.205857741,0.174431818,0.094583983,0.125000000,0.300000000,0.092500000,0.058887797,0.050000000,0.050000000 -"2017 Q1",0,0.481818182,0.445454545,0,0.573913043,0,0.300000000,0.263829787,0.025000000,0.202572347,0.212500000,0.203134883,0.125000000,0.101923077,0.093750000,0.060822420,0.100000000,0.050000000 +"2017 Q1",0,0.481818182,0.445454545,0,0.573913043,0,0.300000000,0.263829787,0.025000000,0.202572347,0.212500000,0.203134883,0.125000000,0.101923077,0.093750000,0.060822420,0.050000000,0.100000000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv index 3d0b4b688c..60453114b2 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/normalized_avg_processors/timeseries-Year-reference.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[roti] Job Size: Normalized (% of Total Cores)","[crumpet] Job Size: Normalized (% of Total Cores)","[bannock] Job Size: Normalized (% of Total Cores)","[panettone] Job Size: Normalized (% of Total Cores)","[potbrood] Job Size: Normalized (% of Total Cores)","[chapti] Job Size: Normalized (% of Total Cores)","[nann] Job Size: Normalized (% of Total Cores)","[pikelet] Job Size: Normalized (% of Total Cores)","[brown] Job Size: Normalized (% of Total Cores)","[croutons] Job Size: Normalized (% of Total Cores)","[cornbread] Job Size: Normalized (% of Total Cores)","[white] Job Size: Normalized (% of Total Cores)","[pumpernickel] Job Size: Normalized (% of Total Cores)","[focaccia] Job Size: Normalized (% of Total Cores)","[brioche] Job Size: Normalized (% of Total Cores)","[black] Job Size: Normalized (% of Total Cores)","[pita] Job Size: Normalized (% of Total Cores)","[barm] Job Size: Normalized (% of Total Cores)" +Year,"[roti] Job Size: Normalized (% of Total Cores)","[crumpet] Job Size: Normalized (% of Total Cores)","[bannock] Job Size: Normalized (% of Total Cores)","[panettone] Job Size: Normalized (% of Total Cores)","[potbrood] Job Size: Normalized (% of Total Cores)","[chapti] Job Size: Normalized (% of Total Cores)","[nann] Job Size: Normalized (% of Total Cores)","[pikelet] Job Size: Normalized (% of Total Cores)","[brown] Job Size: Normalized (% of Total Cores)","[croutons] Job Size: Normalized (% of Total Cores)","[cornbread] Job Size: Normalized (% of Total Cores)","[white] Job Size: Normalized (% of Total Cores)","[pumpernickel] Job Size: Normalized (% of Total Cores)","[focaccia] Job Size: Normalized (% of Total Cores)","[brioche] Job Size: Normalized (% of Total Cores)","[black] Job Size: Normalized (% of Total Cores)","[barm] Job Size: Normalized (% of Total Cores)","[pita] Job Size: Normalized (% of Total Cores)" 2016,0.756944444,1.184615385,0.612500000,0.500000000,0.431451613,0.300000000,0.300000000,0.272169811,0.371875000,0.205857741,0.174431818,0.094583983,0.125000000,0.300000000,0.092500000,0.058887797,0.050000000,0.050000000 -2017,0,0.481818182,0.445454545,0,0.573913043,0,0.300000000,0.263829787,0.025000000,0.202572347,0.212500000,0.203134883,0.125000000,0.101923077,0.093750000,0.060822420,0.100000000,0.050000000 +2017,0,0.481818182,0.445454545,0,0.573913043,0,0.300000000,0.263829787,0.025000000,0.202572347,0.212500000,0.203134883,0.125000000,0.101923077,0.093750000,0.060822420,0.050000000,0.100000000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..3bc4e269d4 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +robertson,32.08669544,1.5845303063155447 +frearson,14.18197313,1.4262887880895403 +pozidriv,6.37875732,0.33815435199138116 +mortorq,2.94454458,0.12730307613070352 +phillips,2.90854877,0.8586643406314756 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..87fa37c11e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +robertson,32.08669544,2.638090925833745 +frearson,14.18197313,2.6227915143625538 +pozidriv,6.37875732,0.6324232167493075 +mortorq,2.94454458,0.21372235370901138 +phillips,2.90854877,1.7543541236119438 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..87fa37c11e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +robertson,32.08669544,2.638090925833745 +frearson,14.18197313,2.6227915143625538 +pozidriv,6.37875732,0.6324232167493075 +mortorq,2.94454458,0.21372235370901138 +phillips,2.90854877,1.7543541236119438 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..87fa37c11e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +robertson,32.08669544,2.638090925833745 +frearson,14.18197313,2.6227915143625538 +pozidriv,6.37875732,0.6324232167493075 +mortorq,2.94454458,0.21372235370901138 +phillips,2.90854877,1.7543541236119438 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv index 3b797b6517..ea0b648ef9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_cpu_hours/timeseries-Day-reference.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[robertson] CPU Hours: Per Job","[frearson] CPU Hours: Per Job","[pozidriv] CPU Hours: Per Job","[phillips] CPU Hours: Per Job","[mortorq] CPU Hours: Per Job" -2016-12-22,0,0,203.30000000,200.95666667,0 -2016-12-23,0,0,148.30180556,288.00000000,0 -2016-12-24,0,0,156.00000000,288.00000000,0 -2016-12-25,0,0,98.05400000,288.00000000,0 -2016-12-26,0,0,350.40000000,288.00000000,43.26666667 -2016-12-27,490.54279040,136.79555556,181.10212963,265.59111111,384.00000000 -2016-12-28,105.79246768,2985.14711111,304.01960784,912.00000000,141.45581699 -2016-12-29,77.29039187,442.98575439,89.17202336,912.00000000,71.67418733 -2016-12-30,24.31017449,18.39096617,4.48561843,1.82046551,2.20631919 -2016-12-31,21.24974155,7.44336925,5.16445323,1.01314114,3.08276636 -2017-01-01,7.22693775,2.33982775,3.84804043,3.63378529,1.79781562 +Day,"[robertson] CPU Hours: Per Job","[frearson] CPU Hours: Per Job","[pozidriv] CPU Hours: Per Job","[mortorq] CPU Hours: Per Job","[phillips] CPU Hours: Per Job" +2016-12-22,0,0,203.30000000,0,200.95666667 +2016-12-23,0,0,148.30180556,0,288.00000000 +2016-12-24,0,0,156.00000000,0,288.00000000 +2016-12-25,0,0,98.05400000,0,288.00000000 +2016-12-26,0,0,350.40000000,43.26666667,288.00000000 +2016-12-27,490.54279040,136.79555556,181.10212963,384.00000000,265.59111111 +2016-12-28,105.79246768,2985.14711111,304.01960784,141.45581699,912.00000000 +2016-12-29,77.29039187,442.98575439,89.17202336,71.67418733,912.00000000 +2016-12-30,24.31017449,18.39096617,4.48561843,2.20631919,1.82046551 +2016-12-31,21.24974155,7.44336925,5.16445323,3.08276636,1.01314114 +2017-01-01,7.22693775,2.33982775,3.84804043,1.79781562,3.63378529 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..c53841b775 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +robertson,8.66693030,0.14416043507237195 +frearson,0.99743674,0.08910316577749812 +pozidriv,0.61345852,0.025732433486385795 +phillips,0.33239461,0.10524107017931526 +mortorq,0.30365382,0.009829076394921818 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..b6776d76e9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +robertson,8.66693030,0.23978009453017923 +frearson,0.99743674,0.16390288405567507 +pozidriv,0.61345852,0.04722314464546534 +phillips,0.33239461,0.20958558527194565 +mortorq,0.30365382,0.014540180835967677 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..b6776d76e9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +robertson,8.66693030,0.23978009453017923 +frearson,0.99743674,0.16390288405567507 +pozidriv,0.61345852,0.04722314464546534 +phillips,0.33239461,0.20958558527194565 +mortorq,0.30365382,0.014540180835967677 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..b6776d76e9 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Node Hours: Per Job","Std Dev: Node Hours: Per Job" +robertson,8.66693030,0.23978009453017923 +frearson,0.99743674,0.16390288405567507 +pozidriv,0.61345852,0.04722314464546534 +phillips,0.33239461,0.20958558527194565 +mortorq,0.30365382,0.014540180835967677 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Day-reference.csv index 68ce959394..8f6a93c11e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +frearson,12.1241,0.039163324788032736 +pozidriv,9.6298,0.022205555738387606 +phillips,8.1614,0.042682930132102684 +mortorq,8.0462,0.003261653381528898 +robertson,5.8348,0.08741048159054844 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Month-reference.csv index 68ce959394..8f6a93c11e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +frearson,12.1241,0.039163324788032736 +pozidriv,9.6298,0.022205555738387606 +phillips,8.1614,0.042682930132102684 +mortorq,8.0462,0.003261653381528898 +robertson,5.8348,0.08741048159054844 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..8f6a93c11e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +frearson,12.1241,0.039163324788032736 +pozidriv,9.6298,0.022205555738387606 +phillips,8.1614,0.042682930132102684 +mortorq,8.0462,0.003261653381528898 +robertson,5.8348,0.08741048159054844 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Year-reference.csv index 68ce959394..8f6a93c11e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +frearson,12.1241,0.039163324788032736 +pozidriv,9.6298,0.022205555738387606 +phillips,8.1614,0.042682930132102684 +mortorq,8.0462,0.003261653381528898 +robertson,5.8348,0.08741048159054844 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..b14220f4f5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Normalized (% of Total Cores)" +frearson,0.303103212 +pozidriv,0.240744351 +phillips,0.204034849 +mortorq,0.201155678 +robertson,0.145870094 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..b14220f4f5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Normalized (% of Total Cores)" +frearson,0.303103212 +pozidriv,0.240744351 +phillips,0.204034849 +mortorq,0.201155678 +robertson,0.145870094 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..b14220f4f5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Normalized (% of Total Cores)" +frearson,0.303103212 +pozidriv,0.240744351 +phillips,0.204034849 +mortorq,0.201155678 +robertson,0.145870094 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..b14220f4f5 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,14 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Resource" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Normalized (% of Total Cores)" +frearson,0.303103212 +pozidriv,0.240744351 +phillips,0.204034849 +mortorq,0.201155678 +robertson,0.145870094 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..2961eff9f8 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Day-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"High-performance computing",11.78685285,0.45350239591639724 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..f74d75fe59 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Month-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"High-performance computing",11.78685285,0.7937184281551048 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..f74d75fe59 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"High-performance computing",11.78685285,0.7937184281551048 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..f74d75fe59 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_cpu_hours/aggregate-Year-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"CPU Hours: Per Job: by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +"High-performance computing",11.78685285,0.7937184281551048 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..6f5459ea9f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Day-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"High-performance computing",2.19179880,0.037808294679009785 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..e492e09e62 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Month-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"High-performance computing",2.19179880,0.0629473985565196 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..e492e09e62 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Quarter-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"High-performance computing",2.19179880,0.0629473985565196 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..e492e09e62 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_node_hours/aggregate-Year-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Node Hours: Per Job: by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +"High-performance computing",2.19179880,0.0629473985565196 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv index 68ce959394..772f01a362 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"High-performance computing",8.7346,0.02156312501879985 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv index 68ce959394..772f01a362 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"High-performance computing",8.7346,0.02156312501879985 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..772f01a362 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"High-performance computing",8.7346,0.02156312501879985 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv index 68ce959394..772f01a362 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Per Job (Core Count): by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +"High-performance computing",8.7346,0.02156312501879985 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..60faa4f653 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Day-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Normalized (% of Total Cores)" +"High-performance computing",0.043672753 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..60faa4f653 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Month-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Normalized (% of Total Cores)" +"High-performance computing",0.043672753 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..60faa4f653 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Normalized (% of Total Cores)" +"High-performance computing",0.043672753 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..60faa4f653 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/normalized_avg_processors/aggregate-Year-reference.csv @@ -1,14 +1,10 @@ -{ - "success": false, - "count": 0, - "total": 0, - "totalCount": 0, - "results": [ +title +"Job Size: Normalized (% of Total Cores): by Resource Type" +parameters - ], - "data": [ - - ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 -} +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Normalized (% of Total Cores)" +"High-performance computing",0.043672753 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..48836a8421 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +aytinis,13184.81728395, +chaff,7680.46222222, +meapi,6103.17666667, +velsc,5278.79111111, +duswa,4368.65777778,1642.1290224563402 +siski,4202.09666667, +ferdu,4200.46666667, +smew1,2627.28571429, +egygo,1767.64000000, +pereg,1490.86666667, +ovenb,1324.23822222, +crane,1217.11333333, +yebbu,1006.98777778, +gloib,960.13333333, +yebwa,722.24444444,221.86209986841982 +garwa,657.08909329, +whtsp,584.70172840, +evegr,564.52666667,321.25321884345993 +whtpl,529.63777778, +misth,472.55000000, +shag1,416.16868687,49.093651480705596 +ybsbu,405.12111111, +shttr,373.04032828, +sarwa,370.26664198,70.76900902219721 +whimb,351.31928571,65.80534086370237 +corsh,219.01527778, +sposa,202.96983333, +yebsa,199.03771605, +hoowa,183.94862434, +sancr,158.95125772,17.434220915696542 +rolle,147.58368056,100.57359969220543 +field,114.99185185, +noror,106.66035185,23.793915914928565 +sante,87.43875000, +lesre,75.59166667, +mamwa,72.00694444, +boowa,68.10298148,26.371499330539592 +litau,62.26494444,16.730860685172974 +lapwi,49.85089556, +alpsw,38.17333333,15.42650790996771 +lanhach,32.58187500,10.043985268073873 +ribgu,31.90972222, +allga,28.14000000,0 +moorh,25.48654262, +caspl,25.28805115,0.5677021199320009 +jackd,21.84694444, +vertera,20.97018519,8.396540327209507 +grath,20.18978548,2.707858002197733 +turdo,12.78054650,1.0499406414966879 +pibgr,10.00406111, +legsh,8.59051583, +dunli,6.35208275,0.7295707950782502 +swath,6.35072152,2.726103053894975 +reebu,6.00085977,0.6975676600954264 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.412736659063767 +litst,4.48717172,1.181752638807895 +honbu,2.85685472,0.016911776633327387 +crama,1.60992063,0.44663758019891886 +relpa,1.04000000,0 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..48836a8421 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +aytinis,13184.81728395, +chaff,7680.46222222, +meapi,6103.17666667, +velsc,5278.79111111, +duswa,4368.65777778,1642.1290224563402 +siski,4202.09666667, +ferdu,4200.46666667, +smew1,2627.28571429, +egygo,1767.64000000, +pereg,1490.86666667, +ovenb,1324.23822222, +crane,1217.11333333, +yebbu,1006.98777778, +gloib,960.13333333, +yebwa,722.24444444,221.86209986841982 +garwa,657.08909329, +whtsp,584.70172840, +evegr,564.52666667,321.25321884345993 +whtpl,529.63777778, +misth,472.55000000, +shag1,416.16868687,49.093651480705596 +ybsbu,405.12111111, +shttr,373.04032828, +sarwa,370.26664198,70.76900902219721 +whimb,351.31928571,65.80534086370237 +corsh,219.01527778, +sposa,202.96983333, +yebsa,199.03771605, +hoowa,183.94862434, +sancr,158.95125772,17.434220915696542 +rolle,147.58368056,100.57359969220543 +field,114.99185185, +noror,106.66035185,23.793915914928565 +sante,87.43875000, +lesre,75.59166667, +mamwa,72.00694444, +boowa,68.10298148,26.371499330539592 +litau,62.26494444,16.730860685172974 +lapwi,49.85089556, +alpsw,38.17333333,15.42650790996771 +lanhach,32.58187500,10.043985268073873 +ribgu,31.90972222, +allga,28.14000000,0 +moorh,25.48654262, +caspl,25.28805115,0.5677021199320009 +jackd,21.84694444, +vertera,20.97018519,8.396540327209507 +grath,20.18978548,2.707858002197733 +turdo,12.78054650,1.0499406414966879 +pibgr,10.00406111, +legsh,8.59051583, +dunli,6.35208275,0.7295707950782502 +swath,6.35072152,2.726103053894975 +reebu,6.00085977,0.6975676600954264 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.412736659063767 +litst,4.48717172,1.181752638807895 +honbu,2.85685472,0.016911776633327387 +crama,1.60992063,0.44663758019891886 +relpa,1.04000000,0 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..5cc9284b5b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +ovenb,1324.23822222, +ybsbu,405.12111111, +sante,87.43875000, +swath,6.35072152,2.726103053894975 +litst,4.48717172,1.181752638807895 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv index 84bfa320e5..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..6c1bb27046 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +whimb,351.31928571,65.80534086370237 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..27941d33dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +aytinis,13184.81728395,603.4757859265736 +chaff,7680.46222222, +meapi,6103.17666667,301.2710478905464 +velsc,5278.79111111,3599.4343600743646 +duswa,4368.65777778,3398.832310418393 +siski,4202.09666667,594.2548959317785 +ferdu,4200.46666667, +smew1,2627.28571429,173.36998095799686 +egygo,1767.64000000,158.84195310837734 +pereg,1490.86666667,82.75515611850135 +ovenb,1324.23822222,181.00444987302672 +crane,1217.11333333,41.359060776731056 +yebbu,1006.98777778,712.0416008450284 +gloib,960.13333333,0 +yebwa,722.24444444,508.25264083286396 +garwa,657.08909329,51.277475129665504 +whtsp,584.70172840, +evegr,564.52666667,397.72870823660134 +whtpl,529.63777778,46.636532607630166 +misth,472.55000000,42.08961460801514 +shag1,416.16868687,199.7953128066435 +ybsbu,405.12111111,141.1043831299275 +shttr,373.04032828,40.54497290955818 +sarwa,370.26664198,96.52889912011452 +whimb,351.31928571,67.88674190889104 +corsh,219.01527778,36.582071548135346 +sposa,202.96983333,16.920386011566084 +yebsa,199.03771605, +hoowa,183.94862434,30.125386375518342 +sancr,158.95125772,31.51810543421254 +rolle,147.58368056,114.52976296802045 +field,114.99185185, +noror,106.66035185,91.42855590332098 +sante,87.43875000,49.35183032798893 +lesre,75.59166667, +mamwa,72.00694444,0 +boowa,68.10298148,53.28768177700803 +litau,62.26494444,18.726467654568296 +lapwi,49.85089556,1.1100595034642202 +alpsw,38.17333333,15.42650790996771 +lanhach,32.58187500,10.180164841566825 +ribgu,31.90972222,0 +allga,28.14000000,0 +moorh,25.48654262,0.09521527865289223 +caspl,25.28805115,0.5677021199320009 +jackd,21.84694444,1.3829746334642423 +vertera,20.97018519,8.396540327209507 +grath,20.18978548,2.814335511780527 +turdo,12.78054650,2.649327129689236 +pibgr,10.00406111,0.00040214624761869517 +legsh,8.59051583,0.027937647321332644 +dunli,6.35208275,0.7295707950782502 +swath,6.35072152,4.342532117238334 +reebu,6.00085977,1.2236468009082848 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +litst,4.48717172,1.181752638807895 +honbu,2.85685472,0.017162232477992725 +crama,1.60992063,0.44663758019891886 +relpa,1.04000000,0 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..27941d33dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +aytinis,13184.81728395,603.4757859265736 +chaff,7680.46222222, +meapi,6103.17666667,301.2710478905464 +velsc,5278.79111111,3599.4343600743646 +duswa,4368.65777778,3398.832310418393 +siski,4202.09666667,594.2548959317785 +ferdu,4200.46666667, +smew1,2627.28571429,173.36998095799686 +egygo,1767.64000000,158.84195310837734 +pereg,1490.86666667,82.75515611850135 +ovenb,1324.23822222,181.00444987302672 +crane,1217.11333333,41.359060776731056 +yebbu,1006.98777778,712.0416008450284 +gloib,960.13333333,0 +yebwa,722.24444444,508.25264083286396 +garwa,657.08909329,51.277475129665504 +whtsp,584.70172840, +evegr,564.52666667,397.72870823660134 +whtpl,529.63777778,46.636532607630166 +misth,472.55000000,42.08961460801514 +shag1,416.16868687,199.7953128066435 +ybsbu,405.12111111,141.1043831299275 +shttr,373.04032828,40.54497290955818 +sarwa,370.26664198,96.52889912011452 +whimb,351.31928571,67.88674190889104 +corsh,219.01527778,36.582071548135346 +sposa,202.96983333,16.920386011566084 +yebsa,199.03771605, +hoowa,183.94862434,30.125386375518342 +sancr,158.95125772,31.51810543421254 +rolle,147.58368056,114.52976296802045 +field,114.99185185, +noror,106.66035185,91.42855590332098 +sante,87.43875000,49.35183032798893 +lesre,75.59166667, +mamwa,72.00694444,0 +boowa,68.10298148,53.28768177700803 +litau,62.26494444,18.726467654568296 +lapwi,49.85089556,1.1100595034642202 +alpsw,38.17333333,15.42650790996771 +lanhach,32.58187500,10.180164841566825 +ribgu,31.90972222,0 +allga,28.14000000,0 +moorh,25.48654262,0.09521527865289223 +caspl,25.28805115,0.5677021199320009 +jackd,21.84694444,1.3829746334642423 +vertera,20.97018519,8.396540327209507 +grath,20.18978548,2.814335511780527 +turdo,12.78054650,2.649327129689236 +pibgr,10.00406111,0.00040214624761869517 +legsh,8.59051583,0.027937647321332644 +dunli,6.35208275,0.7295707950782502 +swath,6.35072152,4.342532117238334 +reebu,6.00085977,1.2236468009082848 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +litst,4.48717172,1.181752638807895 +honbu,2.85685472,0.017162232477992725 +crama,1.60992063,0.44663758019891886 +relpa,1.04000000,0 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..08da1d77b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +ovenb,1324.23822222,181.00444987302672 +ybsbu,405.12111111,141.1043831299275 +sante,87.43875000,49.35183032798893 +swath,6.35072152,4.342532117238334 +litst,4.48717172,1.181752638807895 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv index 84bfa320e5..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..79707b1866 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +whimb,351.31928571,67.88674190889104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..27941d33dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +aytinis,13184.81728395,603.4757859265736 +chaff,7680.46222222, +meapi,6103.17666667,301.2710478905464 +velsc,5278.79111111,3599.4343600743646 +duswa,4368.65777778,3398.832310418393 +siski,4202.09666667,594.2548959317785 +ferdu,4200.46666667, +smew1,2627.28571429,173.36998095799686 +egygo,1767.64000000,158.84195310837734 +pereg,1490.86666667,82.75515611850135 +ovenb,1324.23822222,181.00444987302672 +crane,1217.11333333,41.359060776731056 +yebbu,1006.98777778,712.0416008450284 +gloib,960.13333333,0 +yebwa,722.24444444,508.25264083286396 +garwa,657.08909329,51.277475129665504 +whtsp,584.70172840, +evegr,564.52666667,397.72870823660134 +whtpl,529.63777778,46.636532607630166 +misth,472.55000000,42.08961460801514 +shag1,416.16868687,199.7953128066435 +ybsbu,405.12111111,141.1043831299275 +shttr,373.04032828,40.54497290955818 +sarwa,370.26664198,96.52889912011452 +whimb,351.31928571,67.88674190889104 +corsh,219.01527778,36.582071548135346 +sposa,202.96983333,16.920386011566084 +yebsa,199.03771605, +hoowa,183.94862434,30.125386375518342 +sancr,158.95125772,31.51810543421254 +rolle,147.58368056,114.52976296802045 +field,114.99185185, +noror,106.66035185,91.42855590332098 +sante,87.43875000,49.35183032798893 +lesre,75.59166667, +mamwa,72.00694444,0 +boowa,68.10298148,53.28768177700803 +litau,62.26494444,18.726467654568296 +lapwi,49.85089556,1.1100595034642202 +alpsw,38.17333333,15.42650790996771 +lanhach,32.58187500,10.180164841566825 +ribgu,31.90972222,0 +allga,28.14000000,0 +moorh,25.48654262,0.09521527865289223 +caspl,25.28805115,0.5677021199320009 +jackd,21.84694444,1.3829746334642423 +vertera,20.97018519,8.396540327209507 +grath,20.18978548,2.814335511780527 +turdo,12.78054650,2.649327129689236 +pibgr,10.00406111,0.00040214624761869517 +legsh,8.59051583,0.027937647321332644 +dunli,6.35208275,0.7295707950782502 +swath,6.35072152,4.342532117238334 +reebu,6.00085977,1.2236468009082848 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +litst,4.48717172,1.181752638807895 +honbu,2.85685472,0.017162232477992725 +crama,1.60992063,0.44663758019891886 +relpa,1.04000000,0 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..27941d33dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +aytinis,13184.81728395,603.4757859265736 +chaff,7680.46222222, +meapi,6103.17666667,301.2710478905464 +velsc,5278.79111111,3599.4343600743646 +duswa,4368.65777778,3398.832310418393 +siski,4202.09666667,594.2548959317785 +ferdu,4200.46666667, +smew1,2627.28571429,173.36998095799686 +egygo,1767.64000000,158.84195310837734 +pereg,1490.86666667,82.75515611850135 +ovenb,1324.23822222,181.00444987302672 +crane,1217.11333333,41.359060776731056 +yebbu,1006.98777778,712.0416008450284 +gloib,960.13333333,0 +yebwa,722.24444444,508.25264083286396 +garwa,657.08909329,51.277475129665504 +whtsp,584.70172840, +evegr,564.52666667,397.72870823660134 +whtpl,529.63777778,46.636532607630166 +misth,472.55000000,42.08961460801514 +shag1,416.16868687,199.7953128066435 +ybsbu,405.12111111,141.1043831299275 +shttr,373.04032828,40.54497290955818 +sarwa,370.26664198,96.52889912011452 +whimb,351.31928571,67.88674190889104 +corsh,219.01527778,36.582071548135346 +sposa,202.96983333,16.920386011566084 +yebsa,199.03771605, +hoowa,183.94862434,30.125386375518342 +sancr,158.95125772,31.51810543421254 +rolle,147.58368056,114.52976296802045 +field,114.99185185, +noror,106.66035185,91.42855590332098 +sante,87.43875000,49.35183032798893 +lesre,75.59166667, +mamwa,72.00694444,0 +boowa,68.10298148,53.28768177700803 +litau,62.26494444,18.726467654568296 +lapwi,49.85089556,1.1100595034642202 +alpsw,38.17333333,15.42650790996771 +lanhach,32.58187500,10.180164841566825 +ribgu,31.90972222,0 +allga,28.14000000,0 +moorh,25.48654262,0.09521527865289223 +caspl,25.28805115,0.5677021199320009 +jackd,21.84694444,1.3829746334642423 +vertera,20.97018519,8.396540327209507 +grath,20.18978548,2.814335511780527 +turdo,12.78054650,2.649327129689236 +pibgr,10.00406111,0.00040214624761869517 +legsh,8.59051583,0.027937647321332644 +dunli,6.35208275,0.7295707950782502 +swath,6.35072152,4.342532117238334 +reebu,6.00085977,1.2236468009082848 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +litst,4.48717172,1.181752638807895 +honbu,2.85685472,0.017162232477992725 +crama,1.60992063,0.44663758019891886 +relpa,1.04000000,0 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..08da1d77b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +ovenb,1324.23822222,181.00444987302672 +ybsbu,405.12111111,141.1043831299275 +sante,87.43875000,49.35183032798893 +swath,6.35072152,4.342532117238334 +litst,4.48717172,1.181752638807895 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv index 84bfa320e5..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..79707b1866 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +whimb,351.31928571,67.88674190889104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..27941d33dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +aytinis,13184.81728395,603.4757859265736 +chaff,7680.46222222, +meapi,6103.17666667,301.2710478905464 +velsc,5278.79111111,3599.4343600743646 +duswa,4368.65777778,3398.832310418393 +siski,4202.09666667,594.2548959317785 +ferdu,4200.46666667, +smew1,2627.28571429,173.36998095799686 +egygo,1767.64000000,158.84195310837734 +pereg,1490.86666667,82.75515611850135 +ovenb,1324.23822222,181.00444987302672 +crane,1217.11333333,41.359060776731056 +yebbu,1006.98777778,712.0416008450284 +gloib,960.13333333,0 +yebwa,722.24444444,508.25264083286396 +garwa,657.08909329,51.277475129665504 +whtsp,584.70172840, +evegr,564.52666667,397.72870823660134 +whtpl,529.63777778,46.636532607630166 +misth,472.55000000,42.08961460801514 +shag1,416.16868687,199.7953128066435 +ybsbu,405.12111111,141.1043831299275 +shttr,373.04032828,40.54497290955818 +sarwa,370.26664198,96.52889912011452 +whimb,351.31928571,67.88674190889104 +corsh,219.01527778,36.582071548135346 +sposa,202.96983333,16.920386011566084 +yebsa,199.03771605, +hoowa,183.94862434,30.125386375518342 +sancr,158.95125772,31.51810543421254 +rolle,147.58368056,114.52976296802045 +field,114.99185185, +noror,106.66035185,91.42855590332098 +sante,87.43875000,49.35183032798893 +lesre,75.59166667, +mamwa,72.00694444,0 +boowa,68.10298148,53.28768177700803 +litau,62.26494444,18.726467654568296 +lapwi,49.85089556,1.1100595034642202 +alpsw,38.17333333,15.42650790996771 +lanhach,32.58187500,10.180164841566825 +ribgu,31.90972222,0 +allga,28.14000000,0 +moorh,25.48654262,0.09521527865289223 +caspl,25.28805115,0.5677021199320009 +jackd,21.84694444,1.3829746334642423 +vertera,20.97018519,8.396540327209507 +grath,20.18978548,2.814335511780527 +turdo,12.78054650,2.649327129689236 +pibgr,10.00406111,0.00040214624761869517 +legsh,8.59051583,0.027937647321332644 +dunli,6.35208275,0.7295707950782502 +swath,6.35072152,4.342532117238334 +reebu,6.00085977,1.2236468009082848 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +litst,4.48717172,1.181752638807895 +honbu,2.85685472,0.017162232477992725 +crama,1.60992063,0.44663758019891886 +relpa,1.04000000,0 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..27941d33dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +aytinis,13184.81728395,603.4757859265736 +chaff,7680.46222222, +meapi,6103.17666667,301.2710478905464 +velsc,5278.79111111,3599.4343600743646 +duswa,4368.65777778,3398.832310418393 +siski,4202.09666667,594.2548959317785 +ferdu,4200.46666667, +smew1,2627.28571429,173.36998095799686 +egygo,1767.64000000,158.84195310837734 +pereg,1490.86666667,82.75515611850135 +ovenb,1324.23822222,181.00444987302672 +crane,1217.11333333,41.359060776731056 +yebbu,1006.98777778,712.0416008450284 +gloib,960.13333333,0 +yebwa,722.24444444,508.25264083286396 +garwa,657.08909329,51.277475129665504 +whtsp,584.70172840, +evegr,564.52666667,397.72870823660134 +whtpl,529.63777778,46.636532607630166 +misth,472.55000000,42.08961460801514 +shag1,416.16868687,199.7953128066435 +ybsbu,405.12111111,141.1043831299275 +shttr,373.04032828,40.54497290955818 +sarwa,370.26664198,96.52889912011452 +whimb,351.31928571,67.88674190889104 +corsh,219.01527778,36.582071548135346 +sposa,202.96983333,16.920386011566084 +yebsa,199.03771605, +hoowa,183.94862434,30.125386375518342 +sancr,158.95125772,31.51810543421254 +rolle,147.58368056,114.52976296802045 +field,114.99185185, +noror,106.66035185,91.42855590332098 +sante,87.43875000,49.35183032798893 +lesre,75.59166667, +mamwa,72.00694444,0 +boowa,68.10298148,53.28768177700803 +litau,62.26494444,18.726467654568296 +lapwi,49.85089556,1.1100595034642202 +alpsw,38.17333333,15.42650790996771 +lanhach,32.58187500,10.180164841566825 +ribgu,31.90972222,0 +allga,28.14000000,0 +moorh,25.48654262,0.09521527865289223 +caspl,25.28805115,0.5677021199320009 +jackd,21.84694444,1.3829746334642423 +vertera,20.97018519,8.396540327209507 +grath,20.18978548,2.814335511780527 +turdo,12.78054650,2.649327129689236 +pibgr,10.00406111,0.00040214624761869517 +legsh,8.59051583,0.027937647321332644 +dunli,6.35208275,0.7295707950782502 +swath,6.35072152,4.342532117238334 +reebu,6.00085977,1.2236468009082848 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +litst,4.48717172,1.181752638807895 +honbu,2.85685472,0.017162232477992725 +crama,1.60992063,0.44663758019891886 +relpa,1.04000000,0 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..08da1d77b2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +ovenb,1324.23822222,181.00444987302672 +ybsbu,405.12111111,141.1043831299275 +sante,87.43875000,49.35183032798893 +swath,6.35072152,4.342532117238334 +litst,4.48717172,1.181752638807895 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv index 84bfa320e5..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"CPU Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..79707b1866 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +whimb,351.31928571,67.88674190889104 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv index 0c81446cf7..8a7d78510c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Day-cd.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[aytinis] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,156.95833333,0,0,0,76.17666667,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.26666667,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,288.00000000,0,0,0,576.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,2997.12000000,1246.47111111,243.18222222,0,1487.82000000,0,0,0,0,0,0,0,0,78.98666667,0,0,0,0,384.00000000,0,0,136.79555556,111.72266667,0,650.84444444,0,0,0,0,288.00000000,0,0,238.86666667,0,0,0,0,0,0,0,4.72138889,24.00000000,0,0,0,0,288.00000000,0,0,0,143.14666667,0,0,0,0,3.21666667,0,0,0,0,0,0,0,0 -2016-12-28,3274.16345679,0,3456.00000000,1462.12800000,1536.00000000,0,1170.67333333,0,0,0,0,0,0,0,94.01111111,384.00000000,0,0,266.54222222,193.12666667,144.42111111,60.47666667,37.38407407,384.00000000,141.10666667,0,284.72404040,0,0,0,70.31866667,288.00000000,0,0,288.00000000,0,0,0,0,0,0,0,24.00000000,24.00000000,0,13.35268330,0,5.01598392,288.00000000,0,0,0,630.22700855,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0 -2016-12-29,4394.66666667,0,3456.00000000,2251.54909091,1536.00000000,831.60857143,1440.00000000,180.11666667,410.97777778,611.49333333,1406.28333333,758.98888889,1038.22222222,107.90888889,480.00000000,384.00000000,0,0,535.35619048,387.21000000,382.20422222,288.00000000,288.00000000,106.45155556,164.24592593,48.73966667,357.73259259,39.71703704,0,0,111.16444444,288.00000000,79.40936508,52.00416667,288.00000000,0,28.69444444,22.24222222,0,0,0,7.24000000,24.00000000,19.56861111,0,16.60273286,0,13.10756221,38.39929825,0,35.48623932,0,403.98240000,4.66003889,0,0,2.01966667,4.97002566,0,0,0,0,0,0,0,0 -2016-12-30,4394.66666667,2468.14222222,324.23111111,2131.62060606,1536.00000000,1568.46000000,625.34000000,1440.00000000,1151.41444444,765.75000000,489.36111111,480.00444444,402.80000000,510.57222222,386.12222222,384.00000000,0,683.12000000,129.32098413,173.83962963,302.76555556,181.16111111,174.64030303,164.41962963,102.30620370,114.58566667,77.69224586,143.85833333,21.99861111,64.03555556,92.49006944,288.00000000,77.76288889,68.03194444,13.26442593,6.51777778,52.54222222,4.02347222,28.14000000,0,16.32947222,142.16250000,19.28555556,3.56833333,17.79750000,21.71949405,10.84229167,13.31263065,8.81516078,5.80186420,4.14055945,3.48631944,2.20207251,5.34402222,4.25015531,5.65000000,4.10559722,3.17816020,1.60992063,1.04000000,0.97263889,0.97243056,0.97256944,1.58977533,0.02760417,0.02405133 -2016-12-31,1121.32049383,5701.54666667,0,1158.10807018,1536.00000000,1590.52000000,444.34666667,1440.00000000,821.47333333,977.07428571,1440.00000000,294.97777778,0,0,0,265.13155556,385.99851852,261.10111111,772.86370370,224.42037037,245.43360532,0,288.00000000,130.38518519,119.81037037,190.06944444,30.92378849,192.00000000,251.46666667,158.30444444,57.49013889,58.32133333,76.17254902,70.16857143,1.92791667,131.93777778,23.98444444,25.91166667,0,2.35937500,35.16320513,14.57163265,0,0,14.11222222,10.83064379,22.00930556,12.53390738,8.33840025,12.54733333,1114.52444444,7.65398148,1.45788429,0,5.54019436,2.45222222,8.63138889,3.84824292,0,0,0.97312500,0.97349537,0.97211806,1.07971065,0.02281046,0.01479010 -2017-01-01,0,0,0,263.45777778,1293.28000000,0,0,1140.35000000,0,667.68761905,158.23333333,0,3.46666667,0,0,371.58666667,198.70320988,269.34857143,70.31901235,118.89333333,104.22217494,0,60.55000000,0,141.00285714,63.49666667,0,68.79111111,21.40555556,61.31777778,0,15.50950855,51.40333333,5.71666667,0,7.11888889,45.96222222,45.02654321,0,25.37236259,8.24440000,35.25833333,0,0,0,13.34534574,0,11.50582962,9.56621212,6.26263789,0,0,36.21190476,0,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Day,"[aytinis] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156.95833333,0,0,0,0,76.17666667,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.26666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,576.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,243.18222222,1246.47111111,2997.12000000,0,1487.82000000,0,0,0,0,78.98666667,0,0,0,0,384.00000000,0,0,0,0,0,136.79555556,111.72266667,0,0,0,0,0,0,650.84444444,0,0,288.00000000,24.00000000,0,4.72138889,238.86666667,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,143.14666667,0,0,0,3.21666667,0,0,0,0,0,0,0,0 +2016-12-28,3274.16345679,1536.00000000,1462.12800000,3456.00000000,0,1170.67333333,0,0,0,0,384.00000000,0,0,94.01111111,0,144.42111111,0,0,60.47666667,37.38407407,193.12666667,384.00000000,141.10666667,266.54222222,0,0,0,0,70.31866667,284.72404040,0,0,288.00000000,24.00000000,0,24.00000000,288.00000000,0,13.35268330,0,0,0,0,5.01598392,0,0,0,0,288.00000000,0,0,0,0,630.22700855,0,0,0,24.00000000,0,0,0,0,0,0,0,0 +2016-12-29,4394.66666667,1536.00000000,2251.54909091,3456.00000000,0,1440.00000000,180.11666667,831.60857143,410.97777778,1406.28333333,384.00000000,611.49333333,758.98888889,480.00000000,1038.22222222,382.20422222,0,107.90888889,288.00000000,288.00000000,387.21000000,106.45155556,164.24592593,535.35619048,0,39.71703704,48.73966667,79.40936508,111.16444444,357.73259259,0,0,288.00000000,19.56861111,28.69444444,24.00000000,288.00000000,52.00416667,16.60273286,0,22.24222222,0,0,13.10756221,0,0,0,7.24000000,38.39929825,4.66003889,0,0,35.48623932,403.98240000,0,2.01966667,0,4.97002566,0,0,0,0,0,0,0,0 +2016-12-30,4394.66666667,1536.00000000,2131.62060606,324.23111111,2468.14222222,625.34000000,1440.00000000,1568.46000000,1151.41444444,489.36111111,384.00000000,765.75000000,480.00444444,386.12222222,402.80000000,302.76555556,0,510.57222222,181.16111111,174.64030303,173.83962963,164.41962963,102.30620370,129.32098413,683.12000000,143.85833333,114.58566667,77.76288889,92.49006944,77.69224586,21.99861111,64.03555556,288.00000000,3.56833333,52.54222222,19.28555556,13.26442593,68.03194444,21.71949405,6.51777778,4.02347222,17.79750000,28.14000000,13.31263065,0,10.84229167,16.32947222,142.16250000,8.81516078,5.34402222,4.25015531,5.80186420,4.14055945,2.20207251,3.48631944,4.10559722,5.65000000,3.17816020,1.60992063,1.04000000,0.97263889,0.97243056,0.97256944,1.58977533,0.02760417,0.02405133 +2016-12-31,1121.32049383,1536.00000000,1158.10807018,0,5701.54666667,444.34666667,1440.00000000,1590.52000000,821.47333333,1440.00000000,265.13155556,977.07428571,294.97777778,0,0,245.43360532,385.99851852,0,0,288.00000000,224.42037037,130.38518519,119.81037037,772.86370370,261.10111111,192.00000000,190.06944444,76.17254902,57.49013889,30.92378849,251.46666667,158.30444444,58.32133333,0,23.98444444,0,1.92791667,70.16857143,10.83064379,131.93777778,25.91166667,14.11222222,0,12.53390738,2.35937500,22.00930556,35.16320513,14.57163265,8.33840025,0,5.54019436,12.54733333,1114.52444444,1.45788429,7.65398148,8.63138889,2.45222222,3.84824292,0,0,0.97312500,0.97349537,0.97211806,1.07971065,0.02281046,0.01479010 +2017-01-01,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv index 0c81446cf7..8a7d78510c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Day-cs.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[aytinis] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,156.95833333,0,0,0,76.17666667,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.26666667,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,288.00000000,0,0,0,576.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-27,0,0,2997.12000000,1246.47111111,243.18222222,0,1487.82000000,0,0,0,0,0,0,0,0,78.98666667,0,0,0,0,384.00000000,0,0,136.79555556,111.72266667,0,650.84444444,0,0,0,0,288.00000000,0,0,238.86666667,0,0,0,0,0,0,0,4.72138889,24.00000000,0,0,0,0,288.00000000,0,0,0,143.14666667,0,0,0,0,3.21666667,0,0,0,0,0,0,0,0 -2016-12-28,3274.16345679,0,3456.00000000,1462.12800000,1536.00000000,0,1170.67333333,0,0,0,0,0,0,0,94.01111111,384.00000000,0,0,266.54222222,193.12666667,144.42111111,60.47666667,37.38407407,384.00000000,141.10666667,0,284.72404040,0,0,0,70.31866667,288.00000000,0,0,288.00000000,0,0,0,0,0,0,0,24.00000000,24.00000000,0,13.35268330,0,5.01598392,288.00000000,0,0,0,630.22700855,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0 -2016-12-29,4394.66666667,0,3456.00000000,2251.54909091,1536.00000000,831.60857143,1440.00000000,180.11666667,410.97777778,611.49333333,1406.28333333,758.98888889,1038.22222222,107.90888889,480.00000000,384.00000000,0,0,535.35619048,387.21000000,382.20422222,288.00000000,288.00000000,106.45155556,164.24592593,48.73966667,357.73259259,39.71703704,0,0,111.16444444,288.00000000,79.40936508,52.00416667,288.00000000,0,28.69444444,22.24222222,0,0,0,7.24000000,24.00000000,19.56861111,0,16.60273286,0,13.10756221,38.39929825,0,35.48623932,0,403.98240000,4.66003889,0,0,2.01966667,4.97002566,0,0,0,0,0,0,0,0 -2016-12-30,4394.66666667,2468.14222222,324.23111111,2131.62060606,1536.00000000,1568.46000000,625.34000000,1440.00000000,1151.41444444,765.75000000,489.36111111,480.00444444,402.80000000,510.57222222,386.12222222,384.00000000,0,683.12000000,129.32098413,173.83962963,302.76555556,181.16111111,174.64030303,164.41962963,102.30620370,114.58566667,77.69224586,143.85833333,21.99861111,64.03555556,92.49006944,288.00000000,77.76288889,68.03194444,13.26442593,6.51777778,52.54222222,4.02347222,28.14000000,0,16.32947222,142.16250000,19.28555556,3.56833333,17.79750000,21.71949405,10.84229167,13.31263065,8.81516078,5.80186420,4.14055945,3.48631944,2.20207251,5.34402222,4.25015531,5.65000000,4.10559722,3.17816020,1.60992063,1.04000000,0.97263889,0.97243056,0.97256944,1.58977533,0.02760417,0.02405133 -2016-12-31,1121.32049383,5701.54666667,0,1158.10807018,1536.00000000,1590.52000000,444.34666667,1440.00000000,821.47333333,977.07428571,1440.00000000,294.97777778,0,0,0,265.13155556,385.99851852,261.10111111,772.86370370,224.42037037,245.43360532,0,288.00000000,130.38518519,119.81037037,190.06944444,30.92378849,192.00000000,251.46666667,158.30444444,57.49013889,58.32133333,76.17254902,70.16857143,1.92791667,131.93777778,23.98444444,25.91166667,0,2.35937500,35.16320513,14.57163265,0,0,14.11222222,10.83064379,22.00930556,12.53390738,8.33840025,12.54733333,1114.52444444,7.65398148,1.45788429,0,5.54019436,2.45222222,8.63138889,3.84824292,0,0,0.97312500,0.97349537,0.97211806,1.07971065,0.02281046,0.01479010 -2017-01-01,0,0,0,263.45777778,1293.28000000,0,0,1140.35000000,0,667.68761905,158.23333333,0,3.46666667,0,0,371.58666667,198.70320988,269.34857143,70.31901235,118.89333333,104.22217494,0,60.55000000,0,141.00285714,63.49666667,0,68.79111111,21.40555556,61.31777778,0,15.50950855,51.40333333,5.71666667,0,7.11888889,45.96222222,45.02654321,0,25.37236259,8.24440000,35.25833333,0,0,0,13.34534574,0,11.50582962,9.56621212,6.26263789,0,0,36.21190476,0,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Day,"[aytinis] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200.95666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203.30000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156.95833333,0,0,0,0,76.17666667,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.26666667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,576.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0,243.18222222,1246.47111111,2997.12000000,0,1487.82000000,0,0,0,0,78.98666667,0,0,0,0,384.00000000,0,0,0,0,0,136.79555556,111.72266667,0,0,0,0,0,0,650.84444444,0,0,288.00000000,24.00000000,0,4.72138889,238.86666667,0,0,0,0,0,0,0,0,0,0,0,288.00000000,0,0,0,0,143.14666667,0,0,0,3.21666667,0,0,0,0,0,0,0,0 +2016-12-28,3274.16345679,1536.00000000,1462.12800000,3456.00000000,0,1170.67333333,0,0,0,0,384.00000000,0,0,94.01111111,0,144.42111111,0,0,60.47666667,37.38407407,193.12666667,384.00000000,141.10666667,266.54222222,0,0,0,0,70.31866667,284.72404040,0,0,288.00000000,24.00000000,0,24.00000000,288.00000000,0,13.35268330,0,0,0,0,5.01598392,0,0,0,0,288.00000000,0,0,0,0,630.22700855,0,0,0,24.00000000,0,0,0,0,0,0,0,0 +2016-12-29,4394.66666667,1536.00000000,2251.54909091,3456.00000000,0,1440.00000000,180.11666667,831.60857143,410.97777778,1406.28333333,384.00000000,611.49333333,758.98888889,480.00000000,1038.22222222,382.20422222,0,107.90888889,288.00000000,288.00000000,387.21000000,106.45155556,164.24592593,535.35619048,0,39.71703704,48.73966667,79.40936508,111.16444444,357.73259259,0,0,288.00000000,19.56861111,28.69444444,24.00000000,288.00000000,52.00416667,16.60273286,0,22.24222222,0,0,13.10756221,0,0,0,7.24000000,38.39929825,4.66003889,0,0,35.48623932,403.98240000,0,2.01966667,0,4.97002566,0,0,0,0,0,0,0,0 +2016-12-30,4394.66666667,1536.00000000,2131.62060606,324.23111111,2468.14222222,625.34000000,1440.00000000,1568.46000000,1151.41444444,489.36111111,384.00000000,765.75000000,480.00444444,386.12222222,402.80000000,302.76555556,0,510.57222222,181.16111111,174.64030303,173.83962963,164.41962963,102.30620370,129.32098413,683.12000000,143.85833333,114.58566667,77.76288889,92.49006944,77.69224586,21.99861111,64.03555556,288.00000000,3.56833333,52.54222222,19.28555556,13.26442593,68.03194444,21.71949405,6.51777778,4.02347222,17.79750000,28.14000000,13.31263065,0,10.84229167,16.32947222,142.16250000,8.81516078,5.34402222,4.25015531,5.80186420,4.14055945,2.20207251,3.48631944,4.10559722,5.65000000,3.17816020,1.60992063,1.04000000,0.97263889,0.97243056,0.97256944,1.58977533,0.02760417,0.02405133 +2016-12-31,1121.32049383,1536.00000000,1158.10807018,0,5701.54666667,444.34666667,1440.00000000,1590.52000000,821.47333333,1440.00000000,265.13155556,977.07428571,294.97777778,0,0,245.43360532,385.99851852,0,0,288.00000000,224.42037037,130.38518519,119.81037037,772.86370370,261.10111111,192.00000000,190.06944444,76.17254902,57.49013889,30.92378849,251.46666667,158.30444444,58.32133333,0,23.98444444,0,1.92791667,70.16857143,10.83064379,131.93777778,25.91166667,14.11222222,0,12.53390738,2.35937500,22.00930556,35.16320513,14.57163265,8.33840025,0,5.54019436,12.54733333,1114.52444444,1.45788429,7.65398148,8.63138889,2.45222222,3.84824292,0,0,0.97312500,0.97349537,0.97211806,1.07971065,0.02281046,0.01479010 +2017-01-01,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv index fafc2a5ce3..3d1e9369c6 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Month-cd.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[aytinis] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[field] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" -2016-12,13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -2017-01,0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Month,"[aytinis] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" +2016-12,13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +2017-01,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv index fafc2a5ce3..3d1e9369c6 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Month-cs.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[aytinis] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[field] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" -2016-12,13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -2017-01,0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Month,"[aytinis] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" +2016-12,13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +2017-01,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv index a3ab39f3dd..b1f754948c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Quarter-cd.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[aytinis] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[field] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" -"2016 Q4",13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -"2017 Q1",0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Quarter,"[aytinis] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" +"2016 Q4",13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +"2017 Q1",0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv index a3ab39f3dd..b1f754948c 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Quarter-cs.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[aytinis] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[field] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" -"2016 Q4",13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -"2017 Q1",0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Quarter,"[aytinis] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" +"2016 Q4",13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +"2017 Q1",0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv index 9f82085d3b..3ea7200f2f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Year-cd.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[aytinis] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[field] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" -2016,13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -2017,0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Year,"[aytinis] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" +2016,13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +2017,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv index 9f82085d3b..3ea7200f2f 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_cpu_hours/timeseries-Year-cs.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[aytinis] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[field] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" -2016,13184.81728395,5278.79111111,6550.23272727,4368.65777778,4202.09666667,6387.18222222,2627.28571429,3060.11666667,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.52666667,529.63777778,467.04545455,405.12111111,405.36020202,433.21966967,564.66565514,337.00333333,385.99851852,328.17578283,198.73672222,183.94862434,317.64611111,158.95125772,189.64305556,167.62456790,559.31266667,87.43875000,111.17000000,72.00694444,68.10298148,76.40201389,52.61055556,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,2.35937500,21.84694444,26.97462560,19.84069307,23.01874399,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 -2017,0,0,263.45777778,0,0,1293.28000000,0,1140.35000000,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,0,0,60.55000000,0,118.89333333,70.31901235,104.22217494,269.34857143,198.70320988,141.00285714,63.49666667,0,68.79111111,0,21.40555556,51.40333333,15.50950855,0,61.31777778,0,0,5.71666667,45.96222222,13.34534574,7.11888889,45.02654321,0,0,25.37236259,0,8.24440000,35.25833333,11.50582962,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 +Year,"[aytinis] CPU Hours: Per Job","[chaff] CPU Hours: Per Job","[meapi] CPU Hours: Per Job","[velsc] CPU Hours: Per Job","[duswa] CPU Hours: Per Job","[siski] CPU Hours: Per Job","[ferdu] CPU Hours: Per Job","[smew1] CPU Hours: Per Job","[egygo] CPU Hours: Per Job","[pereg] CPU Hours: Per Job","[ovenb] CPU Hours: Per Job","[crane] CPU Hours: Per Job","[yebbu] CPU Hours: Per Job","[gloib] CPU Hours: Per Job","[yebwa] CPU Hours: Per Job","[garwa] CPU Hours: Per Job","[whtsp] CPU Hours: Per Job","[evegr] CPU Hours: Per Job","[whtpl] CPU Hours: Per Job","[misth] CPU Hours: Per Job","[shag1] CPU Hours: Per Job","[ybsbu] CPU Hours: Per Job","[shttr] CPU Hours: Per Job","[sarwa] CPU Hours: Per Job","[whimb] CPU Hours: Per Job","[corsh] CPU Hours: Per Job","[sposa] CPU Hours: Per Job","[yebsa] CPU Hours: Per Job","[hoowa] CPU Hours: Per Job","[sancr] CPU Hours: Per Job","[rolle] CPU Hours: Per Job","[field] CPU Hours: Per Job","[noror] CPU Hours: Per Job","[sante] CPU Hours: Per Job","[lesre] CPU Hours: Per Job","[mamwa] CPU Hours: Per Job","[boowa] CPU Hours: Per Job","[litau] CPU Hours: Per Job","[lapwi] CPU Hours: Per Job","[alpsw] CPU Hours: Per Job","[lanhach] CPU Hours: Per Job","[ribgu] CPU Hours: Per Job","[allga] CPU Hours: Per Job","[moorh] CPU Hours: Per Job","[caspl] CPU Hours: Per Job","[jackd] CPU Hours: Per Job","[vertera] CPU Hours: Per Job","[grath] CPU Hours: Per Job","[turdo] CPU Hours: Per Job","[pibgr] CPU Hours: Per Job","[legsh] CPU Hours: Per Job","[dunli] CPU Hours: Per Job","[swath] CPU Hours: Per Job","[reebu] CPU Hours: Per Job","[blhbu] CPU Hours: Per Job","[henha] CPU Hours: Per Job","[litst] CPU Hours: Per Job","[honbu] CPU Hours: Per Job","[crama] CPU Hours: Per Job","[relpa] CPU Hours: Per Job","[coot1] CPU Hours: Per Job","[proubis] CPU Hours: Per Job","[categ] CPU Hours: Per Job","[sogsh] CPU Hours: Per Job","[savsp] CPU Hours: Per Job","[grgsh] CPU Hours: Per Job" +2016,13184.81728395,6387.18222222,6550.23272727,5278.79111111,4368.65777778,4202.09666667,3060.11666667,2627.28571429,1767.64000000,1438.12222222,1249.92088889,1233.33333333,1006.98777778,960.13333333,1441.02222222,564.66565514,385.99851852,564.52666667,529.63777778,467.04545455,405.36020202,405.12111111,328.17578283,433.21966967,337.00333333,317.64611111,198.73672222,167.62456790,183.94862434,158.95125772,189.64305556,111.17000000,559.31266667,87.43875000,52.61055556,72.00694444,68.10298148,76.40201389,48.78758939,69.22777778,16.58158730,31.90972222,28.14000000,23.01874399,2.35937500,21.84694444,26.97462560,19.84069307,13.91899034,10.00406111,8.59051583,6.47641111,6.35072152,5.56210777,5.98691667,5.04208333,4.48717172,3.59102850,1.60992063,1.04000000,0.97288194,0.97296296,0.97234375,1.45671498,0.02434444,0.02076714 +2017,0,1293.28000000,263.45777778,0,0,0,1140.35000000,0,0,158.23333333,371.58666667,667.68761905,0,0,3.46666667,104.22217494,198.70320988,0,0,60.55000000,118.89333333,0,141.00285714,70.31901235,269.34857143,68.79111111,63.49666667,51.40333333,0,0,21.40555556,61.31777778,15.50950855,0,45.96222222,0,0,5.71666667,13.34534574,7.11888889,45.02654321,0,0,11.50582962,25.37236259,0,8.24440000,35.25833333,9.56621212,0,0,6.26263789,0,36.21190476,0,0,0,0.56752421,0,0,0.96979167,0.96958333,0.96975694,0.02809588,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..c71d3f384a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +chaff,960.05777778, +aytinis,824.05108025, +meapi,508.59805556, +velsc,436.75888889, +siski,420.21000000, +duswa,364.05481481,136.8440852046951 +ferdu,350.03888889, +smew1,218.94047619, +evegr,141.13166667,80.31330471086498 +pereg,124.23888889, +egygo,110.47750000, +crane,101.42611111, +yebwa,90.28055556,27.732762483552477 +sante,87.43875000, +ovenb,82.76488889, +mamwa,72.00694444, +garwa,52.33125262, +whtsp,50.98981481, +yebbu,50.34944444, +lapwi,49.85089556, +yebsa,49.75942901, +gloib,48.00666667, +shttr,46.66209596, +sarwa,44.53832099,8.988788032306655 +whtpl,44.13648148, +misth,39.37916667, +ybsbu,38.73828704, +ribgu,31.90972222, +whimb,29.27660714,5.4837784053086 +corsh,27.37690972, +moorh,25.48654262, +jackd,21.84694444, +hoowa,21.83599206, +shag1,20.71641414, +lesre,18.89791667, +sposa,16.91415278, +boowa,16.76537037, +field,14.37398148, +rolle,13.65055556,7.948466682221146 +sancr,10.37586034,1.124927661108179 +pibgr,10.00406111, +noror,9.12821296,1.9513258454156153 +legsh,8.59051583, +grath,7.94699670,0.252707620848999 +litau,7.02769444,1.7557857088278381 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.412736659063767 +alpsw,4.77166667,1.9283134887459636 +lanhach,3.89088542,1.5421931694132969 +allga,2.34500000,0 +caspl,2.10733760,0.04730850999433886 +vertera,1.74795089,0.6996960905360882 +turdo,1.44922324,0.09512756747619289 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +swath,0.77236014,0.16956368955632173 +dunli,0.62984891,0.07224051664061484 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.026000891408928004 +honbu,0.28378820,0.002129439336752145 +crama,0.08049603,0.022331879009996006 +relpa,0.06500000,0 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..c71d3f384a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +chaff,960.05777778, +aytinis,824.05108025, +meapi,508.59805556, +velsc,436.75888889, +siski,420.21000000, +duswa,364.05481481,136.8440852046951 +ferdu,350.03888889, +smew1,218.94047619, +evegr,141.13166667,80.31330471086498 +pereg,124.23888889, +egygo,110.47750000, +crane,101.42611111, +yebwa,90.28055556,27.732762483552477 +sante,87.43875000, +ovenb,82.76488889, +mamwa,72.00694444, +garwa,52.33125262, +whtsp,50.98981481, +yebbu,50.34944444, +lapwi,49.85089556, +yebsa,49.75942901, +gloib,48.00666667, +shttr,46.66209596, +sarwa,44.53832099,8.988788032306655 +whtpl,44.13648148, +misth,39.37916667, +ybsbu,38.73828704, +ribgu,31.90972222, +whimb,29.27660714,5.4837784053086 +corsh,27.37690972, +moorh,25.48654262, +jackd,21.84694444, +hoowa,21.83599206, +shag1,20.71641414, +lesre,18.89791667, +sposa,16.91415278, +boowa,16.76537037, +field,14.37398148, +rolle,13.65055556,7.948466682221146 +sancr,10.37586034,1.124927661108179 +pibgr,10.00406111, +noror,9.12821296,1.9513258454156153 +legsh,8.59051583, +grath,7.94699670,0.252707620848999 +litau,7.02769444,1.7557857088278381 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.412736659063767 +alpsw,4.77166667,1.9283134887459636 +lanhach,3.89088542,1.5421931694132969 +allga,2.34500000,0 +caspl,2.10733760,0.04730850999433886 +vertera,1.74795089,0.6996960905360882 +turdo,1.44922324,0.09512756747619289 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +swath,0.77236014,0.16956368955632173 +dunli,0.62984891,0.07224051664061484 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.026000891408928004 +honbu,0.28378820,0.002129439336752145 +crama,0.08049603,0.022331879009996006 +relpa,0.06500000,0 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..23b669e5c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +sante,87.43875000, +ovenb,82.76488889, +ybsbu,38.73828704, +swath,0.77236014,0.16956368955632173 +litst,0.33320707,0.09324722160395126 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-reference.csv index 6cc4dd8848..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..722f96fdad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +whimb,29.27660714,5.4837784053086 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..cbe74448c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +chaff,960.05777778, +aytinis,824.05108025,37.71723662041152 +meapi,508.59805556,25.10592065754552 +velsc,436.75888889,302.1734405238565 +siski,420.21000000,0.0011785113019775792 +duswa,364.05481481,283.2360258681995 +ferdu,350.03888889, +smew1,218.94047619,14.44749841316656 +evegr,141.13166667,99.43217705915033 +pereg,124.23888889,6.896263009875131 +egygo,110.47750000,9.927622069273584 +crane,101.42611111,3.4465883980609213 +yebwa,90.28055556,63.531580104107995 +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +garwa,52.33125262, +whtsp,50.98981481, +yebbu,50.34944444,35.60204075854135 +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66209596,5.0547371681082 +sarwa,44.53832099,12.165202586158358 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +ribgu,31.90972222,0 +whimb,29.27660714,5.657228492407654 +corsh,27.37690972,4.572758943516918 +moorh,25.48654262,0.09521527865289223 +jackd,21.84694444,1.3829746334642423 +hoowa,21.83599206,4.004901663765415 +shag1,20.71641414,8.04452860733951 +lesre,18.89791667, +sposa,16.91415278,1.4100321676305074 +boowa,16.76537037,3.911305555603074 +field,14.37398148, +rolle,13.65055556,9.195084663741797 +sancr,10.37586034,2.058444426306591 +pibgr,10.00406111,0.00040214624761869517 +noror,9.12821296,7.610909224373501 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +litau,7.02769444,2.431694700689441 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +alpsw,4.77166667,1.9283134887459636 +lanhach,3.89088542,2.2654968346862243 +allga,2.34500000,0 +caspl,2.10733760,0.04730850999433886 +vertera,1.74795089,0.6996960905360882 +turdo,1.44922324,0.22433250121213186 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +swath,0.77236014,0.27089844037935495 +dunli,0.62984891,0.07224051664061484 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +crama,0.08049603,0.022331879009996006 +relpa,0.06500000,0 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..cbe74448c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +chaff,960.05777778, +aytinis,824.05108025,37.71723662041152 +meapi,508.59805556,25.10592065754552 +velsc,436.75888889,302.1734405238565 +siski,420.21000000,0.0011785113019775792 +duswa,364.05481481,283.2360258681995 +ferdu,350.03888889, +smew1,218.94047619,14.44749841316656 +evegr,141.13166667,99.43217705915033 +pereg,124.23888889,6.896263009875131 +egygo,110.47750000,9.927622069273584 +crane,101.42611111,3.4465883980609213 +yebwa,90.28055556,63.531580104107995 +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +garwa,52.33125262, +whtsp,50.98981481, +yebbu,50.34944444,35.60204075854135 +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66209596,5.0547371681082 +sarwa,44.53832099,12.165202586158358 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +ribgu,31.90972222,0 +whimb,29.27660714,5.657228492407654 +corsh,27.37690972,4.572758943516918 +moorh,25.48654262,0.09521527865289223 +jackd,21.84694444,1.3829746334642423 +hoowa,21.83599206,4.004901663765415 +shag1,20.71641414,8.04452860733951 +lesre,18.89791667, +sposa,16.91415278,1.4100321676305074 +boowa,16.76537037,3.911305555603074 +field,14.37398148, +rolle,13.65055556,9.195084663741797 +sancr,10.37586034,2.058444426306591 +pibgr,10.00406111,0.00040214624761869517 +noror,9.12821296,7.610909224373501 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +litau,7.02769444,2.431694700689441 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +alpsw,4.77166667,1.9283134887459636 +lanhach,3.89088542,2.2654968346862243 +allga,2.34500000,0 +caspl,2.10733760,0.04730850999433886 +vertera,1.74795089,0.6996960905360882 +turdo,1.44922324,0.22433250121213186 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +swath,0.77236014,0.27089844037935495 +dunli,0.62984891,0.07224051664061484 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +crama,0.08049603,0.022331879009996006 +relpa,0.06500000,0 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..14c9f80adb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +ybsbu,38.73828704,7.964502386031587 +swath,0.77236014,0.27089844037935495 +litst,0.33320707,0.09324722160395126 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-reference.csv index 6cc4dd8848..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..f99bb8163d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +whimb,29.27660714,5.657228492407654 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..cbe74448c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +chaff,960.05777778, +aytinis,824.05108025,37.71723662041152 +meapi,508.59805556,25.10592065754552 +velsc,436.75888889,302.1734405238565 +siski,420.21000000,0.0011785113019775792 +duswa,364.05481481,283.2360258681995 +ferdu,350.03888889, +smew1,218.94047619,14.44749841316656 +evegr,141.13166667,99.43217705915033 +pereg,124.23888889,6.896263009875131 +egygo,110.47750000,9.927622069273584 +crane,101.42611111,3.4465883980609213 +yebwa,90.28055556,63.531580104107995 +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +garwa,52.33125262, +whtsp,50.98981481, +yebbu,50.34944444,35.60204075854135 +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66209596,5.0547371681082 +sarwa,44.53832099,12.165202586158358 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +ribgu,31.90972222,0 +whimb,29.27660714,5.657228492407654 +corsh,27.37690972,4.572758943516918 +moorh,25.48654262,0.09521527865289223 +jackd,21.84694444,1.3829746334642423 +hoowa,21.83599206,4.004901663765415 +shag1,20.71641414,8.04452860733951 +lesre,18.89791667, +sposa,16.91415278,1.4100321676305074 +boowa,16.76537037,3.911305555603074 +field,14.37398148, +rolle,13.65055556,9.195084663741797 +sancr,10.37586034,2.058444426306591 +pibgr,10.00406111,0.00040214624761869517 +noror,9.12821296,7.610909224373501 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +litau,7.02769444,2.431694700689441 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +alpsw,4.77166667,1.9283134887459636 +lanhach,3.89088542,2.2654968346862243 +allga,2.34500000,0 +caspl,2.10733760,0.04730850999433886 +vertera,1.74795089,0.6996960905360882 +turdo,1.44922324,0.22433250121213186 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +swath,0.77236014,0.27089844037935495 +dunli,0.62984891,0.07224051664061484 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +crama,0.08049603,0.022331879009996006 +relpa,0.06500000,0 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..cbe74448c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +chaff,960.05777778, +aytinis,824.05108025,37.71723662041152 +meapi,508.59805556,25.10592065754552 +velsc,436.75888889,302.1734405238565 +siski,420.21000000,0.0011785113019775792 +duswa,364.05481481,283.2360258681995 +ferdu,350.03888889, +smew1,218.94047619,14.44749841316656 +evegr,141.13166667,99.43217705915033 +pereg,124.23888889,6.896263009875131 +egygo,110.47750000,9.927622069273584 +crane,101.42611111,3.4465883980609213 +yebwa,90.28055556,63.531580104107995 +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +garwa,52.33125262, +whtsp,50.98981481, +yebbu,50.34944444,35.60204075854135 +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66209596,5.0547371681082 +sarwa,44.53832099,12.165202586158358 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +ribgu,31.90972222,0 +whimb,29.27660714,5.657228492407654 +corsh,27.37690972,4.572758943516918 +moorh,25.48654262,0.09521527865289223 +jackd,21.84694444,1.3829746334642423 +hoowa,21.83599206,4.004901663765415 +shag1,20.71641414,8.04452860733951 +lesre,18.89791667, +sposa,16.91415278,1.4100321676305074 +boowa,16.76537037,3.911305555603074 +field,14.37398148, +rolle,13.65055556,9.195084663741797 +sancr,10.37586034,2.058444426306591 +pibgr,10.00406111,0.00040214624761869517 +noror,9.12821296,7.610909224373501 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +litau,7.02769444,2.431694700689441 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +alpsw,4.77166667,1.9283134887459636 +lanhach,3.89088542,2.2654968346862243 +allga,2.34500000,0 +caspl,2.10733760,0.04730850999433886 +vertera,1.74795089,0.6996960905360882 +turdo,1.44922324,0.22433250121213186 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +swath,0.77236014,0.27089844037935495 +dunli,0.62984891,0.07224051664061484 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +crama,0.08049603,0.022331879009996006 +relpa,0.06500000,0 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..14c9f80adb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +ybsbu,38.73828704,7.964502386031587 +swath,0.77236014,0.27089844037935495 +litst,0.33320707,0.09324722160395126 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv index 6cc4dd8848..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..f99bb8163d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +whimb,29.27660714,5.657228492407654 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..cbe74448c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +chaff,960.05777778, +aytinis,824.05108025,37.71723662041152 +meapi,508.59805556,25.10592065754552 +velsc,436.75888889,302.1734405238565 +siski,420.21000000,0.0011785113019775792 +duswa,364.05481481,283.2360258681995 +ferdu,350.03888889, +smew1,218.94047619,14.44749841316656 +evegr,141.13166667,99.43217705915033 +pereg,124.23888889,6.896263009875131 +egygo,110.47750000,9.927622069273584 +crane,101.42611111,3.4465883980609213 +yebwa,90.28055556,63.531580104107995 +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +garwa,52.33125262, +whtsp,50.98981481, +yebbu,50.34944444,35.60204075854135 +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66209596,5.0547371681082 +sarwa,44.53832099,12.165202586158358 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +ribgu,31.90972222,0 +whimb,29.27660714,5.657228492407654 +corsh,27.37690972,4.572758943516918 +moorh,25.48654262,0.09521527865289223 +jackd,21.84694444,1.3829746334642423 +hoowa,21.83599206,4.004901663765415 +shag1,20.71641414,8.04452860733951 +lesre,18.89791667, +sposa,16.91415278,1.4100321676305074 +boowa,16.76537037,3.911305555603074 +field,14.37398148, +rolle,13.65055556,9.195084663741797 +sancr,10.37586034,2.058444426306591 +pibgr,10.00406111,0.00040214624761869517 +noror,9.12821296,7.610909224373501 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +litau,7.02769444,2.431694700689441 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +alpsw,4.77166667,1.9283134887459636 +lanhach,3.89088542,2.2654968346862243 +allga,2.34500000,0 +caspl,2.10733760,0.04730850999433886 +vertera,1.74795089,0.6996960905360882 +turdo,1.44922324,0.22433250121213186 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +swath,0.77236014,0.27089844037935495 +dunli,0.62984891,0.07224051664061484 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +crama,0.08049603,0.022331879009996006 +relpa,0.06500000,0 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..cbe74448c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +chaff,960.05777778, +aytinis,824.05108025,37.71723662041152 +meapi,508.59805556,25.10592065754552 +velsc,436.75888889,302.1734405238565 +siski,420.21000000,0.0011785113019775792 +duswa,364.05481481,283.2360258681995 +ferdu,350.03888889, +smew1,218.94047619,14.44749841316656 +evegr,141.13166667,99.43217705915033 +pereg,124.23888889,6.896263009875131 +egygo,110.47750000,9.927622069273584 +crane,101.42611111,3.4465883980609213 +yebwa,90.28055556,63.531580104107995 +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +mamwa,72.00694444,0 +garwa,52.33125262, +whtsp,50.98981481, +yebbu,50.34944444,35.60204075854135 +lapwi,49.85089556,1.1100595034642202 +yebsa,49.75942901, +gloib,48.00666667,0 +shttr,46.66209596,5.0547371681082 +sarwa,44.53832099,12.165202586158358 +whtpl,44.13648148,3.8863777173028686 +misth,39.37916667,3.5074678840012607 +ybsbu,38.73828704,7.964502386031587 +ribgu,31.90972222,0 +whimb,29.27660714,5.657228492407654 +corsh,27.37690972,4.572758943516918 +moorh,25.48654262,0.09521527865289223 +jackd,21.84694444,1.3829746334642423 +hoowa,21.83599206,4.004901663765415 +shag1,20.71641414,8.04452860733951 +lesre,18.89791667, +sposa,16.91415278,1.4100321676305074 +boowa,16.76537037,3.911305555603074 +field,14.37398148, +rolle,13.65055556,9.195084663741797 +sancr,10.37586034,2.058444426306591 +pibgr,10.00406111,0.00040214624761869517 +noror,9.12821296,7.610909224373501 +legsh,8.59051583,0.027937647321332644 +grath,7.94699670,0.4591933087881705 +litau,7.02769444,2.431694700689441 +blhbu,5.98691667,0.9781127830854605 +henha,5.04208333,1.9381499596292342 +alpsw,4.77166667,1.9283134887459636 +lanhach,3.89088542,2.2654968346862243 +allga,2.34500000,0 +caspl,2.10733760,0.04730850999433886 +vertera,1.74795089,0.6996960905360882 +turdo,1.44922324,0.22433250121213186 +coot1,0.97185185,0.0004785195136278676 +proubis,0.97183642,0.0003786808428516845 +categ,0.97148148,0.0005075905675059155 +sogsh,0.88155664,0.09909785167735996 +swath,0.77236014,0.27089844037935495 +dunli,0.62984891,0.07224051664061484 +litst,0.33320707,0.09324722160395126 +reebu,0.29758033,0.0457046053323436 +honbu,0.28378820,0.0027004215312930553 +crama,0.08049603,0.022331879009996006 +relpa,0.06500000,0 +savsp,0.02439103,0.001692897033294295 +grgsh,0.02076714,0.0006447632527319155 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..14c9f80adb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +sante,87.43875000,49.35183032798893 +ovenb,82.76488889,11.31277811706417 +ybsbu,38.73828704,7.964502386031587 +swath,0.77236014,0.27089844037935495 +litst,0.33320707,0.09324722160395126 +savsp,0.02439103,0.001692897033294295 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-reference.csv index 6cc4dd8848..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Node Hours: Per Job\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..f99bb8163d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +whimb,29.27660714,5.657228492407654 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-cd.csv index 6e10d6e791..823de7b69e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-cd.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[duswa] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[velsc] Node Hours: Per Job","[chaff] Node Hours: Per Job","[meapi] Node Hours: Per Job","[siski] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[crane] Node Hours: Per Job","[pereg] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[egygo] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[sante] Node Hours: Per Job","[garwa] Node Hours: Per Job","[shttr] Node Hours: Per Job","[gloib] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[jackd] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[misth] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[boowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[field] Node Hours: Per Job","[sposa] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[lesre] Node Hours: Per Job","[rolle] Node Hours: Per Job","[grath] Node Hours: Per Job","[sancr] Node Hours: Per Job","[noror] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[legsh] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[henha] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" +Day,"[chaff] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[meapi] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[duswa] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[pereg] Node Hours: Per Job","[egygo] Node Hours: Per Job","[crane] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[gloib] Node Hours: Per Job","[shttr] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[misth] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[lesre] Node Hours: Per Job","[sposa] Node Hours: Per Job","[boowa] Node Hours: Per Job","[field] Node Hours: Per Job","[rolle] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" 2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,2.70416667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0 -2016-12-27,0,0,249.76000000,30.39777778,103.87259259,123.98500000,0,0,0,0,0,0,0,0,0,0,0,4.93666667,4.72138889,0,24.00000000,24.00000000,13.96533333,0,0,0,0,0,8.54972222,0,0,0,19.90555556,0,0,0,0,0,0,0,40.67777778,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0 -2016-12-28,0,204.63521605,288.00000000,192.00000000,121.84400000,110.33416667,0,0,0,0,0,0,0,33.31777778,0,0,0,24.00000000,24.00000000,0,24.00000000,9.02631944,17.63833333,4.70055556,0,13.35268330,5.03972222,0,24.00000000,3.11533951,0,5.01598392,24.00000000,10.70500000,0,0,8.78983333,0,0,0,19.51686869,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0 -2016-12-29,0,274.66666667,288.00000000,192.00000000,187.62909091,144.00000000,69.30071429,26.97722222,15.00972222,50.95777778,117.19027778,129.77777778,25.68611111,64.73166667,0,37.94944444,0,24.00000000,24.00000000,19.85234127,19.56861111,23.88776389,20.53074074,24.00000000,0,16.60273286,24.00000000,0,8.50644444,24.00000000,4.96462963,13.10756221,24.00000000,18.93416667,0,4.06163889,13.89555556,7.17361111,0,3.62000000,23.34269676,24.00000000,10.40083333,0,4.66003889,0,0,2.01966667,22.24222222,0,0,0,3.53675439,0,0,0,0,2.38309829,0,0,14.25164444,0.65402610,0,0,0,0 -2016-12-30,205.67851852,274.66666667,23.87888889,192.00000000,177.63505051,76.11166667,130.70500000,127.64305556,120.00000000,63.81250000,40.78009259,50.35000000,71.96340278,14.46204762,0,24.00027778,56.92666667,24.00000000,19.28555556,19.44072222,3.56833333,18.92284722,12.82745370,19.30611111,17.79750000,21.71949405,15.09675926,10.84229167,18.07555556,14.55335859,17.98229167,13.31263065,11.72422222,9.52657407,8.00444444,9.54880556,11.13357639,13.13555556,2.52592593,16.84687500,5.03889184,24.00000000,13.60638889,3.48631944,5.34402222,4.25015531,0.81472222,4.10559722,3.96541667,2.34500000,0,1.36229167,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.63121279,0.56942901,0.43603175,0.13315301,0.32887293,0.08049603,0.06500000,0.02760417,0.02405133 -2016-12-31,475.12888889,70.08253086,0,192.00000000,96.50900585,55.54333333,132.54333333,0,120.00000000,81.42285714,120.00000000,0,51.34208333,96.20765432,33.22259259,14.74888889,21.75842593,16.57072222,0,19.04313725,0,23.17923611,14.97629630,0,14.11222222,10.83064379,0,22.00930556,16.29814815,24.00000000,24.00000000,12.53390738,1.92791667,9.82916667,19.78805556,15.83912037,6.09461806,5.99611111,21.37166667,7.28581633,1.97834003,4.89016667,6.47384921,7.65398148,0,5.54019436,16.49222222,8.63138889,1.29611111,0,0.19661458,2.93026709,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,69.65777778,1.04561111,0.15326389,0.13894731,0.36784723,0,0,0.02281046,0.01479010 -2017-01-01,0,0,0,161.66000000,21.95481481,0,0,0,95.02916667,55.64063492,13.18611111,0.43333333,0,8.78987654,17.76722222,0,22.44571429,23.22416667,0,12.85083333,0,11.20848700,17.62535714,0,0,13.34534574,0,0,0,5.04583333,8.59888889,11.50582962,0,4.95388889,7.66472222,5.29138889,0,11.49055556,4.28111111,17.62916667,0,1.56342949,0.47638889,0,0,0,0.88986111,0,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,2.70416667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0 +2016-12-27,30.39777778,0,103.87259259,249.76000000,123.98500000,0,0,0,0,0,0,0,0,24.00000000,4.93666667,4.72138889,24.00000000,0,0,0,0,0,13.96533333,0,0,0,8.54972222,0,0,0,0,0,0,0,0,0,19.90555556,0,0,40.67777778,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0 +2016-12-28,192.00000000,204.63521605,121.84400000,288.00000000,110.33416667,0,0,0,0,0,0,0,0,24.00000000,24.00000000,24.00000000,9.02631944,0,0,13.35268330,0,4.70055556,17.63833333,33.31777778,5.03972222,3.11533951,24.00000000,0,0,0,5.01598392,0,8.78983333,10.70500000,0,0,24.00000000,0,0,19.51686869,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0 +2016-12-29,192.00000000,274.66666667,187.62909091,288.00000000,144.00000000,0,15.00972222,69.30071429,26.97722222,117.19027778,25.68611111,50.95777778,129.77777778,19.56861111,24.00000000,24.00000000,23.88776389,0,37.94944444,16.60273286,19.85234127,24.00000000,20.53074074,64.73166667,24.00000000,24.00000000,8.50644444,0,0,4.96462963,13.10756221,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,0,0,23.34269676,4.66003889,24.00000000,0,3.62000000,10.40083333,0,2.01966667,0,22.24222222,0,0,0,3.53675439,0,0,0,0,2.38309829,0,0,14.25164444,0.65402610,0,0,0,0 +2016-12-30,192.00000000,274.66666667,177.63505051,23.87888889,76.11166667,205.67851852,120.00000000,130.70500000,127.64305556,40.78009259,71.96340278,63.81250000,50.35000000,3.56833333,24.00000000,19.28555556,18.92284722,0,24.00027778,21.71949405,19.44072222,19.30611111,12.82745370,14.46204762,15.09675926,14.55335859,18.07555556,17.79750000,56.92666667,17.98229167,13.31263065,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,8.00444444,2.52592593,5.03889184,5.34402222,24.00000000,4.25015531,16.84687500,13.60638889,3.48631944,4.10559722,0.81472222,3.96541667,2.34500000,0,1.36229167,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.63121279,0.56942901,0.43603175,0.13315301,0.32887293,0.08049603,0.06500000,0.02760417,0.02405133 +2016-12-31,192.00000000,70.08253086,96.50900585,0,55.54333333,475.12888889,120.00000000,132.54333333,0,120.00000000,51.34208333,81.42285714,0,0,16.57072222,0,23.17923611,33.22259259,14.74888889,10.83064379,19.04313725,0,14.97629630,96.20765432,0,24.00000000,16.29814815,14.11222222,21.75842593,24.00000000,12.53390738,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,19.78805556,21.37166667,1.97834003,0,4.89016667,5.54019436,7.28581633,6.47384921,7.65398148,8.63138889,16.49222222,1.29611111,0,0.19661458,2.93026709,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,69.65777778,1.04561111,0.15326389,0.13894731,0.36784723,0,0,0.02281046,0.01479010 +2017-01-01,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-cs.csv index 6e10d6e791..823de7b69e 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-cs.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[duswa] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[velsc] Node Hours: Per Job","[chaff] Node Hours: Per Job","[meapi] Node Hours: Per Job","[siski] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[crane] Node Hours: Per Job","[pereg] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[egygo] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[sante] Node Hours: Per Job","[garwa] Node Hours: Per Job","[shttr] Node Hours: Per Job","[gloib] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[jackd] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[misth] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[boowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[field] Node Hours: Per Job","[sposa] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[lesre] Node Hours: Per Job","[rolle] Node Hours: Per Job","[grath] Node Hours: Per Job","[sancr] Node Hours: Per Job","[noror] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[legsh] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[henha] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" +Day,"[chaff] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[meapi] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[duswa] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[pereg] Node Hours: Per Job","[egygo] Node Hours: Per Job","[crane] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[gloib] Node Hours: Per Job","[shttr] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[misth] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[lesre] Node Hours: Per Job","[sposa] Node Hours: Per Job","[boowa] Node Hours: Per Job","[field] Node Hours: Per Job","[rolle] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" 2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.74638889,0,0,0,0,0,0,0,0,0,0,16.94166667,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,2.70416667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0 -2016-12-27,0,0,249.76000000,30.39777778,103.87259259,123.98500000,0,0,0,0,0,0,0,0,0,0,0,4.93666667,4.72138889,0,24.00000000,24.00000000,13.96533333,0,0,0,0,0,8.54972222,0,0,0,19.90555556,0,0,0,0,0,0,0,40.67777778,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0 -2016-12-28,0,204.63521605,288.00000000,192.00000000,121.84400000,110.33416667,0,0,0,0,0,0,0,33.31777778,0,0,0,24.00000000,24.00000000,0,24.00000000,9.02631944,17.63833333,4.70055556,0,13.35268330,5.03972222,0,24.00000000,3.11533951,0,5.01598392,24.00000000,10.70500000,0,0,8.78983333,0,0,0,19.51686869,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0 -2016-12-29,0,274.66666667,288.00000000,192.00000000,187.62909091,144.00000000,69.30071429,26.97722222,15.00972222,50.95777778,117.19027778,129.77777778,25.68611111,64.73166667,0,37.94944444,0,24.00000000,24.00000000,19.85234127,19.56861111,23.88776389,20.53074074,24.00000000,0,16.60273286,24.00000000,0,8.50644444,24.00000000,4.96462963,13.10756221,24.00000000,18.93416667,0,4.06163889,13.89555556,7.17361111,0,3.62000000,23.34269676,24.00000000,10.40083333,0,4.66003889,0,0,2.01966667,22.24222222,0,0,0,3.53675439,0,0,0,0,2.38309829,0,0,14.25164444,0.65402610,0,0,0,0 -2016-12-30,205.67851852,274.66666667,23.87888889,192.00000000,177.63505051,76.11166667,130.70500000,127.64305556,120.00000000,63.81250000,40.78009259,50.35000000,71.96340278,14.46204762,0,24.00027778,56.92666667,24.00000000,19.28555556,19.44072222,3.56833333,18.92284722,12.82745370,19.30611111,17.79750000,21.71949405,15.09675926,10.84229167,18.07555556,14.55335859,17.98229167,13.31263065,11.72422222,9.52657407,8.00444444,9.54880556,11.13357639,13.13555556,2.52592593,16.84687500,5.03889184,24.00000000,13.60638889,3.48631944,5.34402222,4.25015531,0.81472222,4.10559722,3.96541667,2.34500000,0,1.36229167,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.63121279,0.56942901,0.43603175,0.13315301,0.32887293,0.08049603,0.06500000,0.02760417,0.02405133 -2016-12-31,475.12888889,70.08253086,0,192.00000000,96.50900585,55.54333333,132.54333333,0,120.00000000,81.42285714,120.00000000,0,51.34208333,96.20765432,33.22259259,14.74888889,21.75842593,16.57072222,0,19.04313725,0,23.17923611,14.97629630,0,14.11222222,10.83064379,0,22.00930556,16.29814815,24.00000000,24.00000000,12.53390738,1.92791667,9.82916667,19.78805556,15.83912037,6.09461806,5.99611111,21.37166667,7.28581633,1.97834003,4.89016667,6.47384921,7.65398148,0,5.54019436,16.49222222,8.63138889,1.29611111,0,0.19661458,2.93026709,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,69.65777778,1.04561111,0.15326389,0.13894731,0.36784723,0,0,0.02281046,0.01479010 -2017-01-01,0,0,0,161.66000000,21.95481481,0,0,0,95.02916667,55.64063492,13.18611111,0.43333333,0,8.78987654,17.76722222,0,22.44571429,23.22416667,0,12.85083333,0,11.20848700,17.62535714,0,0,13.34534574,0,0,0,5.04583333,8.59888889,11.50582962,0,4.95388889,7.66472222,5.29138889,0,11.49055556,4.28111111,17.62916667,0,1.56342949,0.47638889,0,0,0,0.88986111,0,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,8.60361111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,13.07986111,0,0,0,0,0,0,0,3.17402778,0,0,0,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,2.70416667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0 +2016-12-27,30.39777778,0,103.87259259,249.76000000,123.98500000,0,0,0,0,0,0,0,0,24.00000000,4.93666667,4.72138889,24.00000000,0,0,0,0,0,13.96533333,0,0,0,8.54972222,0,0,0,0,0,0,0,0,0,19.90555556,0,0,40.67777778,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,5.60912037,3.21666667,0,0,0,0 +2016-12-28,192.00000000,204.63521605,121.84400000,288.00000000,110.33416667,0,0,0,0,0,0,0,0,24.00000000,24.00000000,24.00000000,9.02631944,0,0,13.35268330,0,4.70055556,17.63833333,33.31777778,5.03972222,3.11533951,24.00000000,0,0,0,5.01598392,0,8.78983333,10.70500000,0,0,24.00000000,0,0,19.51686869,0,24.00000000,0,0,0,0,0,0,0,0,0,0,24.00000000,0,0,0,0,0,0,0,22.46382479,24.00000000,0,0,0,0 +2016-12-29,192.00000000,274.66666667,187.62909091,288.00000000,144.00000000,0,15.00972222,69.30071429,26.97722222,117.19027778,25.68611111,50.95777778,129.77777778,19.56861111,24.00000000,24.00000000,23.88776389,0,37.94944444,16.60273286,19.85234127,24.00000000,20.53074074,64.73166667,24.00000000,24.00000000,8.50644444,0,0,4.96462963,13.10756221,0,13.89555556,18.93416667,7.17361111,4.06163889,24.00000000,0,0,23.34269676,4.66003889,24.00000000,0,3.62000000,10.40083333,0,2.01966667,0,22.24222222,0,0,0,3.53675439,0,0,0,0,2.38309829,0,0,14.25164444,0.65402610,0,0,0,0 +2016-12-30,192.00000000,274.66666667,177.63505051,23.87888889,76.11166667,205.67851852,120.00000000,130.70500000,127.64305556,40.78009259,71.96340278,63.81250000,50.35000000,3.56833333,24.00000000,19.28555556,18.92284722,0,24.00027778,21.71949405,19.44072222,19.30611111,12.82745370,14.46204762,15.09675926,14.55335859,18.07555556,17.79750000,56.92666667,17.98229167,13.31263065,10.84229167,11.13357639,9.52657407,13.13555556,9.54880556,11.72422222,8.00444444,2.52592593,5.03889184,5.34402222,24.00000000,4.25015531,16.84687500,13.60638889,3.48631944,4.10559722,0.81472222,3.96541667,2.34500000,0,1.36229167,1.09007800,0.97263889,0.97243056,0.97256944,1.58977533,0.63121279,0.56942901,0.43603175,0.13315301,0.32887293,0.08049603,0.06500000,0.02760417,0.02405133 +2016-12-31,192.00000000,70.08253086,96.50900585,0,55.54333333,475.12888889,120.00000000,132.54333333,0,120.00000000,51.34208333,81.42285714,0,0,16.57072222,0,23.17923611,33.22259259,14.74888889,10.83064379,19.04313725,0,14.97629630,96.20765432,0,24.00000000,16.29814815,14.11222222,21.75842593,24.00000000,12.53390738,22.00930556,6.09461806,9.82916667,5.99611111,15.83912037,1.92791667,19.78805556,21.37166667,1.97834003,0,4.89016667,5.54019436,7.28581633,6.47384921,7.65398148,8.63138889,16.49222222,1.29611111,0,0.19661458,2.93026709,1.04230003,0.97312500,0.97349537,0.97211806,1.07971065,69.65777778,1.04561111,0.15326389,0.13894731,0.36784723,0,0,0.02281046,0.01479010 +2017-01-01,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-pi.csv index 48f8e20919..4444ebbb91 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-pi.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Day-pi.csv @@ -6,15 +6,15 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[ovenb] Node Hours: Per Job","[sante] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[swath] Node Hours: Per Job","[litst] Node Hours: Per Job","[savsp] Node Hours: Per Job" -2016-12-23,0,8.60361111,0,0,0,0 -2016-12-24,0,24.00000000,0,0,0,0 -2016-12-25,0,24.00000000,0,0,0,0 -2016-12-26,0,24.00000000,0,0,0,0 -2016-12-27,4.93666667,24.00000000,8.54972222,0,0,0 +Day,"[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[swath] Node Hours: Per Job","[litst] Node Hours: Per Job","[savsp] Node Hours: Per Job" +2016-12-23,8.60361111,0,0,0,0,0 +2016-12-24,24.00000000,0,0,0,0,0 +2016-12-25,24.00000000,0,0,0,0,0 +2016-12-26,24.00000000,0,0,0,0,0 +2016-12-27,24.00000000,4.93666667,8.54972222,0,0,0 2016-12-28,24.00000000,24.00000000,24.00000000,0,0,0 -2016-12-29,24.00000000,19.56861111,8.50644444,2.38309829,0,0 -2016-12-30,24.00000000,3.56833333,18.07555556,0.63121279,0.43603175,0.02760417 -2016-12-31,16.57072222,0,16.29814815,69.65777778,0.15326389,0.02281046 -2017-01-01,23.22416667,0,0,0,0,0.02555556 +2016-12-29,19.56861111,24.00000000,8.50644444,2.38309829,0,0 +2016-12-30,3.56833333,24.00000000,18.07555556,0.63121279,0.43603175,0.02760417 +2016-12-31,0,16.57072222,16.29814815,69.65777778,0.15326389,0.02281046 +2017-01-01,0,23.22416667,0,0,0,0.02555556 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Month-cd.csv index eb4d635351..7720478930 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Month-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Month-cd.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[aytinis] Node Hours: Per Job","[chaff] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[meapi] Node Hours: Per Job","[duswa] Node Hours: Per Job","[smew1] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[evegr] Node Hours: Per Job","[egygo] Node Hours: Per Job","[pereg] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[crane] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[gloib] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[misth] Node Hours: Per Job","[shttr] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whimb] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[shag1] Node Hours: Per Job","[boowa] Node Hours: Per Job","[sposa] Node Hours: Per Job","[rolle] Node Hours: Per Job","[lesre] Node Hours: Per Job","[field] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" -2016-12,824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -2017-01,0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Month,"[chaff] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[meapi] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[duswa] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[pereg] Node Hours: Per Job","[egygo] Node Hours: Per Job","[crane] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[gloib] Node Hours: Per Job","[shttr] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[misth] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[lesre] Node Hours: Per Job","[sposa] Node Hours: Per Job","[boowa] Node Hours: Per Job","[field] Node Hours: Per Job","[rolle] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" +2016-12,798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +2017-01,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Month-cs.csv index eb4d635351..7720478930 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Month-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Month-cs.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Month,"[aytinis] Node Hours: Per Job","[chaff] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[meapi] Node Hours: Per Job","[duswa] Node Hours: Per Job","[smew1] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[evegr] Node Hours: Per Job","[egygo] Node Hours: Per Job","[pereg] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[crane] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[gloib] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[misth] Node Hours: Per Job","[shttr] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whimb] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[shag1] Node Hours: Per Job","[boowa] Node Hours: Per Job","[sposa] Node Hours: Per Job","[rolle] Node Hours: Per Job","[lesre] Node Hours: Per Job","[field] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" -2016-12,824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -2017-01,0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Month,"[chaff] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[meapi] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[duswa] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[pereg] Node Hours: Per Job","[egygo] Node Hours: Per Job","[crane] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[gloib] Node Hours: Per Job","[shttr] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[misth] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[lesre] Node Hours: Per Job","[sposa] Node Hours: Per Job","[boowa] Node Hours: Per Job","[field] Node Hours: Per Job","[rolle] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" +2016-12,798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +2017-01,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv index 01c0da28a6..e7d07c26b0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Quarter-cd.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[aytinis] Node Hours: Per Job","[chaff] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[meapi] Node Hours: Per Job","[duswa] Node Hours: Per Job","[smew1] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[evegr] Node Hours: Per Job","[egygo] Node Hours: Per Job","[pereg] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[crane] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[gloib] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[misth] Node Hours: Per Job","[shttr] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whimb] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[shag1] Node Hours: Per Job","[boowa] Node Hours: Per Job","[sposa] Node Hours: Per Job","[rolle] Node Hours: Per Job","[lesre] Node Hours: Per Job","[field] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" -"2016 Q4",824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -"2017 Q1",0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Quarter,"[chaff] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[meapi] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[duswa] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[pereg] Node Hours: Per Job","[egygo] Node Hours: Per Job","[crane] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[gloib] Node Hours: Per Job","[shttr] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[misth] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[lesre] Node Hours: Per Job","[sposa] Node Hours: Per Job","[boowa] Node Hours: Per Job","[field] Node Hours: Per Job","[rolle] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" +"2016 Q4",798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +"2017 Q1",161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv index 01c0da28a6..e7d07c26b0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Quarter-cs.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Quarter,"[aytinis] Node Hours: Per Job","[chaff] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[meapi] Node Hours: Per Job","[duswa] Node Hours: Per Job","[smew1] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[evegr] Node Hours: Per Job","[egygo] Node Hours: Per Job","[pereg] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[crane] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[gloib] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[misth] Node Hours: Per Job","[shttr] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whimb] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[shag1] Node Hours: Per Job","[boowa] Node Hours: Per Job","[sposa] Node Hours: Per Job","[rolle] Node Hours: Per Job","[lesre] Node Hours: Per Job","[field] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" -"2016 Q4",824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -"2017 Q1",0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Quarter,"[chaff] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[meapi] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[duswa] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[pereg] Node Hours: Per Job","[egygo] Node Hours: Per Job","[crane] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[gloib] Node Hours: Per Job","[shttr] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[misth] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[lesre] Node Hours: Per Job","[sposa] Node Hours: Per Job","[boowa] Node Hours: Per Job","[field] Node Hours: Per Job","[rolle] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" +"2016 Q4",798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +"2017 Q1",161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Year-cd.csv index c02b3c9846..0abea93490 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Year-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Year-cd.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[aytinis] Node Hours: Per Job","[chaff] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[meapi] Node Hours: Per Job","[duswa] Node Hours: Per Job","[smew1] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[evegr] Node Hours: Per Job","[egygo] Node Hours: Per Job","[pereg] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[crane] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[gloib] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[misth] Node Hours: Per Job","[shttr] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whimb] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[shag1] Node Hours: Per Job","[boowa] Node Hours: Per Job","[sposa] Node Hours: Per Job","[rolle] Node Hours: Per Job","[lesre] Node Hours: Per Job","[field] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" -2016,824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -2017,0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Year,"[chaff] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[meapi] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[duswa] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[pereg] Node Hours: Per Job","[egygo] Node Hours: Per Job","[crane] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[gloib] Node Hours: Per Job","[shttr] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[misth] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[lesre] Node Hours: Per Job","[sposa] Node Hours: Per Job","[boowa] Node Hours: Per Job","[field] Node Hours: Per Job","[rolle] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" +2016,798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +2017,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Year-cs.csv index c02b3c9846..0abea93490 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Year-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_node_hours/timeseries-Year-cs.csv @@ -5,7 +5,7 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Year,"[aytinis] Node Hours: Per Job","[chaff] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[meapi] Node Hours: Per Job","[duswa] Node Hours: Per Job","[smew1] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[evegr] Node Hours: Per Job","[egygo] Node Hours: Per Job","[pereg] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[crane] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[gloib] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[misth] Node Hours: Per Job","[shttr] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whimb] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[shag1] Node Hours: Per Job","[boowa] Node Hours: Per Job","[sposa] Node Hours: Per Job","[rolle] Node Hours: Per Job","[lesre] Node Hours: Per Job","[field] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" -2016,824.05108025,798.39777778,436.75888889,420.21000000,545.85272727,364.05481481,218.94047619,255.00972222,141.13166667,110.47750000,119.84351852,180.12777778,87.43875000,102.77777778,72.00694444,78.12005556,50.34944444,48.00666667,44.13648148,52.03015015,48.78758939,38.73828704,38.92045455,41.05402778,31.90972222,41.90614198,42.39165094,28.08361111,33.22259259,21.84694444,21.83599206,39.70576389,23.01874399,20.26606061,16.76537037,16.56139352,16.77370370,13.15263889,13.89625000,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 -2017,0,161.66000000,0,0,21.95481481,0,0,95.02916667,0,0,13.18611111,0.43333333,0,55.64063492,0,23.22416667,0,0,0,8.78987654,13.34534574,0,5.04583333,17.62535714,0,12.85083333,11.20848700,22.44571429,17.76722222,0,0,8.59888889,11.50582962,4.95388889,0,5.29138889,4.28111111,11.49055556,7.66472222,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 +Year,"[chaff] Node Hours: Per Job","[aytinis] Node Hours: Per Job","[meapi] Node Hours: Per Job","[velsc] Node Hours: Per Job","[siski] Node Hours: Per Job","[duswa] Node Hours: Per Job","[ferdu] Node Hours: Per Job","[smew1] Node Hours: Per Job","[evegr] Node Hours: Per Job","[pereg] Node Hours: Per Job","[egygo] Node Hours: Per Job","[crane] Node Hours: Per Job","[yebwa] Node Hours: Per Job","[sante] Node Hours: Per Job","[ovenb] Node Hours: Per Job","[mamwa] Node Hours: Per Job","[garwa] Node Hours: Per Job","[whtsp] Node Hours: Per Job","[yebbu] Node Hours: Per Job","[lapwi] Node Hours: Per Job","[yebsa] Node Hours: Per Job","[gloib] Node Hours: Per Job","[shttr] Node Hours: Per Job","[sarwa] Node Hours: Per Job","[whtpl] Node Hours: Per Job","[misth] Node Hours: Per Job","[ybsbu] Node Hours: Per Job","[ribgu] Node Hours: Per Job","[whimb] Node Hours: Per Job","[corsh] Node Hours: Per Job","[moorh] Node Hours: Per Job","[jackd] Node Hours: Per Job","[hoowa] Node Hours: Per Job","[shag1] Node Hours: Per Job","[lesre] Node Hours: Per Job","[sposa] Node Hours: Per Job","[boowa] Node Hours: Per Job","[field] Node Hours: Per Job","[rolle] Node Hours: Per Job","[sancr] Node Hours: Per Job","[pibgr] Node Hours: Per Job","[noror] Node Hours: Per Job","[legsh] Node Hours: Per Job","[grath] Node Hours: Per Job","[litau] Node Hours: Per Job","[blhbu] Node Hours: Per Job","[henha] Node Hours: Per Job","[alpsw] Node Hours: Per Job","[lanhach] Node Hours: Per Job","[allga] Node Hours: Per Job","[caspl] Node Hours: Per Job","[vertera] Node Hours: Per Job","[turdo] Node Hours: Per Job","[coot1] Node Hours: Per Job","[proubis] Node Hours: Per Job","[categ] Node Hours: Per Job","[sogsh] Node Hours: Per Job","[swath] Node Hours: Per Job","[dunli] Node Hours: Per Job","[litst] Node Hours: Per Job","[reebu] Node Hours: Per Job","[honbu] Node Hours: Per Job","[crama] Node Hours: Per Job","[relpa] Node Hours: Per Job","[savsp] Node Hours: Per Job","[grgsh] Node Hours: Per Job" +2016,798.39777778,824.05108025,545.85272727,436.75888889,420.21000000,364.05481481,255.00972222,218.94047619,141.13166667,119.84351852,110.47750000,102.77777778,180.12777778,87.43875000,78.12005556,72.00694444,42.39165094,33.22259259,50.34944444,48.78758939,41.90614198,48.00666667,41.05402778,52.03015015,44.13648148,38.92045455,38.73828704,31.90972222,28.08361111,39.70576389,23.01874399,21.84694444,21.83599206,20.26606061,13.15263889,16.56139352,16.76537037,13.89625000,16.77370370,10.37586034,10.00406111,46.63944444,8.59051583,7.77245050,8.66552083,5.98691667,5.04208333,8.65347222,5.99888889,2.34500000,0.19661458,2.24853865,1.52875081,0.97288194,0.97296296,0.97234375,1.45671498,0.77236014,0.61704722,0.33320707,0.26789938,0.35657536,0.08049603,0.06500000,0.02434444,0.02076714 +2017,161.66000000,0,21.95481481,0,0,0,95.02916667,0,0,13.18611111,0,55.64063492,0.43333333,0,23.22416667,0,11.20848700,17.76722222,0,13.34534574,12.85083333,0,17.62535714,8.78987654,0,5.04583333,0,0,22.44571429,8.59888889,11.50582962,0,0,4.95388889,11.49055556,5.29138889,0,7.66472222,4.28111111,0,0,1.56342949,0,17.62916667,0.47638889,0,0,0.88986111,2.25132716,0,2.11436355,0.68703333,1.19577652,0.96979167,0.96958333,0.96975694,0.02809588,0,0.63905875,0,2.34518519,0.05680123,0,0,0.02555556,0 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +duswa,224.0000,72.73696905059123 +aytinis,183.1111,8.380524814332512 +yebwa,160.0000,0 +egygo,112.0000,0 +velsc,112.0000,22.627416997969522 +allga,108.0000,0 +crane,96.0000,0 +meapi,96.0000,0 +smew1,72.0000,0 +chaff,64.0000,0 +ferdu,60.0000,0 +pereg,60.0000,0 +siski,60.0000,8.48528137423857 +evegr,56.0000,0 +whimb,48.8571,4.610167493255085 +alpsw,44.0000,3.872983346207417 +dunli,42.4937,2.1967513051929584 +sarwa,29.2444,2.796321314683548 +yebbu,28.0000,8.48528137423857 +vertera,24.0145,1.2257293401539964 +whtsp,23.1111,0.8380524817467393 +crama,20.0000,0 +gloib,20.0000,0 +rolle,18.7500,11.90784930203603 +sancr,17.6389,0.4033294968166851 +lanhach,17.6250,1.5709148409446008 +ovenb,16.0000,0 +relpa,16.0000,0 +shag1,14.9091,1.9304200094068276 +litst,14.1818,0.600525691825461 +caspl,12.0000,0 +misth,12.0000,0 +sposa,12.0000,0 +whtpl,12.0000,0 +litau,10.9000,0.7273238618387268 +garwa,10.8868,0.562036409390535 +hoowa,10.0952,0.435940674754997 +honbu,9.4154,0.00816310989773516 +ybsbu,9.3333,1.2171612393263744 +noror,8.7000,1.5642889758609182 +reebu,8.2161,0.0205625896517565 +turdo,8.0081,0.005754675642337485 +corsh,8.0000,0 +field,8.0000,0 +shttr,7.8182,1.2623544244155334 +swath,4.0842,0.08409243973613295 +lesre,4.0000,0 +yebsa,4.0000,0 +grath,2.2970,0.1689240965440023 +boowa,1.7333,0.7084673076458524 +blhbu,1.0000,0 +categ,1.0000,0 +coot1,1.0000,0 +grgsh,1.0000,0 +henha,1.0000,0 +jackd,1.0000,0 +lapwi,1.0000,0 +legsh,1.0000,0 +mamwa,1.0000,0 +moorh,1.0000,0 +pibgr,1.0000,0 +proubis,1.0000,0 +ribgu,1.0000,0 +sante,1.0000,0 +savsp,1.0000,0 +sogsh,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-cs.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +duswa,224.0000,72.73696905059123 +aytinis,183.1111,8.380524814332512 +yebwa,160.0000,0 +egygo,112.0000,0 +velsc,112.0000,22.627416997969522 +allga,108.0000,0 +crane,96.0000,0 +meapi,96.0000,0 +smew1,72.0000,0 +chaff,64.0000,0 +ferdu,60.0000,0 +pereg,60.0000,0 +siski,60.0000,8.48528137423857 +evegr,56.0000,0 +whimb,48.8571,4.610167493255085 +alpsw,44.0000,3.872983346207417 +dunli,42.4937,2.1967513051929584 +sarwa,29.2444,2.796321314683548 +yebbu,28.0000,8.48528137423857 +vertera,24.0145,1.2257293401539964 +whtsp,23.1111,0.8380524817467393 +crama,20.0000,0 +gloib,20.0000,0 +rolle,18.7500,11.90784930203603 +sancr,17.6389,0.4033294968166851 +lanhach,17.6250,1.5709148409446008 +ovenb,16.0000,0 +relpa,16.0000,0 +shag1,14.9091,1.9304200094068276 +litst,14.1818,0.600525691825461 +caspl,12.0000,0 +misth,12.0000,0 +sposa,12.0000,0 +whtpl,12.0000,0 +litau,10.9000,0.7273238618387268 +garwa,10.8868,0.562036409390535 +hoowa,10.0952,0.435940674754997 +honbu,9.4154,0.00816310989773516 +ybsbu,9.3333,1.2171612393263744 +noror,8.7000,1.5642889758609182 +reebu,8.2161,0.0205625896517565 +turdo,8.0081,0.005754675642337485 +corsh,8.0000,0 +field,8.0000,0 +shttr,7.8182,1.2623544244155334 +swath,4.0842,0.08409243973613295 +lesre,4.0000,0 +yebsa,4.0000,0 +grath,2.2970,0.1689240965440023 +boowa,1.7333,0.7084673076458524 +blhbu,1.0000,0 +categ,1.0000,0 +coot1,1.0000,0 +grgsh,1.0000,0 +henha,1.0000,0 +jackd,1.0000,0 +lapwi,1.0000,0 +legsh,1.0000,0 +mamwa,1.0000,0 +moorh,1.0000,0 +pibgr,1.0000,0 +proubis,1.0000,0 +ribgu,1.0000,0 +sante,1.0000,0 +savsp,1.0000,0 +sogsh,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-pi.csv new file mode 100644 index 0000000000..c015d4f83e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +ovenb,16.0000,0 +litst,14.1818,0.600525691825461 +ybsbu,9.3333,1.2171612393263744 +swath,4.0842,0.08409243973613295 +sante,1.0000,0 +savsp,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-reference.csv index 68ce959394..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-usr.csv new file mode 100644 index 0000000000..61b4709c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +whimb,48.8571,4.610167493255085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-cd.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +duswa,224.0000,72.73696905059123 +aytinis,183.1111,8.380524814332512 +yebwa,160.0000,0 +egygo,112.0000,0 +velsc,112.0000,22.627416997969522 +allga,108.0000,0 +crane,96.0000,0 +meapi,96.0000,0 +smew1,72.0000,0 +chaff,64.0000,0 +ferdu,60.0000,0 +pereg,60.0000,0 +siski,60.0000,8.48528137423857 +evegr,56.0000,0 +whimb,48.8571,4.610167493255085 +alpsw,44.0000,3.872983346207417 +dunli,42.4937,2.1967513051929584 +sarwa,29.2444,2.796321314683548 +yebbu,28.0000,8.48528137423857 +vertera,24.0145,1.2257293401539964 +whtsp,23.1111,0.8380524817467393 +crama,20.0000,0 +gloib,20.0000,0 +rolle,18.7500,11.90784930203603 +sancr,17.6389,0.4033294968166851 +lanhach,17.6250,1.5709148409446008 +ovenb,16.0000,0 +relpa,16.0000,0 +shag1,14.9091,1.9304200094068276 +litst,14.1818,0.600525691825461 +caspl,12.0000,0 +misth,12.0000,0 +sposa,12.0000,0 +whtpl,12.0000,0 +litau,10.9000,0.7273238618387268 +garwa,10.8868,0.562036409390535 +hoowa,10.0952,0.435940674754997 +honbu,9.4154,0.00816310989773516 +ybsbu,9.3333,1.2171612393263744 +noror,8.7000,1.5642889758609182 +reebu,8.2161,0.0205625896517565 +turdo,8.0081,0.005754675642337485 +corsh,8.0000,0 +field,8.0000,0 +shttr,7.8182,1.2623544244155334 +swath,4.0842,0.08409243973613295 +lesre,4.0000,0 +yebsa,4.0000,0 +grath,2.2970,0.1689240965440023 +boowa,1.7333,0.7084673076458524 +blhbu,1.0000,0 +categ,1.0000,0 +coot1,1.0000,0 +grgsh,1.0000,0 +henha,1.0000,0 +jackd,1.0000,0 +lapwi,1.0000,0 +legsh,1.0000,0 +mamwa,1.0000,0 +moorh,1.0000,0 +pibgr,1.0000,0 +proubis,1.0000,0 +ribgu,1.0000,0 +sante,1.0000,0 +savsp,1.0000,0 +sogsh,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-cs.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +duswa,224.0000,72.73696905059123 +aytinis,183.1111,8.380524814332512 +yebwa,160.0000,0 +egygo,112.0000,0 +velsc,112.0000,22.627416997969522 +allga,108.0000,0 +crane,96.0000,0 +meapi,96.0000,0 +smew1,72.0000,0 +chaff,64.0000,0 +ferdu,60.0000,0 +pereg,60.0000,0 +siski,60.0000,8.48528137423857 +evegr,56.0000,0 +whimb,48.8571,4.610167493255085 +alpsw,44.0000,3.872983346207417 +dunli,42.4937,2.1967513051929584 +sarwa,29.2444,2.796321314683548 +yebbu,28.0000,8.48528137423857 +vertera,24.0145,1.2257293401539964 +whtsp,23.1111,0.8380524817467393 +crama,20.0000,0 +gloib,20.0000,0 +rolle,18.7500,11.90784930203603 +sancr,17.6389,0.4033294968166851 +lanhach,17.6250,1.5709148409446008 +ovenb,16.0000,0 +relpa,16.0000,0 +shag1,14.9091,1.9304200094068276 +litst,14.1818,0.600525691825461 +caspl,12.0000,0 +misth,12.0000,0 +sposa,12.0000,0 +whtpl,12.0000,0 +litau,10.9000,0.7273238618387268 +garwa,10.8868,0.562036409390535 +hoowa,10.0952,0.435940674754997 +honbu,9.4154,0.00816310989773516 +ybsbu,9.3333,1.2171612393263744 +noror,8.7000,1.5642889758609182 +reebu,8.2161,0.0205625896517565 +turdo,8.0081,0.005754675642337485 +corsh,8.0000,0 +field,8.0000,0 +shttr,7.8182,1.2623544244155334 +swath,4.0842,0.08409243973613295 +lesre,4.0000,0 +yebsa,4.0000,0 +grath,2.2970,0.1689240965440023 +boowa,1.7333,0.7084673076458524 +blhbu,1.0000,0 +categ,1.0000,0 +coot1,1.0000,0 +grgsh,1.0000,0 +henha,1.0000,0 +jackd,1.0000,0 +lapwi,1.0000,0 +legsh,1.0000,0 +mamwa,1.0000,0 +moorh,1.0000,0 +pibgr,1.0000,0 +proubis,1.0000,0 +ribgu,1.0000,0 +sante,1.0000,0 +savsp,1.0000,0 +sogsh,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-pi.csv new file mode 100644 index 0000000000..c015d4f83e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +ovenb,16.0000,0 +litst,14.1818,0.600525691825461 +ybsbu,9.3333,1.2171612393263744 +swath,4.0842,0.08409243973613295 +sante,1.0000,0 +savsp,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-reference.csv index 68ce959394..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-usr.csv new file mode 100644 index 0000000000..61b4709c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +whimb,48.8571,4.610167493255085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +duswa,224.0000,72.73696905059123 +aytinis,183.1111,8.380524814332512 +yebwa,160.0000,0 +egygo,112.0000,0 +velsc,112.0000,22.627416997969522 +allga,108.0000,0 +crane,96.0000,0 +meapi,96.0000,0 +smew1,72.0000,0 +chaff,64.0000,0 +ferdu,60.0000,0 +pereg,60.0000,0 +siski,60.0000,8.48528137423857 +evegr,56.0000,0 +whimb,48.8571,4.610167493255085 +alpsw,44.0000,3.872983346207417 +dunli,42.4937,2.1967513051929584 +sarwa,29.2444,2.796321314683548 +yebbu,28.0000,8.48528137423857 +vertera,24.0145,1.2257293401539964 +whtsp,23.1111,0.8380524817467393 +crama,20.0000,0 +gloib,20.0000,0 +rolle,18.7500,11.90784930203603 +sancr,17.6389,0.4033294968166851 +lanhach,17.6250,1.5709148409446008 +ovenb,16.0000,0 +relpa,16.0000,0 +shag1,14.9091,1.9304200094068276 +litst,14.1818,0.600525691825461 +caspl,12.0000,0 +misth,12.0000,0 +sposa,12.0000,0 +whtpl,12.0000,0 +litau,10.9000,0.7273238618387268 +garwa,10.8868,0.562036409390535 +hoowa,10.0952,0.435940674754997 +honbu,9.4154,0.00816310989773516 +ybsbu,9.3333,1.2171612393263744 +noror,8.7000,1.5642889758609182 +reebu,8.2161,0.0205625896517565 +turdo,8.0081,0.005754675642337485 +corsh,8.0000,0 +field,8.0000,0 +shttr,7.8182,1.2623544244155334 +swath,4.0842,0.08409243973613295 +lesre,4.0000,0 +yebsa,4.0000,0 +grath,2.2970,0.1689240965440023 +boowa,1.7333,0.7084673076458524 +blhbu,1.0000,0 +categ,1.0000,0 +coot1,1.0000,0 +grgsh,1.0000,0 +henha,1.0000,0 +jackd,1.0000,0 +lapwi,1.0000,0 +legsh,1.0000,0 +mamwa,1.0000,0 +moorh,1.0000,0 +pibgr,1.0000,0 +proubis,1.0000,0 +ribgu,1.0000,0 +sante,1.0000,0 +savsp,1.0000,0 +sogsh,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +duswa,224.0000,72.73696905059123 +aytinis,183.1111,8.380524814332512 +yebwa,160.0000,0 +egygo,112.0000,0 +velsc,112.0000,22.627416997969522 +allga,108.0000,0 +crane,96.0000,0 +meapi,96.0000,0 +smew1,72.0000,0 +chaff,64.0000,0 +ferdu,60.0000,0 +pereg,60.0000,0 +siski,60.0000,8.48528137423857 +evegr,56.0000,0 +whimb,48.8571,4.610167493255085 +alpsw,44.0000,3.872983346207417 +dunli,42.4937,2.1967513051929584 +sarwa,29.2444,2.796321314683548 +yebbu,28.0000,8.48528137423857 +vertera,24.0145,1.2257293401539964 +whtsp,23.1111,0.8380524817467393 +crama,20.0000,0 +gloib,20.0000,0 +rolle,18.7500,11.90784930203603 +sancr,17.6389,0.4033294968166851 +lanhach,17.6250,1.5709148409446008 +ovenb,16.0000,0 +relpa,16.0000,0 +shag1,14.9091,1.9304200094068276 +litst,14.1818,0.600525691825461 +caspl,12.0000,0 +misth,12.0000,0 +sposa,12.0000,0 +whtpl,12.0000,0 +litau,10.9000,0.7273238618387268 +garwa,10.8868,0.562036409390535 +hoowa,10.0952,0.435940674754997 +honbu,9.4154,0.00816310989773516 +ybsbu,9.3333,1.2171612393263744 +noror,8.7000,1.5642889758609182 +reebu,8.2161,0.0205625896517565 +turdo,8.0081,0.005754675642337485 +corsh,8.0000,0 +field,8.0000,0 +shttr,7.8182,1.2623544244155334 +swath,4.0842,0.08409243973613295 +lesre,4.0000,0 +yebsa,4.0000,0 +grath,2.2970,0.1689240965440023 +boowa,1.7333,0.7084673076458524 +blhbu,1.0000,0 +categ,1.0000,0 +coot1,1.0000,0 +grgsh,1.0000,0 +henha,1.0000,0 +jackd,1.0000,0 +lapwi,1.0000,0 +legsh,1.0000,0 +mamwa,1.0000,0 +moorh,1.0000,0 +pibgr,1.0000,0 +proubis,1.0000,0 +ribgu,1.0000,0 +sante,1.0000,0 +savsp,1.0000,0 +sogsh,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..c015d4f83e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +ovenb,16.0000,0 +litst,14.1818,0.600525691825461 +ybsbu,9.3333,1.2171612393263744 +swath,4.0842,0.08409243973613295 +sante,1.0000,0 +savsp,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-reference.csv index 68ce959394..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..61b4709c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +whimb,48.8571,4.610167493255085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-cd.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +duswa,224.0000,72.73696905059123 +aytinis,183.1111,8.380524814332512 +yebwa,160.0000,0 +egygo,112.0000,0 +velsc,112.0000,22.627416997969522 +allga,108.0000,0 +crane,96.0000,0 +meapi,96.0000,0 +smew1,72.0000,0 +chaff,64.0000,0 +ferdu,60.0000,0 +pereg,60.0000,0 +siski,60.0000,8.48528137423857 +evegr,56.0000,0 +whimb,48.8571,4.610167493255085 +alpsw,44.0000,3.872983346207417 +dunli,42.4937,2.1967513051929584 +sarwa,29.2444,2.796321314683548 +yebbu,28.0000,8.48528137423857 +vertera,24.0145,1.2257293401539964 +whtsp,23.1111,0.8380524817467393 +crama,20.0000,0 +gloib,20.0000,0 +rolle,18.7500,11.90784930203603 +sancr,17.6389,0.4033294968166851 +lanhach,17.6250,1.5709148409446008 +ovenb,16.0000,0 +relpa,16.0000,0 +shag1,14.9091,1.9304200094068276 +litst,14.1818,0.600525691825461 +caspl,12.0000,0 +misth,12.0000,0 +sposa,12.0000,0 +whtpl,12.0000,0 +litau,10.9000,0.7273238618387268 +garwa,10.8868,0.562036409390535 +hoowa,10.0952,0.435940674754997 +honbu,9.4154,0.00816310989773516 +ybsbu,9.3333,1.2171612393263744 +noror,8.7000,1.5642889758609182 +reebu,8.2161,0.0205625896517565 +turdo,8.0081,0.005754675642337485 +corsh,8.0000,0 +field,8.0000,0 +shttr,7.8182,1.2623544244155334 +swath,4.0842,0.08409243973613295 +lesre,4.0000,0 +yebsa,4.0000,0 +grath,2.2970,0.1689240965440023 +boowa,1.7333,0.7084673076458524 +blhbu,1.0000,0 +categ,1.0000,0 +coot1,1.0000,0 +grgsh,1.0000,0 +henha,1.0000,0 +jackd,1.0000,0 +lapwi,1.0000,0 +legsh,1.0000,0 +mamwa,1.0000,0 +moorh,1.0000,0 +pibgr,1.0000,0 +proubis,1.0000,0 +ribgu,1.0000,0 +sante,1.0000,0 +savsp,1.0000,0 +sogsh,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-cs.csv new file mode 100644 index 0000000000..e1b9c3080e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +duswa,224.0000,72.73696905059123 +aytinis,183.1111,8.380524814332512 +yebwa,160.0000,0 +egygo,112.0000,0 +velsc,112.0000,22.627416997969522 +allga,108.0000,0 +crane,96.0000,0 +meapi,96.0000,0 +smew1,72.0000,0 +chaff,64.0000,0 +ferdu,60.0000,0 +pereg,60.0000,0 +siski,60.0000,8.48528137423857 +evegr,56.0000,0 +whimb,48.8571,4.610167493255085 +alpsw,44.0000,3.872983346207417 +dunli,42.4937,2.1967513051929584 +sarwa,29.2444,2.796321314683548 +yebbu,28.0000,8.48528137423857 +vertera,24.0145,1.2257293401539964 +whtsp,23.1111,0.8380524817467393 +crama,20.0000,0 +gloib,20.0000,0 +rolle,18.7500,11.90784930203603 +sancr,17.6389,0.4033294968166851 +lanhach,17.6250,1.5709148409446008 +ovenb,16.0000,0 +relpa,16.0000,0 +shag1,14.9091,1.9304200094068276 +litst,14.1818,0.600525691825461 +caspl,12.0000,0 +misth,12.0000,0 +sposa,12.0000,0 +whtpl,12.0000,0 +litau,10.9000,0.7273238618387268 +garwa,10.8868,0.562036409390535 +hoowa,10.0952,0.435940674754997 +honbu,9.4154,0.00816310989773516 +ybsbu,9.3333,1.2171612393263744 +noror,8.7000,1.5642889758609182 +reebu,8.2161,0.0205625896517565 +turdo,8.0081,0.005754675642337485 +corsh,8.0000,0 +field,8.0000,0 +shttr,7.8182,1.2623544244155334 +swath,4.0842,0.08409243973613295 +lesre,4.0000,0 +yebsa,4.0000,0 +grath,2.2970,0.1689240965440023 +boowa,1.7333,0.7084673076458524 +blhbu,1.0000,0 +categ,1.0000,0 +coot1,1.0000,0 +grgsh,1.0000,0 +henha,1.0000,0 +jackd,1.0000,0 +lapwi,1.0000,0 +legsh,1.0000,0 +mamwa,1.0000,0 +moorh,1.0000,0 +pibgr,1.0000,0 +proubis,1.0000,0 +ribgu,1.0000,0 +sante,1.0000,0 +savsp,1.0000,0 +sogsh,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-pi.csv new file mode 100644 index 0000000000..c015d4f83e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +ovenb,16.0000,0 +litst,14.1818,0.600525691825461 +ybsbu,9.3333,1.2171612393263744 +swath,4.0842,0.08409243973613295 +sante,1.0000,0 +savsp,1.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-reference.csv index 68ce959394..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Job Size: Per Job (Core Count)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-usr.csv new file mode 100644 index 0000000000..61b4709c59 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +whimb,48.8571,4.610167493255085 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/timeseries-Day-cd.csv index 94bf0cb367..38e1ea6094 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/timeseries-Day-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/timeseries-Day-cd.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[duswa] Job Size: Per Job (Core Count)","[aytinis] Job Size: Per Job (Core Count)","[yebwa] Job Size: Per Job (Core Count)","[velsc] Job Size: Per Job (Core Count)","[egygo] Job Size: Per Job (Core Count)","[allga] Job Size: Per Job (Core Count)","[crane] Job Size: Per Job (Core Count)","[meapi] Job Size: Per Job (Core Count)","[smew1] Job Size: Per Job (Core Count)","[chaff] Job Size: Per Job (Core Count)","[ferdu] Job Size: Per Job (Core Count)","[pereg] Job Size: Per Job (Core Count)","[siski] Job Size: Per Job (Core Count)","[evegr] Job Size: Per Job (Core Count)","[whimb] Job Size: Per Job (Core Count)","[alpsw] Job Size: Per Job (Core Count)","[dunli] Job Size: Per Job (Core Count)","[yebbu] Job Size: Per Job (Core Count)","[sarwa] Job Size: Per Job (Core Count)","[vertera] Job Size: Per Job (Core Count)","[rolle] Job Size: Per Job (Core Count)","[whtsp] Job Size: Per Job (Core Count)","[crama] Job Size: Per Job (Core Count)","[gloib] Job Size: Per Job (Core Count)","[sancr] Job Size: Per Job (Core Count)","[shag1] Job Size: Per Job (Core Count)","[lanhach] Job Size: Per Job (Core Count)","[ovenb] Job Size: Per Job (Core Count)","[relpa] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[garwa] Job Size: Per Job (Core Count)","[caspl] Job Size: Per Job (Core Count)","[misth] Job Size: Per Job (Core Count)","[sposa] Job Size: Per Job (Core Count)","[whtpl] Job Size: Per Job (Core Count)","[litau] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[noror] Job Size: Per Job (Core Count)","[hoowa] Job Size: Per Job (Core Count)","[honbu] Job Size: Per Job (Core Count)","[reebu] Job Size: Per Job (Core Count)","[turdo] Job Size: Per Job (Core Count)","[corsh] Job Size: Per Job (Core Count)","[field] Job Size: Per Job (Core Count)","[shttr] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[lesre] Job Size: Per Job (Core Count)","[yebsa] Job Size: Per Job (Core Count)","[boowa] Job Size: Per Job (Core Count)","[grath] Job Size: Per Job (Core Count)","[blhbu] Job Size: Per Job (Core Count)","[categ] Job Size: Per Job (Core Count)","[coot1] Job Size: Per Job (Core Count)","[grgsh] Job Size: Per Job (Core Count)","[henha] Job Size: Per Job (Core Count)","[jackd] Job Size: Per Job (Core Count)","[lapwi] Job Size: Per Job (Core Count)","[legsh] Job Size: Per Job (Core Count)","[mamwa] Job Size: Per Job (Core Count)","[moorh] Job Size: Per Job (Core Count)","[pibgr] Job Size: Per Job (Core Count)","[proubis] Job Size: Per Job (Core Count)","[ribgu] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)","[sogsh] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,0,12.0000,0,0,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,0,72.0000,0,0,0,0,0,0,0,0,0,0,0,32.0000,0,0,16.0000,0,0,16.0000,0,0,0,0,0,16.0000,12.0000,0,1.0000,28.0000,12.0000,0,0,8.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0,0 -2016-12-28,0,183.1111,0,144.0000,0,0,0,96.0000,0,64.0000,0,0,60.0000,0,0,0,0,0,32.0000,0,0,0,0,20.0000,24.7273,22.0000,0,16.0000,0,0,16.0000,0,12.0000,0,12.0000,0,16.0000,12.0000,8.0000,1.0000,28.3077,12.0000,0,0,8.0000,0,0,0,12.0000,0,0,0,0,0,0,0,1.0000,0,1.0000,1.0000,0,0,0,1.0000,0,0 -2016-12-29,0,183.1111,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,0,0,0,40.0000,32.0000,0,0,0,0,20.0000,22.1667,18.6667,1.0000,16.0000,0,0,16.0000,0,12.0000,12.0000,12.0000,5.0000,9.6000,12.0000,8.0000,9.5181,21.1200,8.4211,8.0000,0,8.0000,8.6154,4.0000,4.0000,12.0000,2.0000,0,0,0,0,1.0000,0,1.0000,0,1.0000,1.0000,1.0000,0,0,1.0000,0,0 -2016-12-30,224.0000,183.1111,160.0000,112.0000,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,72.0000,48.0000,44.0444,28.0000,26.6286,24.6500,23.3333,0,20.0000,20.0000,18.1702,15.5556,15.2500,16.0000,16.0000,13.1429,16.0000,0,12.0000,12.0000,12.0000,5.0000,9.3333,12.0000,9.5000,9.0927,8.1004,8.0229,8.0000,8.0000,7.7778,4.0842,4.0000,4.0000,1.7333,9.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,336.0000,183.1111,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,48.0000,0,52.0000,64.0000,92.4000,40.0000,41.7778,24.4615,32.5000,23.1111,0,0,16.4337,17.3333,13.6667,16.0000,0,16.0000,10.3542,12.0000,12.0000,12.0000,0,11.4286,8.0000,23.2000,10.7500,9.8834,8.1216,8.0000,8.0000,8.0000,8.0000,64.0000,4.0000,4.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0,1.0000,1.0000 -2017-01-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.0000,60.0000,0,0,46.2857,32.0000,37.8993,0,39.1111,24.0000,5.0000,23.1111,0,0,0,24.0000,20.0000,16.0000,0,0,10.5532,12.0000,12.0000,12.0000,0,12.0000,0,6.0385,0,9.1392,16.0000,8.0000,8.0000,8.0000,8.0000,0,4.0000,4.0000,0,2.0000,0,1.0000,1.0000,0,0,0,1.0000,0,0,1.0000,0,1.0000,0,0,1.0000,1.0000 +Day,"[duswa] Job Size: Per Job (Core Count)","[aytinis] Job Size: Per Job (Core Count)","[yebwa] Job Size: Per Job (Core Count)","[egygo] Job Size: Per Job (Core Count)","[velsc] Job Size: Per Job (Core Count)","[allga] Job Size: Per Job (Core Count)","[crane] Job Size: Per Job (Core Count)","[meapi] Job Size: Per Job (Core Count)","[smew1] Job Size: Per Job (Core Count)","[chaff] Job Size: Per Job (Core Count)","[ferdu] Job Size: Per Job (Core Count)","[pereg] Job Size: Per Job (Core Count)","[siski] Job Size: Per Job (Core Count)","[evegr] Job Size: Per Job (Core Count)","[whimb] Job Size: Per Job (Core Count)","[alpsw] Job Size: Per Job (Core Count)","[dunli] Job Size: Per Job (Core Count)","[sarwa] Job Size: Per Job (Core Count)","[yebbu] Job Size: Per Job (Core Count)","[vertera] Job Size: Per Job (Core Count)","[whtsp] Job Size: Per Job (Core Count)","[crama] Job Size: Per Job (Core Count)","[gloib] Job Size: Per Job (Core Count)","[rolle] Job Size: Per Job (Core Count)","[sancr] Job Size: Per Job (Core Count)","[lanhach] Job Size: Per Job (Core Count)","[ovenb] Job Size: Per Job (Core Count)","[relpa] Job Size: Per Job (Core Count)","[shag1] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[caspl] Job Size: Per Job (Core Count)","[misth] Job Size: Per Job (Core Count)","[sposa] Job Size: Per Job (Core Count)","[whtpl] Job Size: Per Job (Core Count)","[litau] Job Size: Per Job (Core Count)","[garwa] Job Size: Per Job (Core Count)","[hoowa] Job Size: Per Job (Core Count)","[honbu] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[noror] Job Size: Per Job (Core Count)","[reebu] Job Size: Per Job (Core Count)","[turdo] Job Size: Per Job (Core Count)","[corsh] Job Size: Per Job (Core Count)","[field] Job Size: Per Job (Core Count)","[shttr] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[lesre] Job Size: Per Job (Core Count)","[yebsa] Job Size: Per Job (Core Count)","[grath] Job Size: Per Job (Core Count)","[boowa] Job Size: Per Job (Core Count)","[blhbu] Job Size: Per Job (Core Count)","[categ] Job Size: Per Job (Core Count)","[coot1] Job Size: Per Job (Core Count)","[grgsh] Job Size: Per Job (Core Count)","[henha] Job Size: Per Job (Core Count)","[jackd] Job Size: Per Job (Core Count)","[lapwi] Job Size: Per Job (Core Count)","[legsh] Job Size: Per Job (Core Count)","[mamwa] Job Size: Per Job (Core Count)","[moorh] Job Size: Per Job (Core Count)","[pibgr] Job Size: Per Job (Core Count)","[proubis] Job Size: Per Job (Core Count)","[ribgu] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)","[sogsh] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.0000,0,0,0,12.0000,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 +2016-12-27,0,0,0,0,144.0000,0,0,96.0000,0,64.0000,0,0,72.0000,0,0,0,0,0,0,0,0,0,0,0,32.0000,0,16.0000,0,0,0,0,0,0,0,0,16.0000,0,1.0000,16.0000,12.0000,28.0000,12.0000,0,0,8.0000,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0,0 +2016-12-28,0,183.1111,0,0,144.0000,0,0,96.0000,0,64.0000,0,0,60.0000,0,0,0,0,32.0000,0,0,0,0,20.0000,0,24.7273,0,16.0000,0,22.0000,0,0,12.0000,0,12.0000,0,16.0000,8.0000,1.0000,16.0000,12.0000,28.3077,12.0000,0,0,8.0000,0,0,0,0,12.0000,0,0,0,0,0,0,1.0000,0,1.0000,1.0000,0,0,0,1.0000,0,0 +2016-12-29,0,183.1111,160.0000,112.0000,144.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,0,0,0,32.0000,40.0000,0,0,0,20.0000,0,22.1667,1.0000,16.0000,0,18.6667,0,0,12.0000,12.0000,12.0000,5.0000,16.0000,8.0000,9.5181,9.6000,12.0000,21.1200,8.4211,8.0000,0,8.0000,8.6154,4.0000,4.0000,2.0000,12.0000,0,0,0,0,1.0000,0,1.0000,0,1.0000,1.0000,1.0000,0,0,1.0000,0,0 +2016-12-30,224.0000,183.1111,160.0000,112.0000,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,72.0000,48.0000,44.0444,26.6286,28.0000,24.6500,0,20.0000,20.0000,23.3333,18.1702,15.2500,16.0000,16.0000,15.5556,13.1429,0,12.0000,12.0000,12.0000,5.0000,16.0000,9.5000,9.0927,9.3333,12.0000,8.1004,8.0229,8.0000,8.0000,7.7778,4.0842,4.0000,4.0000,9.5000,1.7333,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,336.0000,183.1111,0,112.0000,0,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,48.0000,0,52.0000,64.0000,92.4000,41.7778,40.0000,24.4615,23.1111,0,0,32.5000,16.4337,13.6667,16.0000,0,17.3333,16.0000,12.0000,12.0000,12.0000,0,11.4286,10.3542,10.7500,9.8834,8.0000,23.2000,8.1216,8.0000,8.0000,8.0000,8.0000,64.0000,4.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0,1.0000,1.0000 +2017-01-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.0000,60.0000,0,0,46.2857,32.0000,37.8993,39.1111,0,24.0000,23.1111,0,0,5.0000,0,20.0000,16.0000,0,24.0000,0,12.0000,12.0000,12.0000,0,12.0000,10.5532,0,9.1392,0,6.0385,16.0000,8.0000,8.0000,8.0000,8.0000,0,4.0000,4.0000,2.0000,0,0,1.0000,1.0000,0,0,0,1.0000,0,0,1.0000,0,1.0000,0,0,1.0000,1.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/timeseries-Day-cs.csv index 94bf0cb367..38e1ea6094 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/timeseries-Day-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_processors/timeseries-Day-cs.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[duswa] Job Size: Per Job (Core Count)","[aytinis] Job Size: Per Job (Core Count)","[yebwa] Job Size: Per Job (Core Count)","[velsc] Job Size: Per Job (Core Count)","[egygo] Job Size: Per Job (Core Count)","[allga] Job Size: Per Job (Core Count)","[crane] Job Size: Per Job (Core Count)","[meapi] Job Size: Per Job (Core Count)","[smew1] Job Size: Per Job (Core Count)","[chaff] Job Size: Per Job (Core Count)","[ferdu] Job Size: Per Job (Core Count)","[pereg] Job Size: Per Job (Core Count)","[siski] Job Size: Per Job (Core Count)","[evegr] Job Size: Per Job (Core Count)","[whimb] Job Size: Per Job (Core Count)","[alpsw] Job Size: Per Job (Core Count)","[dunli] Job Size: Per Job (Core Count)","[yebbu] Job Size: Per Job (Core Count)","[sarwa] Job Size: Per Job (Core Count)","[vertera] Job Size: Per Job (Core Count)","[rolle] Job Size: Per Job (Core Count)","[whtsp] Job Size: Per Job (Core Count)","[crama] Job Size: Per Job (Core Count)","[gloib] Job Size: Per Job (Core Count)","[sancr] Job Size: Per Job (Core Count)","[shag1] Job Size: Per Job (Core Count)","[lanhach] Job Size: Per Job (Core Count)","[ovenb] Job Size: Per Job (Core Count)","[relpa] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[garwa] Job Size: Per Job (Core Count)","[caspl] Job Size: Per Job (Core Count)","[misth] Job Size: Per Job (Core Count)","[sposa] Job Size: Per Job (Core Count)","[whtpl] Job Size: Per Job (Core Count)","[litau] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[noror] Job Size: Per Job (Core Count)","[hoowa] Job Size: Per Job (Core Count)","[honbu] Job Size: Per Job (Core Count)","[reebu] Job Size: Per Job (Core Count)","[turdo] Job Size: Per Job (Core Count)","[corsh] Job Size: Per Job (Core Count)","[field] Job Size: Per Job (Core Count)","[shttr] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[lesre] Job Size: Per Job (Core Count)","[yebsa] Job Size: Per Job (Core Count)","[boowa] Job Size: Per Job (Core Count)","[grath] Job Size: Per Job (Core Count)","[blhbu] Job Size: Per Job (Core Count)","[categ] Job Size: Per Job (Core Count)","[coot1] Job Size: Per Job (Core Count)","[grgsh] Job Size: Per Job (Core Count)","[henha] Job Size: Per Job (Core Count)","[jackd] Job Size: Per Job (Core Count)","[lapwi] Job Size: Per Job (Core Count)","[legsh] Job Size: Per Job (Core Count)","[mamwa] Job Size: Per Job (Core Count)","[moorh] Job Size: Per Job (Core Count)","[pibgr] Job Size: Per Job (Core Count)","[proubis] Job Size: Per Job (Core Count)","[ribgu] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)","[sogsh] Job Size: Per Job (Core Count)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,0,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.0000,0,0,0,0,0,0,12.0000,0,0,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 -2016-12-27,0,0,0,144.0000,0,0,0,96.0000,0,64.0000,0,0,72.0000,0,0,0,0,0,0,0,0,0,0,0,32.0000,0,0,16.0000,0,0,16.0000,0,0,0,0,0,16.0000,12.0000,0,1.0000,28.0000,12.0000,0,0,8.0000,0,0,0,12.0000,0,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0,0 -2016-12-28,0,183.1111,0,144.0000,0,0,0,96.0000,0,64.0000,0,0,60.0000,0,0,0,0,0,32.0000,0,0,0,0,20.0000,24.7273,22.0000,0,16.0000,0,0,16.0000,0,12.0000,0,12.0000,0,16.0000,12.0000,8.0000,1.0000,28.3077,12.0000,0,0,8.0000,0,0,0,12.0000,0,0,0,0,0,0,0,1.0000,0,1.0000,1.0000,0,0,0,1.0000,0,0 -2016-12-29,0,183.1111,160.0000,144.0000,112.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,0,0,0,40.0000,32.0000,0,0,0,0,20.0000,22.1667,18.6667,1.0000,16.0000,0,0,16.0000,0,12.0000,12.0000,12.0000,5.0000,9.6000,12.0000,8.0000,9.5181,21.1200,8.4211,8.0000,0,8.0000,8.6154,4.0000,4.0000,12.0000,2.0000,0,0,0,0,1.0000,0,1.0000,0,1.0000,1.0000,1.0000,0,0,1.0000,0,0 -2016-12-30,224.0000,183.1111,160.0000,112.0000,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,72.0000,48.0000,44.0444,28.0000,26.6286,24.6500,23.3333,0,20.0000,20.0000,18.1702,15.5556,15.2500,16.0000,16.0000,13.1429,16.0000,0,12.0000,12.0000,12.0000,5.0000,9.3333,12.0000,9.5000,9.0927,8.1004,8.0229,8.0000,8.0000,7.7778,4.0842,4.0000,4.0000,1.7333,9.5000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 -2016-12-31,336.0000,183.1111,0,0,112.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,48.0000,0,52.0000,64.0000,92.4000,40.0000,41.7778,24.4615,32.5000,23.1111,0,0,16.4337,17.3333,13.6667,16.0000,0,16.0000,10.3542,12.0000,12.0000,12.0000,0,11.4286,8.0000,23.2000,10.7500,9.8834,8.1216,8.0000,8.0000,8.0000,8.0000,64.0000,4.0000,4.0000,1.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0,1.0000,1.0000 -2017-01-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.0000,60.0000,0,0,46.2857,32.0000,37.8993,0,39.1111,24.0000,5.0000,23.1111,0,0,0,24.0000,20.0000,16.0000,0,0,10.5532,12.0000,12.0000,12.0000,0,12.0000,0,6.0385,0,9.1392,16.0000,8.0000,8.0000,8.0000,8.0000,0,4.0000,4.0000,0,2.0000,0,1.0000,1.0000,0,0,0,1.0000,0,0,1.0000,0,1.0000,0,0,1.0000,1.0000 +Day,"[duswa] Job Size: Per Job (Core Count)","[aytinis] Job Size: Per Job (Core Count)","[yebwa] Job Size: Per Job (Core Count)","[egygo] Job Size: Per Job (Core Count)","[velsc] Job Size: Per Job (Core Count)","[allga] Job Size: Per Job (Core Count)","[crane] Job Size: Per Job (Core Count)","[meapi] Job Size: Per Job (Core Count)","[smew1] Job Size: Per Job (Core Count)","[chaff] Job Size: Per Job (Core Count)","[ferdu] Job Size: Per Job (Core Count)","[pereg] Job Size: Per Job (Core Count)","[siski] Job Size: Per Job (Core Count)","[evegr] Job Size: Per Job (Core Count)","[whimb] Job Size: Per Job (Core Count)","[alpsw] Job Size: Per Job (Core Count)","[dunli] Job Size: Per Job (Core Count)","[sarwa] Job Size: Per Job (Core Count)","[yebbu] Job Size: Per Job (Core Count)","[vertera] Job Size: Per Job (Core Count)","[whtsp] Job Size: Per Job (Core Count)","[crama] Job Size: Per Job (Core Count)","[gloib] Job Size: Per Job (Core Count)","[rolle] Job Size: Per Job (Core Count)","[sancr] Job Size: Per Job (Core Count)","[lanhach] Job Size: Per Job (Core Count)","[ovenb] Job Size: Per Job (Core Count)","[relpa] Job Size: Per Job (Core Count)","[shag1] Job Size: Per Job (Core Count)","[litst] Job Size: Per Job (Core Count)","[caspl] Job Size: Per Job (Core Count)","[misth] Job Size: Per Job (Core Count)","[sposa] Job Size: Per Job (Core Count)","[whtpl] Job Size: Per Job (Core Count)","[litau] Job Size: Per Job (Core Count)","[garwa] Job Size: Per Job (Core Count)","[hoowa] Job Size: Per Job (Core Count)","[honbu] Job Size: Per Job (Core Count)","[ybsbu] Job Size: Per Job (Core Count)","[noror] Job Size: Per Job (Core Count)","[reebu] Job Size: Per Job (Core Count)","[turdo] Job Size: Per Job (Core Count)","[corsh] Job Size: Per Job (Core Count)","[field] Job Size: Per Job (Core Count)","[shttr] Job Size: Per Job (Core Count)","[swath] Job Size: Per Job (Core Count)","[lesre] Job Size: Per Job (Core Count)","[yebsa] Job Size: Per Job (Core Count)","[grath] Job Size: Per Job (Core Count)","[boowa] Job Size: Per Job (Core Count)","[blhbu] Job Size: Per Job (Core Count)","[categ] Job Size: Per Job (Core Count)","[coot1] Job Size: Per Job (Core Count)","[grgsh] Job Size: Per Job (Core Count)","[henha] Job Size: Per Job (Core Count)","[jackd] Job Size: Per Job (Core Count)","[lapwi] Job Size: Per Job (Core Count)","[legsh] Job Size: Per Job (Core Count)","[mamwa] Job Size: Per Job (Core Count)","[moorh] Job Size: Per Job (Core Count)","[pibgr] Job Size: Per Job (Core Count)","[proubis] Job Size: Per Job (Core Count)","[ribgu] Job Size: Per Job (Core Count)","[sante] Job Size: Per Job (Core Count)","[savsp] Job Size: Per Job (Core Count)","[sogsh] Job Size: Per Job (Core Count)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,0,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.0000,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.0000,0,0,0,12.0000,24.0000,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0000,0,0 +2016-12-27,0,0,0,0,144.0000,0,0,96.0000,0,64.0000,0,0,72.0000,0,0,0,0,0,0,0,0,0,0,0,32.0000,0,16.0000,0,0,0,0,0,0,0,0,16.0000,0,1.0000,16.0000,12.0000,28.0000,12.0000,0,0,8.0000,0,0,0,0,12.0000,0,0,0,0,0,0,0,0,1.0000,0,0,0,0,1.0000,0,0 +2016-12-28,0,183.1111,0,0,144.0000,0,0,96.0000,0,64.0000,0,0,60.0000,0,0,0,0,32.0000,0,0,0,0,20.0000,0,24.7273,0,16.0000,0,22.0000,0,0,12.0000,0,12.0000,0,16.0000,8.0000,1.0000,16.0000,12.0000,28.3077,12.0000,0,0,8.0000,0,0,0,0,12.0000,0,0,0,0,0,0,1.0000,0,1.0000,1.0000,0,0,0,1.0000,0,0 +2016-12-29,0,183.1111,160.0000,112.0000,144.0000,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,0,0,0,32.0000,40.0000,0,0,0,20.0000,0,22.1667,1.0000,16.0000,0,18.6667,0,0,12.0000,12.0000,12.0000,5.0000,16.0000,8.0000,9.5181,9.6000,12.0000,21.1200,8.4211,8.0000,0,8.0000,8.6154,4.0000,4.0000,2.0000,12.0000,0,0,0,0,1.0000,0,1.0000,0,1.0000,1.0000,1.0000,0,0,1.0000,0,0 +2016-12-30,224.0000,183.1111,160.0000,112.0000,112.0000,108.0000,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,60.0000,56.0000,72.0000,48.0000,44.0444,26.6286,28.0000,24.6500,0,20.0000,20.0000,23.3333,18.1702,15.2500,16.0000,16.0000,15.5556,13.1429,0,12.0000,12.0000,12.0000,5.0000,16.0000,9.5000,9.0927,9.3333,12.0000,8.1004,8.0229,8.0000,8.0000,7.7778,4.0842,4.0000,4.0000,9.5000,1.7333,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000 +2016-12-31,336.0000,183.1111,0,112.0000,0,0,96.0000,96.0000,72.0000,64.0000,60.0000,60.0000,48.0000,0,52.0000,64.0000,92.4000,41.7778,40.0000,24.4615,23.1111,0,0,32.5000,16.4337,13.6667,16.0000,0,17.3333,16.0000,12.0000,12.0000,12.0000,0,11.4286,10.3542,10.7500,9.8834,8.0000,23.2000,8.1216,8.0000,8.0000,8.0000,8.0000,64.0000,4.0000,4.0000,2.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0,1.0000,0,1.0000,1.0000,0,1.0000,1.0000 +2017-01-01,0,0,160.0000,0,0,0,96.0000,96.0000,0,64.0000,60.0000,60.0000,0,0,46.2857,32.0000,37.8993,39.1111,0,24.0000,23.1111,0,0,5.0000,0,20.0000,16.0000,0,24.0000,0,12.0000,12.0000,12.0000,0,12.0000,10.5532,0,9.1392,0,6.0385,16.0000,8.0000,8.0000,8.0000,8.0000,0,4.0000,4.0000,2.0000,0,0,1.0000,1.0000,0,0,0,1.0000,0,0,1.0000,0,1.0000,0,0,1.0000,1.0000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv new file mode 100644 index 0000000000..d4321b2153 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +duswa,5.600000000 +aytinis,4.577777778 +yebwa,4.000000000 +egygo,2.800000000 +allga,2.700000000 +crane,2.400000000 +meapi,2.400000000 +smew1,1.800000000 +chaff,1.600000000 +ferdu,1.500000000 +pereg,1.500000000 +siski,1.500000000 +evegr,1.400000000 +velsc,1.400000000 +whimb,1.221428571 +alpsw,1.100000000 +dunli,1.062343096 +vertera,0.600362319 +whtsp,0.577777778 +crama,0.500000000 +gloib,0.500000000 +rolle,0.468750000 +ovenb,0.400000000 +relpa,0.400000000 +sarwa,0.365555556 +yebbu,0.350000000 +misth,0.300000000 +sposa,0.300000000 +whtpl,0.300000000 +litau,0.272500000 +garwa,0.272169811 +hoowa,0.252380952 +lanhach,0.220312500 +noror,0.217500000 +turdo,0.200203666 +corsh,0.200000000 +field,0.200000000 +shttr,0.195454545 +shag1,0.186363636 +litst,0.177272727 +caspl,0.150000000 +sancr,0.146990741 +ybsbu,0.116666667 +lesre,0.100000000 +yebsa,0.100000000 +reebu,0.068467096 +swath,0.051051893 +honbu,0.047077097 +boowa,0.043333333 +grath,0.028712871 +blhbu,0.025000000 +categ,0.025000000 +coot1,0.025000000 +grgsh,0.025000000 +henha,0.025000000 +jackd,0.025000000 +lapwi,0.025000000 +legsh,0.025000000 +mamwa,0.025000000 +moorh,0.025000000 +pibgr,0.025000000 +proubis,0.025000000 +ribgu,0.025000000 +sante,0.025000000 +savsp,0.025000000 +sogsh,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv new file mode 100644 index 0000000000..d4321b2153 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +duswa,5.600000000 +aytinis,4.577777778 +yebwa,4.000000000 +egygo,2.800000000 +allga,2.700000000 +crane,2.400000000 +meapi,2.400000000 +smew1,1.800000000 +chaff,1.600000000 +ferdu,1.500000000 +pereg,1.500000000 +siski,1.500000000 +evegr,1.400000000 +velsc,1.400000000 +whimb,1.221428571 +alpsw,1.100000000 +dunli,1.062343096 +vertera,0.600362319 +whtsp,0.577777778 +crama,0.500000000 +gloib,0.500000000 +rolle,0.468750000 +ovenb,0.400000000 +relpa,0.400000000 +sarwa,0.365555556 +yebbu,0.350000000 +misth,0.300000000 +sposa,0.300000000 +whtpl,0.300000000 +litau,0.272500000 +garwa,0.272169811 +hoowa,0.252380952 +lanhach,0.220312500 +noror,0.217500000 +turdo,0.200203666 +corsh,0.200000000 +field,0.200000000 +shttr,0.195454545 +shag1,0.186363636 +litst,0.177272727 +caspl,0.150000000 +sancr,0.146990741 +ybsbu,0.116666667 +lesre,0.100000000 +yebsa,0.100000000 +reebu,0.068467096 +swath,0.051051893 +honbu,0.047077097 +boowa,0.043333333 +grath,0.028712871 +blhbu,0.025000000 +categ,0.025000000 +coot1,0.025000000 +grgsh,0.025000000 +henha,0.025000000 +jackd,0.025000000 +lapwi,0.025000000 +legsh,0.025000000 +mamwa,0.025000000 +moorh,0.025000000 +pibgr,0.025000000 +proubis,0.025000000 +ribgu,0.025000000 +sante,0.025000000 +savsp,0.025000000 +sogsh,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv new file mode 100644 index 0000000000..dd39128d49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +ovenb,0.400000000 +litst,0.177272727 +ybsbu,0.116666667 +swath,0.051051893 +sante,0.025000000 +savsp,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv index c67f79b86b..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv new file mode 100644 index 0000000000..a96bb9eb6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +whimb,1.221428571 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv new file mode 100644 index 0000000000..d4321b2153 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +duswa,5.600000000 +aytinis,4.577777778 +yebwa,4.000000000 +egygo,2.800000000 +allga,2.700000000 +crane,2.400000000 +meapi,2.400000000 +smew1,1.800000000 +chaff,1.600000000 +ferdu,1.500000000 +pereg,1.500000000 +siski,1.500000000 +evegr,1.400000000 +velsc,1.400000000 +whimb,1.221428571 +alpsw,1.100000000 +dunli,1.062343096 +vertera,0.600362319 +whtsp,0.577777778 +crama,0.500000000 +gloib,0.500000000 +rolle,0.468750000 +ovenb,0.400000000 +relpa,0.400000000 +sarwa,0.365555556 +yebbu,0.350000000 +misth,0.300000000 +sposa,0.300000000 +whtpl,0.300000000 +litau,0.272500000 +garwa,0.272169811 +hoowa,0.252380952 +lanhach,0.220312500 +noror,0.217500000 +turdo,0.200203666 +corsh,0.200000000 +field,0.200000000 +shttr,0.195454545 +shag1,0.186363636 +litst,0.177272727 +caspl,0.150000000 +sancr,0.146990741 +ybsbu,0.116666667 +lesre,0.100000000 +yebsa,0.100000000 +reebu,0.068467096 +swath,0.051051893 +honbu,0.047077097 +boowa,0.043333333 +grath,0.028712871 +blhbu,0.025000000 +categ,0.025000000 +coot1,0.025000000 +grgsh,0.025000000 +henha,0.025000000 +jackd,0.025000000 +lapwi,0.025000000 +legsh,0.025000000 +mamwa,0.025000000 +moorh,0.025000000 +pibgr,0.025000000 +proubis,0.025000000 +ribgu,0.025000000 +sante,0.025000000 +savsp,0.025000000 +sogsh,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv new file mode 100644 index 0000000000..d4321b2153 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +duswa,5.600000000 +aytinis,4.577777778 +yebwa,4.000000000 +egygo,2.800000000 +allga,2.700000000 +crane,2.400000000 +meapi,2.400000000 +smew1,1.800000000 +chaff,1.600000000 +ferdu,1.500000000 +pereg,1.500000000 +siski,1.500000000 +evegr,1.400000000 +velsc,1.400000000 +whimb,1.221428571 +alpsw,1.100000000 +dunli,1.062343096 +vertera,0.600362319 +whtsp,0.577777778 +crama,0.500000000 +gloib,0.500000000 +rolle,0.468750000 +ovenb,0.400000000 +relpa,0.400000000 +sarwa,0.365555556 +yebbu,0.350000000 +misth,0.300000000 +sposa,0.300000000 +whtpl,0.300000000 +litau,0.272500000 +garwa,0.272169811 +hoowa,0.252380952 +lanhach,0.220312500 +noror,0.217500000 +turdo,0.200203666 +corsh,0.200000000 +field,0.200000000 +shttr,0.195454545 +shag1,0.186363636 +litst,0.177272727 +caspl,0.150000000 +sancr,0.146990741 +ybsbu,0.116666667 +lesre,0.100000000 +yebsa,0.100000000 +reebu,0.068467096 +swath,0.051051893 +honbu,0.047077097 +boowa,0.043333333 +grath,0.028712871 +blhbu,0.025000000 +categ,0.025000000 +coot1,0.025000000 +grgsh,0.025000000 +henha,0.025000000 +jackd,0.025000000 +lapwi,0.025000000 +legsh,0.025000000 +mamwa,0.025000000 +moorh,0.025000000 +pibgr,0.025000000 +proubis,0.025000000 +ribgu,0.025000000 +sante,0.025000000 +savsp,0.025000000 +sogsh,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv new file mode 100644 index 0000000000..dd39128d49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +ovenb,0.400000000 +litst,0.177272727 +ybsbu,0.116666667 +swath,0.051051893 +sante,0.025000000 +savsp,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv index c67f79b86b..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv new file mode 100644 index 0000000000..a96bb9eb6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +whimb,1.221428571 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..d4321b2153 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +duswa,5.600000000 +aytinis,4.577777778 +yebwa,4.000000000 +egygo,2.800000000 +allga,2.700000000 +crane,2.400000000 +meapi,2.400000000 +smew1,1.800000000 +chaff,1.600000000 +ferdu,1.500000000 +pereg,1.500000000 +siski,1.500000000 +evegr,1.400000000 +velsc,1.400000000 +whimb,1.221428571 +alpsw,1.100000000 +dunli,1.062343096 +vertera,0.600362319 +whtsp,0.577777778 +crama,0.500000000 +gloib,0.500000000 +rolle,0.468750000 +ovenb,0.400000000 +relpa,0.400000000 +sarwa,0.365555556 +yebbu,0.350000000 +misth,0.300000000 +sposa,0.300000000 +whtpl,0.300000000 +litau,0.272500000 +garwa,0.272169811 +hoowa,0.252380952 +lanhach,0.220312500 +noror,0.217500000 +turdo,0.200203666 +corsh,0.200000000 +field,0.200000000 +shttr,0.195454545 +shag1,0.186363636 +litst,0.177272727 +caspl,0.150000000 +sancr,0.146990741 +ybsbu,0.116666667 +lesre,0.100000000 +yebsa,0.100000000 +reebu,0.068467096 +swath,0.051051893 +honbu,0.047077097 +boowa,0.043333333 +grath,0.028712871 +blhbu,0.025000000 +categ,0.025000000 +coot1,0.025000000 +grgsh,0.025000000 +henha,0.025000000 +jackd,0.025000000 +lapwi,0.025000000 +legsh,0.025000000 +mamwa,0.025000000 +moorh,0.025000000 +pibgr,0.025000000 +proubis,0.025000000 +ribgu,0.025000000 +sante,0.025000000 +savsp,0.025000000 +sogsh,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..d4321b2153 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +duswa,5.600000000 +aytinis,4.577777778 +yebwa,4.000000000 +egygo,2.800000000 +allga,2.700000000 +crane,2.400000000 +meapi,2.400000000 +smew1,1.800000000 +chaff,1.600000000 +ferdu,1.500000000 +pereg,1.500000000 +siski,1.500000000 +evegr,1.400000000 +velsc,1.400000000 +whimb,1.221428571 +alpsw,1.100000000 +dunli,1.062343096 +vertera,0.600362319 +whtsp,0.577777778 +crama,0.500000000 +gloib,0.500000000 +rolle,0.468750000 +ovenb,0.400000000 +relpa,0.400000000 +sarwa,0.365555556 +yebbu,0.350000000 +misth,0.300000000 +sposa,0.300000000 +whtpl,0.300000000 +litau,0.272500000 +garwa,0.272169811 +hoowa,0.252380952 +lanhach,0.220312500 +noror,0.217500000 +turdo,0.200203666 +corsh,0.200000000 +field,0.200000000 +shttr,0.195454545 +shag1,0.186363636 +litst,0.177272727 +caspl,0.150000000 +sancr,0.146990741 +ybsbu,0.116666667 +lesre,0.100000000 +yebsa,0.100000000 +reebu,0.068467096 +swath,0.051051893 +honbu,0.047077097 +boowa,0.043333333 +grath,0.028712871 +blhbu,0.025000000 +categ,0.025000000 +coot1,0.025000000 +grgsh,0.025000000 +henha,0.025000000 +jackd,0.025000000 +lapwi,0.025000000 +legsh,0.025000000 +mamwa,0.025000000 +moorh,0.025000000 +pibgr,0.025000000 +proubis,0.025000000 +ribgu,0.025000000 +sante,0.025000000 +savsp,0.025000000 +sogsh,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..dd39128d49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +ovenb,0.400000000 +litst,0.177272727 +ybsbu,0.116666667 +swath,0.051051893 +sante,0.025000000 +savsp,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv index c67f79b86b..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..a96bb9eb6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +whimb,1.221428571 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv new file mode 100644 index 0000000000..d4321b2153 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +duswa,5.600000000 +aytinis,4.577777778 +yebwa,4.000000000 +egygo,2.800000000 +allga,2.700000000 +crane,2.400000000 +meapi,2.400000000 +smew1,1.800000000 +chaff,1.600000000 +ferdu,1.500000000 +pereg,1.500000000 +siski,1.500000000 +evegr,1.400000000 +velsc,1.400000000 +whimb,1.221428571 +alpsw,1.100000000 +dunli,1.062343096 +vertera,0.600362319 +whtsp,0.577777778 +crama,0.500000000 +gloib,0.500000000 +rolle,0.468750000 +ovenb,0.400000000 +relpa,0.400000000 +sarwa,0.365555556 +yebbu,0.350000000 +misth,0.300000000 +sposa,0.300000000 +whtpl,0.300000000 +litau,0.272500000 +garwa,0.272169811 +hoowa,0.252380952 +lanhach,0.220312500 +noror,0.217500000 +turdo,0.200203666 +corsh,0.200000000 +field,0.200000000 +shttr,0.195454545 +shag1,0.186363636 +litst,0.177272727 +caspl,0.150000000 +sancr,0.146990741 +ybsbu,0.116666667 +lesre,0.100000000 +yebsa,0.100000000 +reebu,0.068467096 +swath,0.051051893 +honbu,0.047077097 +boowa,0.043333333 +grath,0.028712871 +blhbu,0.025000000 +categ,0.025000000 +coot1,0.025000000 +grgsh,0.025000000 +henha,0.025000000 +jackd,0.025000000 +lapwi,0.025000000 +legsh,0.025000000 +mamwa,0.025000000 +moorh,0.025000000 +pibgr,0.025000000 +proubis,0.025000000 +ribgu,0.025000000 +sante,0.025000000 +savsp,0.025000000 +sogsh,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv new file mode 100644 index 0000000000..d4321b2153 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +duswa,5.600000000 +aytinis,4.577777778 +yebwa,4.000000000 +egygo,2.800000000 +allga,2.700000000 +crane,2.400000000 +meapi,2.400000000 +smew1,1.800000000 +chaff,1.600000000 +ferdu,1.500000000 +pereg,1.500000000 +siski,1.500000000 +evegr,1.400000000 +velsc,1.400000000 +whimb,1.221428571 +alpsw,1.100000000 +dunli,1.062343096 +vertera,0.600362319 +whtsp,0.577777778 +crama,0.500000000 +gloib,0.500000000 +rolle,0.468750000 +ovenb,0.400000000 +relpa,0.400000000 +sarwa,0.365555556 +yebbu,0.350000000 +misth,0.300000000 +sposa,0.300000000 +whtpl,0.300000000 +litau,0.272500000 +garwa,0.272169811 +hoowa,0.252380952 +lanhach,0.220312500 +noror,0.217500000 +turdo,0.200203666 +corsh,0.200000000 +field,0.200000000 +shttr,0.195454545 +shag1,0.186363636 +litst,0.177272727 +caspl,0.150000000 +sancr,0.146990741 +ybsbu,0.116666667 +lesre,0.100000000 +yebsa,0.100000000 +reebu,0.068467096 +swath,0.051051893 +honbu,0.047077097 +boowa,0.043333333 +grath,0.028712871 +blhbu,0.025000000 +categ,0.025000000 +coot1,0.025000000 +grgsh,0.025000000 +henha,0.025000000 +jackd,0.025000000 +lapwi,0.025000000 +legsh,0.025000000 +mamwa,0.025000000 +moorh,0.025000000 +pibgr,0.025000000 +proubis,0.025000000 +ribgu,0.025000000 +sante,0.025000000 +savsp,0.025000000 +sogsh,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv new file mode 100644 index 0000000000..dd39128d49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +ovenb,0.400000000 +litst,0.177272727 +ybsbu,0.116666667 +swath,0.051051893 +sante,0.025000000 +savsp,0.025000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv index c67f79b86b..9ed245d5c0 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-reference.csv @@ -9,6 +9,6 @@ "data": [ ], - "message": "{\"statistic\":\"Job Size: Normalized (% of Total Cores)\",\"instructions\":\"Try again as timeseries\",\"description\":\"Aggregate View not supported\"}", - "code": 104 + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 } diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv new file mode 100644 index 0000000000..a96bb9eb6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Normalized (% of Total Cores)" +whimb,1.221428571 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv index c3f240f0d0..97501c63a3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/timeseries-Day-cd.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[duswa] Job Size: Normalized (% of Total Cores)","[aytinis] Job Size: Normalized (% of Total Cores)","[yebwa] Job Size: Normalized (% of Total Cores)","[egygo] Job Size: Normalized (% of Total Cores)","[allga] Job Size: Normalized (% of Total Cores)","[crane] Job Size: Normalized (% of Total Cores)","[meapi] Job Size: Normalized (% of Total Cores)","[smew1] Job Size: Normalized (% of Total Cores)","[velsc] Job Size: Normalized (% of Total Cores)","[chaff] Job Size: Normalized (% of Total Cores)","[ferdu] Job Size: Normalized (% of Total Cores)","[pereg] Job Size: Normalized (% of Total Cores)","[siski] Job Size: Normalized (% of Total Cores)","[evegr] Job Size: Normalized (% of Total Cores)","[whimb] Job Size: Normalized (% of Total Cores)","[alpsw] Job Size: Normalized (% of Total Cores)","[dunli] Job Size: Normalized (% of Total Cores)","[vertera] Job Size: Normalized (% of Total Cores)","[rolle] Job Size: Normalized (% of Total Cores)","[whtsp] Job Size: Normalized (% of Total Cores)","[crama] Job Size: Normalized (% of Total Cores)","[gloib] Job Size: Normalized (% of Total Cores)","[yebbu] Job Size: Normalized (% of Total Cores)","[ovenb] Job Size: Normalized (% of Total Cores)","[relpa] Job Size: Normalized (% of Total Cores)","[sarwa] Job Size: Normalized (% of Total Cores)","[garwa] Job Size: Normalized (% of Total Cores)","[misth] Job Size: Normalized (% of Total Cores)","[sposa] Job Size: Normalized (% of Total Cores)","[whtpl] Job Size: Normalized (% of Total Cores)","[litau] Job Size: Normalized (% of Total Cores)","[noror] Job Size: Normalized (% of Total Cores)","[hoowa] Job Size: Normalized (% of Total Cores)","[shag1] Job Size: Normalized (% of Total Cores)","[lanhach] Job Size: Normalized (% of Total Cores)","[turdo] Job Size: Normalized (% of Total Cores)","[corsh] Job Size: Normalized (% of Total Cores)","[field] Job Size: Normalized (% of Total Cores)","[shttr] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[sancr] Job Size: Normalized (% of Total Cores)","[caspl] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[lesre] Job Size: Normalized (% of Total Cores)","[yebsa] Job Size: Normalized (% of Total Cores)","[boowa] Job Size: Normalized (% of Total Cores)","[reebu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[honbu] Job Size: Normalized (% of Total Cores)","[grath] Job Size: Normalized (% of Total Cores)","[blhbu] Job Size: Normalized (% of Total Cores)","[categ] Job Size: Normalized (% of Total Cores)","[coot1] Job Size: Normalized (% of Total Cores)","[grgsh] Job Size: Normalized (% of Total Cores)","[henha] Job Size: Normalized (% of Total Cores)","[jackd] Job Size: Normalized (% of Total Cores)","[lapwi] Job Size: Normalized (% of Total Cores)","[legsh] Job Size: Normalized (% of Total Cores)","[mamwa] Job Size: Normalized (% of Total Cores)","[moorh] Job Size: Normalized (% of Total Cores)","[pibgr] Job Size: Normalized (% of Total Cores)","[proubis] Job Size: Normalized (% of Total Cores)","[ribgu] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)","[sogsh] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-27,0,0,0,0,0,0,2.400000000,0,3.600000000,1.600000000,0,0,1.800000000,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0.400000000,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0.200000000,0,0.800000000,0,0.400000000,0,0,0.300000000,0.350000000,0,0.025000000,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0,0.025000000,0,0 -2016-12-28,0,4.577777778,0,0,0,0,2.400000000,0,3.600000000,1.600000000,0,0,1.500000000,0,0,0,0,0,0,0,0,0.500000000,0,0.400000000,0,0.800000000,0.400000000,0.300000000,0,0.300000000,0,0.300000000,0.200000000,0.275000000,0,0.300000000,0,0,0.200000000,0,0.309090909,0,0.400000000,0,0,0.300000000,0.353846154,0,0.025000000,0,0,0,0,0,0,0,0.025000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0 -2016-12-29,0,4.577777778,4.000000000,2.800000000,0,2.400000000,2.400000000,1.800000000,3.600000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,0,0,0,0,0,0,0,0.500000000,1.000000000,0.400000000,0,0.800000000,0.400000000,0.300000000,0.300000000,0.300000000,0.125000000,0.300000000,0.200000000,0.233333333,0.025000000,0.210526316,0.200000000,0,0.200000000,0,0.184722222,0,0.120000000,0.100000000,0.100000000,0.300000000,0.176000000,0.107692308,0.059487952,0.050000000,0,0,0,0,0.025000000,0,0.025000000,0,0.025000000,0.025000000,0.025000000,0,0,0.025000000,0,0 -2016-12-30,5.600000000,4.577777778,4.000000000,2.800000000,2.700000000,2.400000000,2.400000000,1.800000000,1.400000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,1.800000000,1.200000000,1.101111111,0.616250000,0.583333333,0,0.500000000,0.500000000,0.350000000,0.400000000,0.400000000,0.332857143,0.400000000,0.300000000,0.300000000,0.300000000,0.125000000,0.300000000,0.237500000,0.194444444,0.190625000,0.200573066,0.200000000,0.200000000,0.194444444,0.164285714,0.151418440,0,0.116666667,0.100000000,0.100000000,0.043333333,0.067503366,0.051051893,0.045463520,0.118750000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2016-12-31,8.400000000,4.577777778,0,2.800000000,0,2.400000000,2.400000000,1.800000000,0,1.600000000,1.500000000,1.500000000,1.200000000,0,1.300000000,1.600000000,2.310000000,0.611538462,0.812500000,0.577777778,0,0,1.000000000,0.400000000,0,0.522222222,0.258854167,0.300000000,0.300000000,0,0.285714286,0.580000000,0.268750000,0.216666667,0.170833333,0.200000000,0.200000000,0.200000000,0.200000000,0.400000000,0.205421687,0.300000000,0.200000000,0.100000000,0.100000000,0.025000000,0.067680180,1.600000000,0.049416863,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0.025000000,0.025000000,0,0.025000000,0.025000000 -2017-01-01,0,0,4.000000000,0,0,2.400000000,2.400000000,0,0,1.600000000,1.500000000,1.500000000,0,0,1.157142857,0.800000000,0.947482014,0.600000000,0.125000000,0.577777778,0,0,0,0.400000000,0,0.977777778,0.263829787,0.300000000,0.300000000,0,0.300000000,0.150961538,0,0.600000000,0.500000000,0.200000000,0.200000000,0.200000000,0.200000000,0,0,0.150000000,0,0.100000000,0.100000000,0,0.200000000,0,0.045696121,0.050000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0,0.025000000,0,0.025000000,0,0,0.025000000,0.025000000 +Day,"[duswa] Job Size: Normalized (% of Total Cores)","[aytinis] Job Size: Normalized (% of Total Cores)","[yebwa] Job Size: Normalized (% of Total Cores)","[egygo] Job Size: Normalized (% of Total Cores)","[allga] Job Size: Normalized (% of Total Cores)","[crane] Job Size: Normalized (% of Total Cores)","[meapi] Job Size: Normalized (% of Total Cores)","[smew1] Job Size: Normalized (% of Total Cores)","[chaff] Job Size: Normalized (% of Total Cores)","[ferdu] Job Size: Normalized (% of Total Cores)","[pereg] Job Size: Normalized (% of Total Cores)","[siski] Job Size: Normalized (% of Total Cores)","[evegr] Job Size: Normalized (% of Total Cores)","[velsc] Job Size: Normalized (% of Total Cores)","[whimb] Job Size: Normalized (% of Total Cores)","[alpsw] Job Size: Normalized (% of Total Cores)","[dunli] Job Size: Normalized (% of Total Cores)","[vertera] Job Size: Normalized (% of Total Cores)","[whtsp] Job Size: Normalized (% of Total Cores)","[crama] Job Size: Normalized (% of Total Cores)","[gloib] Job Size: Normalized (% of Total Cores)","[rolle] Job Size: Normalized (% of Total Cores)","[ovenb] Job Size: Normalized (% of Total Cores)","[relpa] Job Size: Normalized (% of Total Cores)","[sarwa] Job Size: Normalized (% of Total Cores)","[yebbu] Job Size: Normalized (% of Total Cores)","[misth] Job Size: Normalized (% of Total Cores)","[sposa] Job Size: Normalized (% of Total Cores)","[whtpl] Job Size: Normalized (% of Total Cores)","[litau] Job Size: Normalized (% of Total Cores)","[garwa] Job Size: Normalized (% of Total Cores)","[hoowa] Job Size: Normalized (% of Total Cores)","[lanhach] Job Size: Normalized (% of Total Cores)","[noror] Job Size: Normalized (% of Total Cores)","[turdo] Job Size: Normalized (% of Total Cores)","[corsh] Job Size: Normalized (% of Total Cores)","[field] Job Size: Normalized (% of Total Cores)","[shttr] Job Size: Normalized (% of Total Cores)","[shag1] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[caspl] Job Size: Normalized (% of Total Cores)","[sancr] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[lesre] Job Size: Normalized (% of Total Cores)","[yebsa] Job Size: Normalized (% of Total Cores)","[reebu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[honbu] Job Size: Normalized (% of Total Cores)","[boowa] Job Size: Normalized (% of Total Cores)","[grath] Job Size: Normalized (% of Total Cores)","[blhbu] Job Size: Normalized (% of Total Cores)","[categ] Job Size: Normalized (% of Total Cores)","[coot1] Job Size: Normalized (% of Total Cores)","[grgsh] Job Size: Normalized (% of Total Cores)","[henha] Job Size: Normalized (% of Total Cores)","[jackd] Job Size: Normalized (% of Total Cores)","[lapwi] Job Size: Normalized (% of Total Cores)","[legsh] Job Size: Normalized (% of Total Cores)","[mamwa] Job Size: Normalized (% of Total Cores)","[moorh] Job Size: Normalized (% of Total Cores)","[pibgr] Job Size: Normalized (% of Total Cores)","[proubis] Job Size: Normalized (% of Total Cores)","[ribgu] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)","[sogsh] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-27,0,0,0,0,0,0,2.400000000,0,1.600000000,0,0,1.800000000,0,3.600000000,0,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0,0,0,0.400000000,0,0,0.300000000,0.300000000,0,0,0.200000000,0,0,0,0.800000000,0.400000000,0,0,0.350000000,0,0.025000000,0.300000000,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0,0.025000000,0,0 +2016-12-28,0,4.577777778,0,0,0,0,2.400000000,0,1.600000000,0,0,1.500000000,0,3.600000000,0,0,0,0,0,0,0.500000000,0,0.400000000,0,0.800000000,0,0.300000000,0,0.300000000,0,0.400000000,0.200000000,0,0.300000000,0.300000000,0,0,0.200000000,0.275000000,0,0,0.309090909,0.400000000,0,0,0.353846154,0,0.025000000,0.300000000,0,0,0,0,0,0,0,0.025000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0 +2016-12-29,0,4.577777778,4.000000000,2.800000000,0,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,3.600000000,0,0,0,0,0,0,0.500000000,0,0.400000000,0,0.800000000,1.000000000,0.300000000,0.300000000,0.300000000,0.125000000,0.400000000,0.200000000,0.025000000,0.300000000,0.210526316,0.200000000,0,0.200000000,0.233333333,0,0,0.184722222,0.120000000,0.100000000,0.100000000,0.176000000,0.107692308,0.059487952,0.300000000,0.050000000,0,0,0,0,0.025000000,0,0.025000000,0,0.025000000,0.025000000,0.025000000,0,0,0.025000000,0,0 +2016-12-30,5.600000000,4.577777778,4.000000000,2.800000000,2.700000000,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,1.400000000,1.800000000,1.200000000,1.101111111,0.616250000,0,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.332857143,0.350000000,0.300000000,0.300000000,0.300000000,0.125000000,0.400000000,0.237500000,0.190625000,0.300000000,0.200573066,0.200000000,0.200000000,0.194444444,0.194444444,0.164285714,0,0.151418440,0.116666667,0.100000000,0.100000000,0.067503366,0.051051893,0.045463520,0.043333333,0.118750000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2016-12-31,8.400000000,4.577777778,0,2.800000000,0,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.200000000,0,0,1.300000000,1.600000000,2.310000000,0.611538462,0.577777778,0,0,0.812500000,0.400000000,0,0.522222222,1.000000000,0.300000000,0.300000000,0,0.285714286,0.258854167,0.268750000,0.170833333,0.580000000,0.200000000,0.200000000,0.200000000,0.200000000,0.216666667,0.400000000,0.300000000,0.205421687,0.200000000,0.100000000,0.100000000,0.067680180,1.600000000,0.049416863,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0.025000000,0.025000000,0,0.025000000,0.025000000 +2017-01-01,0,0,4.000000000,0,0,2.400000000,2.400000000,0,1.600000000,1.500000000,1.500000000,0,0,0,1.157142857,0.800000000,0.947482014,0.600000000,0.577777778,0,0,0.125000000,0.400000000,0,0.977777778,0,0.300000000,0.300000000,0,0.300000000,0.263829787,0,0.500000000,0.150961538,0.200000000,0.200000000,0.200000000,0.200000000,0.600000000,0,0.150000000,0,0,0.100000000,0.100000000,0.200000000,0,0.045696121,0,0.050000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0,0.025000000,0,0.025000000,0,0,0.025000000,0.025000000 --------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv index c3f240f0d0..97501c63a3 100644 --- a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/normalized_avg_processors/timeseries-Day-cs.csv @@ -5,16 +5,16 @@ parameters start,end 2016-12-22,2017-01-01 --------- -Day,"[duswa] Job Size: Normalized (% of Total Cores)","[aytinis] Job Size: Normalized (% of Total Cores)","[yebwa] Job Size: Normalized (% of Total Cores)","[egygo] Job Size: Normalized (% of Total Cores)","[allga] Job Size: Normalized (% of Total Cores)","[crane] Job Size: Normalized (% of Total Cores)","[meapi] Job Size: Normalized (% of Total Cores)","[smew1] Job Size: Normalized (% of Total Cores)","[velsc] Job Size: Normalized (% of Total Cores)","[chaff] Job Size: Normalized (% of Total Cores)","[ferdu] Job Size: Normalized (% of Total Cores)","[pereg] Job Size: Normalized (% of Total Cores)","[siski] Job Size: Normalized (% of Total Cores)","[evegr] Job Size: Normalized (% of Total Cores)","[whimb] Job Size: Normalized (% of Total Cores)","[alpsw] Job Size: Normalized (% of Total Cores)","[dunli] Job Size: Normalized (% of Total Cores)","[vertera] Job Size: Normalized (% of Total Cores)","[rolle] Job Size: Normalized (% of Total Cores)","[whtsp] Job Size: Normalized (% of Total Cores)","[crama] Job Size: Normalized (% of Total Cores)","[gloib] Job Size: Normalized (% of Total Cores)","[yebbu] Job Size: Normalized (% of Total Cores)","[ovenb] Job Size: Normalized (% of Total Cores)","[relpa] Job Size: Normalized (% of Total Cores)","[sarwa] Job Size: Normalized (% of Total Cores)","[garwa] Job Size: Normalized (% of Total Cores)","[misth] Job Size: Normalized (% of Total Cores)","[sposa] Job Size: Normalized (% of Total Cores)","[whtpl] Job Size: Normalized (% of Total Cores)","[litau] Job Size: Normalized (% of Total Cores)","[noror] Job Size: Normalized (% of Total Cores)","[hoowa] Job Size: Normalized (% of Total Cores)","[shag1] Job Size: Normalized (% of Total Cores)","[lanhach] Job Size: Normalized (% of Total Cores)","[turdo] Job Size: Normalized (% of Total Cores)","[corsh] Job Size: Normalized (% of Total Cores)","[field] Job Size: Normalized (% of Total Cores)","[shttr] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[sancr] Job Size: Normalized (% of Total Cores)","[caspl] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[lesre] Job Size: Normalized (% of Total Cores)","[yebsa] Job Size: Normalized (% of Total Cores)","[boowa] Job Size: Normalized (% of Total Cores)","[reebu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[honbu] Job Size: Normalized (% of Total Cores)","[grath] Job Size: Normalized (% of Total Cores)","[blhbu] Job Size: Normalized (% of Total Cores)","[categ] Job Size: Normalized (% of Total Cores)","[coot1] Job Size: Normalized (% of Total Cores)","[grgsh] Job Size: Normalized (% of Total Cores)","[henha] Job Size: Normalized (% of Total Cores)","[jackd] Job Size: Normalized (% of Total Cores)","[lapwi] Job Size: Normalized (% of Total Cores)","[legsh] Job Size: Normalized (% of Total Cores)","[mamwa] Job Size: Normalized (% of Total Cores)","[moorh] Job Size: Normalized (% of Total Cores)","[pibgr] Job Size: Normalized (% of Total Cores)","[proubis] Job Size: Normalized (% of Total Cores)","[ribgu] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)","[sogsh] Job Size: Normalized (% of Total Cores)" -2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 -2016-12-27,0,0,0,0,0,0,2.400000000,0,3.600000000,1.600000000,0,0,1.800000000,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0.400000000,0,0,0,0,0.300000000,0,0,0,0.300000000,0,0,0.200000000,0,0.800000000,0,0.400000000,0,0,0.300000000,0.350000000,0,0.025000000,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0,0.025000000,0,0 -2016-12-28,0,4.577777778,0,0,0,0,2.400000000,0,3.600000000,1.600000000,0,0,1.500000000,0,0,0,0,0,0,0,0,0.500000000,0,0.400000000,0,0.800000000,0.400000000,0.300000000,0,0.300000000,0,0.300000000,0.200000000,0.275000000,0,0.300000000,0,0,0.200000000,0,0.309090909,0,0.400000000,0,0,0.300000000,0.353846154,0,0.025000000,0,0,0,0,0,0,0,0.025000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0 -2016-12-29,0,4.577777778,4.000000000,2.800000000,0,2.400000000,2.400000000,1.800000000,3.600000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,0,0,0,0,0,0,0,0.500000000,1.000000000,0.400000000,0,0.800000000,0.400000000,0.300000000,0.300000000,0.300000000,0.125000000,0.300000000,0.200000000,0.233333333,0.025000000,0.210526316,0.200000000,0,0.200000000,0,0.184722222,0,0.120000000,0.100000000,0.100000000,0.300000000,0.176000000,0.107692308,0.059487952,0.050000000,0,0,0,0,0.025000000,0,0.025000000,0,0.025000000,0.025000000,0.025000000,0,0,0.025000000,0,0 -2016-12-30,5.600000000,4.577777778,4.000000000,2.800000000,2.700000000,2.400000000,2.400000000,1.800000000,1.400000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,1.800000000,1.200000000,1.101111111,0.616250000,0.583333333,0,0.500000000,0.500000000,0.350000000,0.400000000,0.400000000,0.332857143,0.400000000,0.300000000,0.300000000,0.300000000,0.125000000,0.300000000,0.237500000,0.194444444,0.190625000,0.200573066,0.200000000,0.200000000,0.194444444,0.164285714,0.151418440,0,0.116666667,0.100000000,0.100000000,0.043333333,0.067503366,0.051051893,0.045463520,0.118750000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 -2016-12-31,8.400000000,4.577777778,0,2.800000000,0,2.400000000,2.400000000,1.800000000,0,1.600000000,1.500000000,1.500000000,1.200000000,0,1.300000000,1.600000000,2.310000000,0.611538462,0.812500000,0.577777778,0,0,1.000000000,0.400000000,0,0.522222222,0.258854167,0.300000000,0.300000000,0,0.285714286,0.580000000,0.268750000,0.216666667,0.170833333,0.200000000,0.200000000,0.200000000,0.200000000,0.400000000,0.205421687,0.300000000,0.200000000,0.100000000,0.100000000,0.025000000,0.067680180,1.600000000,0.049416863,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0.025000000,0.025000000,0,0.025000000,0.025000000 -2017-01-01,0,0,4.000000000,0,0,2.400000000,2.400000000,0,0,1.600000000,1.500000000,1.500000000,0,0,1.157142857,0.800000000,0.947482014,0.600000000,0.125000000,0.577777778,0,0,0,0.400000000,0,0.977777778,0.263829787,0.300000000,0.300000000,0,0.300000000,0.150961538,0,0.600000000,0.500000000,0.200000000,0.200000000,0.200000000,0.200000000,0,0,0.150000000,0,0.100000000,0.100000000,0,0.200000000,0,0.045696121,0.050000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0,0.025000000,0,0.025000000,0,0,0.025000000,0.025000000 +Day,"[duswa] Job Size: Normalized (% of Total Cores)","[aytinis] Job Size: Normalized (% of Total Cores)","[yebwa] Job Size: Normalized (% of Total Cores)","[egygo] Job Size: Normalized (% of Total Cores)","[allga] Job Size: Normalized (% of Total Cores)","[crane] Job Size: Normalized (% of Total Cores)","[meapi] Job Size: Normalized (% of Total Cores)","[smew1] Job Size: Normalized (% of Total Cores)","[chaff] Job Size: Normalized (% of Total Cores)","[ferdu] Job Size: Normalized (% of Total Cores)","[pereg] Job Size: Normalized (% of Total Cores)","[siski] Job Size: Normalized (% of Total Cores)","[evegr] Job Size: Normalized (% of Total Cores)","[velsc] Job Size: Normalized (% of Total Cores)","[whimb] Job Size: Normalized (% of Total Cores)","[alpsw] Job Size: Normalized (% of Total Cores)","[dunli] Job Size: Normalized (% of Total Cores)","[vertera] Job Size: Normalized (% of Total Cores)","[whtsp] Job Size: Normalized (% of Total Cores)","[crama] Job Size: Normalized (% of Total Cores)","[gloib] Job Size: Normalized (% of Total Cores)","[rolle] Job Size: Normalized (% of Total Cores)","[ovenb] Job Size: Normalized (% of Total Cores)","[relpa] Job Size: Normalized (% of Total Cores)","[sarwa] Job Size: Normalized (% of Total Cores)","[yebbu] Job Size: Normalized (% of Total Cores)","[misth] Job Size: Normalized (% of Total Cores)","[sposa] Job Size: Normalized (% of Total Cores)","[whtpl] Job Size: Normalized (% of Total Cores)","[litau] Job Size: Normalized (% of Total Cores)","[garwa] Job Size: Normalized (% of Total Cores)","[hoowa] Job Size: Normalized (% of Total Cores)","[lanhach] Job Size: Normalized (% of Total Cores)","[noror] Job Size: Normalized (% of Total Cores)","[turdo] Job Size: Normalized (% of Total Cores)","[corsh] Job Size: Normalized (% of Total Cores)","[field] Job Size: Normalized (% of Total Cores)","[shttr] Job Size: Normalized (% of Total Cores)","[shag1] Job Size: Normalized (% of Total Cores)","[litst] Job Size: Normalized (% of Total Cores)","[caspl] Job Size: Normalized (% of Total Cores)","[sancr] Job Size: Normalized (% of Total Cores)","[ybsbu] Job Size: Normalized (% of Total Cores)","[lesre] Job Size: Normalized (% of Total Cores)","[yebsa] Job Size: Normalized (% of Total Cores)","[reebu] Job Size: Normalized (% of Total Cores)","[swath] Job Size: Normalized (% of Total Cores)","[honbu] Job Size: Normalized (% of Total Cores)","[boowa] Job Size: Normalized (% of Total Cores)","[grath] Job Size: Normalized (% of Total Cores)","[blhbu] Job Size: Normalized (% of Total Cores)","[categ] Job Size: Normalized (% of Total Cores)","[coot1] Job Size: Normalized (% of Total Cores)","[grgsh] Job Size: Normalized (% of Total Cores)","[henha] Job Size: Normalized (% of Total Cores)","[jackd] Job Size: Normalized (% of Total Cores)","[lapwi] Job Size: Normalized (% of Total Cores)","[legsh] Job Size: Normalized (% of Total Cores)","[mamwa] Job Size: Normalized (% of Total Cores)","[moorh] Job Size: Normalized (% of Total Cores)","[pibgr] Job Size: Normalized (% of Total Cores)","[proubis] Job Size: Normalized (% of Total Cores)","[ribgu] Job Size: Normalized (% of Total Cores)","[sante] Job Size: Normalized (% of Total Cores)","[savsp] Job Size: Normalized (% of Total Cores)","[sogsh] Job Size: Normalized (% of Total Cores)" +2016-12-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000000,0,0,0.300000000,0.300000000,0,0,0,0,0,0,0,0,0,0,0.600000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025000000,0,0 +2016-12-27,0,0,0,0,0,0,2.400000000,0,1.600000000,0,0,1.800000000,0,3.600000000,0,0,0,0,0,0,0,0,0.400000000,0,0,0,0,0,0,0,0.400000000,0,0,0.300000000,0.300000000,0,0,0.200000000,0,0,0,0.800000000,0.400000000,0,0,0.350000000,0,0.025000000,0.300000000,0,0,0,0,0,0,0,0,0,0.025000000,0,0,0,0,0.025000000,0,0 +2016-12-28,0,4.577777778,0,0,0,0,2.400000000,0,1.600000000,0,0,1.500000000,0,3.600000000,0,0,0,0,0,0,0.500000000,0,0.400000000,0,0.800000000,0,0.300000000,0,0.300000000,0,0.400000000,0.200000000,0,0.300000000,0.300000000,0,0,0.200000000,0.275000000,0,0,0.309090909,0.400000000,0,0,0.353846154,0,0.025000000,0.300000000,0,0,0,0,0,0,0,0.025000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0 +2016-12-29,0,4.577777778,4.000000000,2.800000000,0,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,3.600000000,0,0,0,0,0,0,0.500000000,0,0.400000000,0,0.800000000,1.000000000,0.300000000,0.300000000,0.300000000,0.125000000,0.400000000,0.200000000,0.025000000,0.300000000,0.210526316,0.200000000,0,0.200000000,0.233333333,0,0,0.184722222,0.120000000,0.100000000,0.100000000,0.176000000,0.107692308,0.059487952,0.300000000,0.050000000,0,0,0,0,0.025000000,0,0.025000000,0,0.025000000,0.025000000,0.025000000,0,0,0.025000000,0,0 +2016-12-30,5.600000000,4.577777778,4.000000000,2.800000000,2.700000000,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.500000000,1.400000000,1.400000000,1.800000000,1.200000000,1.101111111,0.616250000,0,0.500000000,0.500000000,0.583333333,0.400000000,0.400000000,0.332857143,0.350000000,0.300000000,0.300000000,0.300000000,0.125000000,0.400000000,0.237500000,0.190625000,0.300000000,0.200573066,0.200000000,0.200000000,0.194444444,0.194444444,0.164285714,0,0.151418440,0.116666667,0.100000000,0.100000000,0.067503366,0.051051893,0.045463520,0.043333333,0.118750000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000 +2016-12-31,8.400000000,4.577777778,0,2.800000000,0,2.400000000,2.400000000,1.800000000,1.600000000,1.500000000,1.500000000,1.200000000,0,0,1.300000000,1.600000000,2.310000000,0.611538462,0.577777778,0,0,0.812500000,0.400000000,0,0.522222222,1.000000000,0.300000000,0.300000000,0,0.285714286,0.258854167,0.268750000,0.170833333,0.580000000,0.200000000,0.200000000,0.200000000,0.200000000,0.216666667,0.400000000,0.300000000,0.205421687,0.200000000,0.100000000,0.100000000,0.067680180,1.600000000,0.049416863,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0.025000000,0,0.025000000,0,0.025000000,0.025000000,0,0.025000000,0.025000000 +2017-01-01,0,0,4.000000000,0,0,2.400000000,2.400000000,0,1.600000000,1.500000000,1.500000000,0,0,0,1.157142857,0.800000000,0.947482014,0.600000000,0.577777778,0,0,0.125000000,0.400000000,0,0.977777778,0,0.300000000,0.300000000,0,0.300000000,0.263829787,0,0.500000000,0.150961538,0.200000000,0.200000000,0.200000000,0.200000000,0.600000000,0,0.150000000,0,0,0.100000000,0.100000000,0.200000000,0,0.045696121,0,0.050000000,0,0.025000000,0.025000000,0,0,0,0.025000000,0,0,0.025000000,0,0.025000000,0,0,0.025000000,0.025000000 --------- diff --git a/tests/artifacts/xdmod/regression/images/expected.json b/tests/artifacts/xdmod/regression/images/expected.json index 3661fcfa2d..b1556eaedb 100644 --- a/tests/artifacts/xdmod/regression/images/expected.json +++ b/tests/artifacts/xdmod/regression/images/expected.json @@ -1151,390 +1151,390 @@ "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=none\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "b2a75b89232be9a940e93c7375846e5dbfbb57f2", "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=none\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "85307cbca07b73c3b9b7bcd0079de5d9cb2e782a", "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=none\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "a87ec1e6c369803a42e7db806b27e7c38c31a997", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "93631bb71e08ad6ea18b6a72e8fc46cddcd3578b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "84902eeec88f1a383bdf81996841618547f04547", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "c33c506a513652bb382409bb2afa273ae39e9e0e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "bdb72c2afb341cb64df7939893aa815253a30451", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "10704034eac84883e8f3c2fe289ca5b6f8a3f371", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "4b6c673b768ed66485491525d24d3be5ef30a546", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "208ec48a1a31ec5e8aadb674463f1ccb097fc00a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "c996b6c86246077820f3243411094ac1b8c3f9c9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "4d666d547d14758e230473b8d200b1ee78668b9d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "ae653cea2c3b0359e529b726544a104847b29671", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "7ce1f7ce771e19ef9851bc9f5def0631fcf3b253", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "651f0a2e98a4b8b5c6f9cb1529fbd240426d7c4c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "92b7decf3a8107638890625e06f50c69c9c78ac8", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "920cc90c8ad6118481a5e274766e72a744fa3120", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "2e2952b94188dcf2f14535a5969bda9abae0fb2e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "a5749f98e0ccae6703ba88818488acfcc1b7b094", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "3b5e23f0258f033166e62f5891ab9107a468b2fd", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "b45c06755e1a1c126da1ebb478b4e963c35189da", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "c8d6cb3019fd9a1ec8b2650fab7e664c6039175f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "3b9095131c85847524494ba5e9e6c77615c5dcd1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "d3ebedf97c97e2de441ae93999f7f25d089ecafa", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "60b4193366256af42872bdb7c605f2d0b1b84c3d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "48a77021fb57ab7e3fc0dce7a6d16d9f460c59b6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "11d6ccbfce0b3b9cbcb376da8f9b704c4a726587", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "c6e1f1ad9a1dd31b609cf51cafcd2a6fe7fbfaf3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "c33c506a513652bb382409bb2afa273ae39e9e0e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "4eb019ef92f419da02da9377ffd603809905188f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "4eb019ef92f419da02da9377ffd603809905188f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "d1d609b7568b92d30f86c19180713e17e0247741", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "208ec48a1a31ec5e8aadb674463f1ccb097fc00a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "b2195f1f3274baed7dbbef8b30ba70ad76e09a69", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b2195f1f3274baed7dbbef8b30ba70ad76e09a69", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "2343796750dd368517eac58f96ec4e523f068244", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "7ce1f7ce771e19ef9851bc9f5def0631fcf3b253", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "73db4f0367d76bb2f84c74213bec562442b23903", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "73db4f0367d76bb2f84c74213bec562442b23903", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "ad47d9995826eea29b01e5883b5bd23acab10c7f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "1761fc92737f9d20b9a787700b6529df47c8f59f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "7034a486e3445b06dd417fa198110e9fe7b41e58", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "4d42a201f8160e3c405ab2801306ad3ea6af99d6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "9592cae23a5df0043e4fdd6c42a464523593a335", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "0aa3a877b8a3cd60067f68a4b9dac126c6beedf0", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "c58d6a904637e912da70d6e9cd4b3e0f942e0a7d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "c5c20a528e3e0de41cf60f084a445363ed4dd88e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "aa4cb5554e687348a5711afab7c47ca2c600e183", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "cda948357cf77b5397a2fe81ac3c600faa40252d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "3475c32f151c8b01e2d73fe3c2d9a45e16557462", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "0e7053740d5347aa92ce4c7c08f4bfc1c466ab4e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "5852821ba76b38fac2c233c48f89d4d0990f59c9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "a1d1f0c3d8037ae6d2e986eb9831322c78ae938c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "849bdd63d43381db5a1b8839752e0bb7ff85c0c7", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "46d3b773c2c7de34d27cb2e44ebac33dd963b34a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "926b5779b4813e6ba040c9ec180938739b1cf9ed", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "74a50a2fa454eafc1ef97db87e22c0ab261f6afd", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "e2a57042f7077b76510151fa34457fba057fe942", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "51d1e2b1bb4b6b018d8ac011ba40be48e21d5f55", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "a06ecfd50812fe2edb178aed53ff042cf5cc2bb5", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "fb357baae17832c0161fb1a8b9b213697fad61cc", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "811c490bd360464583badd81b9038283356ef8e3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "a0a9440d0c64776e3cb39f898aaf9dcb8a33f277", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "880513a08c60d42cfa4e1727ef7740e7a82d17b0", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "6c66f66cf17ed68f4ac3334e682c239cbedce90a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "f1851cfad4edc7f5bf5517056b184d5520840394", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "359228264e026984f224f93883bf6cbc7d0e8b18", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "1f5ff54ed18f6e11a9cd37a6c7f87511f2b2e993", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "6b250e78ca92c030e82987652af18ffa49b6b696", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "3b456b351c67be48d3a894eda6bbc14bc4da6d9e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "66669b938e1f4c024f1db531e923b2b36b63316e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "c2f5c6e6d30feb0dc90602bef4de403d15840cac", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "1381bccca528d28f837a28f81c96c13fddcfbbac", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "4657c64b572e2c4ea58caa600d5c51b9a350e6fa", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "a3d127dcedaf51deaae9fe8b1dd49f817c47e91c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "5d4db1430c230f899c6f0bf9a81d50ff5502e346", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "b73abe190d8e8babfb11f90f80ec08051472eeb6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "2b37ccbd65eca5dba8e41866a4d4ef69144c39b7", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "7aea0b5f004f6c54e60724805596c6ef0734b626", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "150c895d1edf6f66fdfe00099156bdce67b37c3b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "6ff54b862128281c2ec35478711d184667ff619f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "267729b582e548aa5d7535a390b93e9305cc2097", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "bda60d550d981899d445a2fbb2587d13da5629f3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "96b792194b197e2bf9ecc9d03929c32e69115f65", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "78b5e4b67f33782c210e73d0089f07dedf5d8391", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "abef390f872d223fa738b35d1c5ecfb5e5b9296b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "519f4571d1beba3931c996a53803f459a1e11505", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "390a20f27c93dc6cf84ef7edfea72a85f95760b7", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "b5e71490be2481bb84d14d04b896382ada4aa393", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "d588aaf8112cbe05c4eb3445f6765f352de7d81e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "c0dbe29561c926ea977c6efeb68f60969dad695b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "96db05dd677a6d6b1be98b9618e2e3d759028bd7", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "945ba8b2d94fe609647e1b84adef28aa663e1422", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "a7573e7b31ee70ed1481df612931181d4fabc3c7", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "ad4a4a4765f5930e2f768532e25e22c5deee4e53", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "a4f930fb2ff88319bdbf80e392f595605e632ed5", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "ba8f2f0820652ae9e2a47102ff6e3fe1eabdfaac", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "1a2e9925cf9972f5d89c73f7d769695fe3e01923", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "c752ce1ab96a71bca48502b545e8f075a625709b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "ee15895c370283a69cf56e2604b3389625683163", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "74c42bb357a711d5f361f14ab1cfe881e5e648db", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "574930f2a3aa377896c940320816ff15249e2907", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "86b7d14aaa2f0118892a5366b3ee74af02795205", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "6629e37560107dd3c6f54002a3ce24324ace9c81", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "548b2f043a7537c381015e0a756660f7eda64b40", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "86973c5716bdb96b65863c6834c9d70ad34dd520", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "44c757fe1a89d000c2229b5a9492d5d6527a1db9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "e4f9fc2500b9842b62ae3e9f3c189f28d9842b33", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "7d1524dfba26ef3b93bac6126b488ef293f58634", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "2bc57d62c6acc443ecc9b3f76dbd293f9d34727e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "3414b6524ed0fa5e71ce91ed7c10be2ee2c2725c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "bc50c88600d7081b22b3aa14b50cd76e22c661f0", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "c82234abf2d1ea0bdae33ca4a9329d2adb7d8cda", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "acdad65625056e0ce17b85f7893378eaef6fcd48", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "8817f1e9c3469622b82fb378ff478eacfb85ebe4", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "64698be274212d6b538912036d0ca93d07c09a0d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "4017def89f06fe937fb21d56ef6d9d90f71b3bbd", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "0d2ddad422eb5dbc846998920216a7dd0d5f265c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "e51acee9a1b41e386f600da48b652ba1520b3493", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "eee42ed6f166f9d2236c6fdb850f3ca45ad70717", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "166ce4a312307b401cbe4052343cbe06f281cbea", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "f9da11ccf0d3709055dc036f19bbbf3a11e0409c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "eae6f48fbcb2c43200caf7aa32c3084c69e0f4a2", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "b8d98289ffef6cc4b6e39477886f0a53a4417180", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "cbb1745d617dd98ee73c09a9ba97a8be625d0d54", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "dc087ae409fadbc36e90349a55108daeffaca3af", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "52317e6589e68fa29a18a70329234a18f98bf174", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "cb3da4657af953f42ef166aa5bdbb2dc5cc2d64a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "b5a6a3b092e03ba1a953ede092c666a2464b3163", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "6d2a5665cc35b500638c3b628e71e3f72d2c970a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "15dc872ec1411f1c442c1be4ece08d75f57eceb1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "426ff45c5c3c7d1d1e68a7a9da9ff05d8f01e23e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "88cfe12f0d1a3f3b680d9db81cef510fff840374", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "eccbfce331d57c0895af867a7b37864195320441", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "f5a7351bebbdc1eb63fec9aaeffff1193aee8f85", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "350eec1e926d2753d7844a28ad642c1db271be7f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "db1f278ac6bbb9255825c908ffb3ed278b5ce938", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "4f62f99a4d7a61badbb0aaebbddff601c1c15bd5", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "5ee9af7ad217654a49a59c31b3bce1c2611b0639", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "9dcfdd941613be26f92f958da2561b12a8167f86", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "5153c4d335f74e5084067515f0c568111086d7b8", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "6f318196967540d5b5ef7e5ee3e35f5146f4d0e6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "0f7f02e0c64040e530c88164f931a7c06b7bb059", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "12cd5a717757749cbff06f64529c0ce04251de5c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "351a55efb138eb6815322f253f027e9172511c3b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "f9c1a3d05dc3872aa7ee165442fc7cc1ae4f12a9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "7c499dee4787a2277b058100c856a1f794f8f859", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "6e86ce41dd1ef2d2639fffd8f1eac462418111e4", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "0c0e4e9a3cb6d1695044bf7d7957ec42e473f3d2", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "44033df79ad9904c6c29e4a4689b95c401ebe9d3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "b8837604c48fb16b626a85428587c6cd9496c465", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "9381f9106ebcdac8e6f4bf1fc3a351d50a5ba315", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "498d77b9f8b7c69e7cc3fbbecfe428ed30734bd5", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "8d1e528ffe2f94561d767c82c32a7a2e431f6012", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "f2b878180f61b24900f7653b4c19076474fd8479", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "74b72691644471571260ea8867574243995018f7", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "668b0b797da9bbccaf005025c1ac1c29a9e20008", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "5dcd140842fee44242ca87e60b94998ff0048ff6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "5dd4e8ddd7fe843a911c52affb2a4f5e2177ecce", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "56953614fa37b407fc98d195ae4dcad6c1777f44", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "0af3a33963f51a0298a1f62aedfce38b6091c84a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "2a86d3ce33e296eea9138e4618580da28ba0750d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "f4560834ea9e3ad5601311531667a1e8be0244fd", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "8dd9d9e005bd97ac3b0c746caba0e1bb9cb238f5", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "9eb9dc8b207c558db22b0c9ef0615ced85a81793", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "e2637e3217e6c8cbe72ed8d64acf260963e4f690", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "c32863073f6a8c9201c4d58b996cc25b91d990df", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "7b25f60db444739db56fc18798f80a7b2a2c1741", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "4de193754a39dde59a7fcecb07d40862af11bc0b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "347b01cc10eeead2ced35057c375378ed4aa577e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "7df701129c77dee89412d4a6257e2af9555f4326", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "3d185513b1c85e16b3235372ace0421df6095476", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "bc6f153356692f5bccdd2be29017e6625c8cbf75", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "950d609633e587da4466271b28caaa3548ef6065", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "ad89cf5e083b85d23ab37b8cc7e3bc3574c4593b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "91a816ea1142e897393f513f7364348c27de37bb", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "37571ec7e40d882991714dba281d1085a79cc9f3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "8de0a652a27f61fd840c7fefb390813a3cc1d6e0", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "4bf6476c81bbf66e12f29be2c4c54597757acfc0", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "4411524e5fa1e13b689bb1710c383a94b970356a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "b1cc792a8b92bf7f03aba45f9b08d1087467e346", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "c469e6621d899d09bdcbe6baf7cec7932da80013", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "7f563d76244b40edec93c0d282e5e9188092bf97", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "90fc04465527277e67fa05731e4c85e4488c3173", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "f291e64860a409c2f8d5474f8a8198cf1a865596", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "8f2ee73a8d339506d85f395cfaa0749b58b5cda8", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "c8dc647e358e6c897beb6bca8a828ae04576a183", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "863a5c83a8c4a1a45810aeb72b624c79abd72d30", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "965a8b3bac9680d68b18443fbc577d93ef82f32d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "186de099fffadf4a990844f513f10337f15c98a1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "89210d4f0b821260db175da852e383e0655482d1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "b78acb7545948d9a86fc5570c15d101f93d9591c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "1cd2a53c5008545886ae4bf8517f2567e987647c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "eb30403daa5b9a231f4b06c642f2b70d6f9a5df1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "9ed7b0ef50d90f9efa195cdbc7bda7228dab8561", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "01e890059d084d287f7db93b33710c33add03624", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "fdc8b5fa07ef6c2757e83bb41b3d3741eff7662d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "6b7d516a2840cdd364bdf8f866dd55dfc12702bb", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "be1d860b780fbbd756e5fa42264cd3e4213895af", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "7ba93b48cbd65de6afd21eeeffd20ddb7cb062ce", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "c1285c0845f4b72624eea9f3ee04640e2e819639", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "b20b431e1fff1028d5bef054f54ee98d683562f1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "7116e02e6365a67fd7fa2a751457ecb3756de1c1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "8c8fedae89a54c1a0f926b22ca0b2e7c6eedcf56", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "b116a3f02ac0076122fc9b61fa3d7a0e36d53f50", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "a8856a3f281a3468da094a94ee65ba85a1e18bc9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "d494c412a8e3011f2eb677b178591ce5771c6550", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "35bcde3508dbe59c6d7e02add049f1e3fc323255", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "24cdd07b1189470d08a84ce6ba3128e3983a4499", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "f7824d09312759997036acaef1230c4660f61a7d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "77b19155892aa937616fd35bb5c1bf3eb8792e97", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "aa5514554ec143756ddde42d864bda794f3cc956", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "663c8709b064a5a2210f9f874e4c6698f594c0e6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "46530b212d2d3e3dcc970e1288bc1ff61a05f3d1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "461a70bb05cd4e19c7c81fd1b3efdd29cb3b2667", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "0006a63ecd884e33412f958a19c7ad956242ddb2", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "fe616ccae2ed7862587c25319b3e5c9333724e31", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "7c5cf4fd208ae10141319cf54629400b4b9afd52", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "50e021b0413db2db0b0be717e68ffc855f8c3ecf", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "218ecb44b79fffaf62550ad68d187fda70a588c9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "8706e581eaa00fada8f3956e64248409fcb205b9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "696e7b78350fa08e04a48bae5e73f68423616555", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "c6630e3beaedd184b7081942b12aa3adbd578b94", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "6550417cb60d5aae683887cb3b29423b245be75d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "5c8515964c256a0f813874b32ec233b0a970387a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "90cfa07212913647c012b2f4007d0d4e347b2aeb", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "f99148ec43ba1cb5e01314164a9075e3043a95b9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "49ac8ac1609f154308b8dc7d1c08cd75996cf091", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "089ca0b5870efc38efe54cf9b4c55b18988c82ae", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "ce6c0b69e7247166f0831e2837ad36646c6846f6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "bbff11a15fe1730b8b62430671b230f6dda1a1fe", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "0ccdc49d25722c073c347d2d8371f3cab04704f6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "91f50837cf4983cc383078688b5a260a178bd877", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "4d47c20074e6ce83d3494d9cfd3d6d253f0bf093", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "de5974ec54b32063c64b52117265d598784fcf52", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "19739bb4b0f3edea3cc431d6da73eccebf491192", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "d45629a669dcea8c23d2588590d99ef4a1ef492b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "bb7c8b8890a8736a9448394d30c46f5f99293400", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b210443e2652df188a4a375482b0351b13ed52a3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "8388190b369fb28ca75169ed89f616fefc113278", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "ccd0fd504bd65c7ad2f9fc08f2f76ec9be209d06", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "61751d9cdcae60fc4b4fdda8dda743d096fe19ef", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "99a882febb72dfba1a6ac78de9e211eb08a1238f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "558be403fb2e5c3ac865acc5c27579920de86730", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "c671ce84a5d01d36f150600908bfde38b98aba32", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "e26142473df63c21656404b7600d3d6a54fe51e4", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "58dacdedbe0f139c833069e2577b73e31d16a3bc", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "1d54a66ae173c413aa7460bc56d7b709c076dd99", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "e4ae864db4feb7aef7b298fdb7b5c3b70c3c0f52", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "2d5d8ffbc31484c6b78cb4326356a466d7c04aab", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "2d23cf48e7288bd3a2e3216a155eecb9008a9d8f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "581ac53261342aa496a669b7106ba0c9a6094842", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "32e7eb0a80d503c890e881b5c087a5792d20a6a0", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "72342de66fd483a2dc928f79673255cac79cb3cf", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "46abb3fdb647d429e852c34ebf59b2615fc8e15e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "4e5f572b1a9768f7cdc14a3546a5c7ffcdc99074", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "07f3737b4541d6684fbedf016bbfc31d32f31031", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "e0827979775c3ccb32ef9ed99ca3b7edf985bf7a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "b05507fbb20aaa0f7a6ac442cd61335480f53d32", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "71ec7dfb5f4c06b61c179ca2a5ddf530dd658868", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "d7154f5f4c822984db31bb6b90b146f9dd5f39d8", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "a7671a9bceb7e3bb8c226fd502106903fa9eb1ee", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "e061457105b27c30425464ead651f73b0fbe69cb", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "8c07849104aa148c676d5309cf8f298fe5122e3e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "d7a53a573a86bcc23e77a7523f6b0296d80964e6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "666adb1a2e74bba5a37d01e89f30c5235592ae9d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "38af776703b084f87730e20b2dcb2b28d1d14e3a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "ec4dafd6f1ed332b6a40364a640727ec51ca78d1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "ad2f518e720b6f3e3150d342b7be2ac1ff573cf2", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "22feb85f5e7c1e41b5308df2ed4bd9e1177115d7", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "7f7a4ef0a6c840576ee539c62e8e0014e5d2f720", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "04882824fede90251953b059258e4c5fdee7cee5", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "b4c99bd5e23623ca0fafed9af4b3e0de1dfd1547", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "b420b4e29bc50efb96dcd2edb1a14598a8c1f59b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "eaf2b3c5f97fcace328a85debee013a87796f206", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "51edc36577829ff1f0de9e0490840fd8b057df94", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "09496e1d4beb54786a7457525130a7946aa18fba", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "ce39b591b8649ab39222c7d8073e05512c8c2334", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "f7848556eebb8ced4be324b01fad255a6b3af1a3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "db3f00b2ef4a993d18a23ac089cb99d18a3770f4", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "a7015ce8d53edebc301192c9761195642c2e9ef8", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "7aa02c58ba91501edb8e48c96c666c49210b91c8", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "80f442c2a0970bb820b2bb1d1f91a1bb50e6f6ef", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "fccd87360608b8a1f99bd77ffab182b562a40716", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "2fe62b1fe1825b7a2ab378c7e074d017f1c3c697", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "38e31286705eef925fe74583a01ec0ec944a892d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "62663acf275335300184152b44cac3b887358a1b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "65fbc6319166b2170649c1bc3706f8dd2e82d797", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "a26785ea9c834abca2986d429d5948f33796c8a6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "25488ffe516c1c05284a2cc1afccbac562c5fc7a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "2a67b33aacf177923ed07273d776cf05f9b62907", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "040dfd28ae7af3f4937426eed7abbfdd83605fdf", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "afe56e4c9dee8cb637af4a76229ff9f877723532", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "647de94f67633e87169ce74155dc5839e0dc02d6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "f3202b13ce289a3bcb082ba6e22372a90821c8dc", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "ffda09dc81ebaa5400b0b829708e17ac238a428e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "4f5e7e1e83028f463b6f0afb64040d38ae1cdfb1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "cc2b6d90e2c2dbfb1c62e23b0851bde24e379772", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "45e3aa2f0d5c7f0278d10788aabcb4a569a955e2", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "babec8414c741e5e9acb92f7400b0bc136bff7d3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "7acb2949781c93b785c9dbfb9ce326059b6d02f4", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "47d56b71f5710490d266d8e16b9bee64bdfd5c51", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "95a14da2d1d78811ce20c0fa62315bda1bb15d81", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "4b7e1e07bb4ea104614f0936d793feb7a8efcf07", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "1eee2db62da508b232c18336d0d61b47036b36a3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "ccf3e5a16cdd663afe116523ffaba99851b4e6e8", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "49f50f54172175bbffb65979306095a1f5e07e2d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "3c7e0b8f818564fa8a178ae3198cb660d71381ff", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "4d0f2766a29e868535de34bcc0f7c5eb77d6a51a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "634f0789903abfa41b4154eb6ff97792b615cb87", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "27c172b836bca0a857ecae2a07b82176cdee7152", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "7eba269b33abfb7c892e9a5d01eef51876865fef", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "ddeb2a29a28fbd1635be296afee3ad4f6effa71e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "562130504641efc61af85d3ff818acd3530b4e75", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "bc82df35c2f2049d15fad364696e63b0fc171c5e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "c9b88c400dc094547429d4242753c8d5a3d821fb", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "fcd7e394ac0ed7c3201cd95ef1e2de1a4f14360f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "f1f9afd623b135cc097c27ddd3752622d61cc742", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "f39ab2285085c7066e9f6709a71f1ae54119cbbc", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "677c140970d19d879961fe1fcd26a15df280bedf", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "367f64f01f777bc705b05c4eddf25391c4185390", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "1d4658525106ae0aeabbe230abf549842186ec7b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "7c03ff8a33c46a9936d9d13db1b314e07c18262a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "97bbd238ab1db8d2e727d50a26a86d6fc7fdb584", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "e30f6cfa49d32aa5f862d11667187f2358d91d1b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "b271723492dea62af38dd1cde461d38dc1b1ce10", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "94834a1de543c7b291956da133892e9118d54933", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "45b9e7fa65fc52f2f2c1fd9757dd20b0468ba169", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "f670a1b6f71804234454185339fb739915ea6f2f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "b9876c8ad0913728aec3629b1ea2231927b23102", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "2598630f2b41bef076cfdc5ead6459f3e659fb0b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "959d551248905c48132e43fc2380c39dcd5a7dd9", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "d4a6096a94122241512e138710b30f44a44e4ba2", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "49459a17c9d05d89266f526fd342a67576c99763", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "ba8d30cd360f252666a787349dd93a207132bf5e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "aeab0d66006d71d9036bf4b13e66c6d870a8d0ed", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "d0443c84303c71fb82d0d8a0f44ea6e097fbfa19", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "3761b0a9df422627c0c5d1afd8e943e296e5930e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "af1f910d388aa01487ff7e9ef920c9e390d320f3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "a07b677a6c8bdef831a6848744722cdc410b5acc", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "f793e14719f393720e33b0be8728b7002e554f31", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "bb0cae2609fea7739de93f9054afa2cc61b02cca", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "8529cd85455bacb1a11103c6e4fd9ef8d0e355da", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "6d128f0f9dfa1b3b7cf039d693d8cb1554ff15d3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "ab02d102d4a43f2a1b5b638f5f2998fb5a544c3e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "911bd1a35079a33434e90799d246f8251e0aa7a0", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "0cb8058da58fe97e93f3c256c59f505c3b465ec3", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "7c1ad9476f2480a0fc4ba5f8f78912bbc84f797c", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "37f318e2ec0cfc4b7a16a49db3926b6470acf590", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "18b46a455d745532b327cd5d55454c81511e433e", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "24de56da88128278c3142c6d7d9b95abd4fbeede", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "bd2f26376026f3c4bf4fc511a5f2a861ed5fbc71", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "4cb44c9dcd4044565e715e71c9cba3c6be919347", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "c5aa127d7d2e870c7f7da8f3945c5e6e2766871f", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "5bb296dbe8021d109bdf5ed6103a51bc6e5ef034", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "c1a529ea6602dc90b6b702c6ea21427426605f3d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "964b5ad8efdd0c8ad7d425571634c4258a1da4fe", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "f53057b4869f8cc91e0dd0c9398dcec2138b9e1d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b02b11da308d84548eaab48d8162e47c9dc07c89", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "18ecce7cf68e5b2c5c574c72d260503e6da42bc5", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "e09523c3e4cc6b654d8d0e1d0498c018609225bc", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "0c4ee57a09441d49daef7638a376c5c6e1df59ee", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "f9efe559be20d2e9687b2772cdf684f156f244fa", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "f6c4e81d568be8daa408a951605186fa65df2c39", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "c4a68f49e066c48dcd29ff5a10352868c1dcefde", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "6826f57f0b7479b87dcc2c64483c33e025fe3657", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "6a7576338b1a096c38a3d093cd843bf5994940f1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "b033402901c7e94137a223eb31f0540285521d37", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "1fd0c7eb72820c8c2e16f38c648cf02c42682cd7", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "92947d932b6f748c602984b8ef9dddce4449b3d1", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b77aae0dd3b31f347a0bcf91daf0eacf5afe5e85", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "39759d9f577bc425238c1350c97bdb13ab25b7e5", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "9a29c7738c1969c8ac7e22dfbba19d009e243f11", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "801f03851663587e2bdef3570642733d42d8ff41", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "a3d7a217a84904483504b84515a5aa1546dcfd29", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "4e1d49d2ad14a52284562b4fc28bb0c7e9c2d864", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "43e0aefedfca27f86a06fbe92bbcbc95d0fcd27b", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "30a48e713abe3c8971b116915abe94bbe743865d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "e38176ed855e9043c8afba6109c87aed29e51c91", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "325b9d7090c5f8986c0d6fa468bb8194581c79ce", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "acda074d4fb85f72c598c95bc58c5c8a4bec6a96", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "1edc02833b9f2c5eff53c6bd10593c839b5f3565", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "4a8721c0eb443320607c9f124a02f0eeac1f381d", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "af854d6d3109df7cd5476d8bf657f59331aa3655", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "853d459fc81fd74d2079f9c5078b79780a89d98a", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "47ab8208ed4d63fc5ddddbbc9a87f7f63d866cc6", - "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "b4bfe8a320bb2d7728bfa09aab2d6d36633082c7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "1416e81e15c143200a2bf1e3153b668de032f7c6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "7f372b7dfc49a3fafb05df262347d44c898ac3fb", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "1bdc43400f6b2644777059730754f15c9c0a7ccb", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "5d5fa5fe186f188145c124957f10db809d02bb5d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "daa658476781751812fbba17cf0fec5bf8ab36f8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "4da281d64eb5b6c6f24905ae0ad50cf542540505", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "c8eee4f259dfb06308189056c9c1946fe6a245b3", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "516a507122a0eb043863ecd1f2f948fa19832ba3", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "91314e12c13d72aaaac2f1f25262fd19fe2a2ece", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "eec467b918a226a6cd5cae82416a4016bb4f4bc7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "3f47f0775609a63fc7016768a20015ae04c75fd7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "bd12ec664831fe089b3ce97a4f938e28affd7b96", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "767578f6013d1e06a96f8b6ab1b57695ef453734", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "2ac8fec938e5eb761559c36bcea654389d97e743", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "becb363d95e0e5b3b88007f4475fc2447f89e87a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "0b634fd14db5712ccdd7f6b47ab2ab72a0b0f964", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "d915ce594b3a1d7730d87f1b601af89dd13f0006", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "b0f08b4e87c47e8a4a460953390ef121f93e962a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "06139c4563fe5e0e72a0c808e6f7960305a34905", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "cd4faf78e0922929132aaa85708ae85b12ed3b05", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "476a4d10c1749478eaceea44e711f4df27a67079", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "43e6cb74e789532344b0d9ef5e66c22d34f82057", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "13d9ac5afd39be264d874fe319bd4f308397d359", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "96bec0f018a11da143b2ab4ced5be7784d10ee53", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "2c629f6ba5db6348175948a57f51f2dc8ee5149c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "1bdc43400f6b2644777059730754f15c9c0a7ccb", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "c534dbaa716778b9e4056116b7e6e325bc1fb8c0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "c534dbaa716778b9e4056116b7e6e325bc1fb8c0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "578299a3075bf8bde160b96a435defd603d460dc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "c8eee4f259dfb06308189056c9c1946fe6a245b3", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "8adbf451822528d872aa84e428493e9fef89c512", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "8adbf451822528d872aa84e428493e9fef89c512", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "f974eb41c01cf0e4ceb1944beb9dad3430a82167", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "3f47f0775609a63fc7016768a20015ae04c75fd7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "455963544b063a754bd2086379c6967c9bda59f6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "455963544b063a754bd2086379c6967c9bda59f6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "631b0a38f941885e491981ed95e62693ff9723c5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "d8f44a5cde406a0b087b4da5bf8d365431b07a56", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "3e01f248b474e774e8f6f49b165704db876e0f30", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "5aae46794e118ab79ed4c866ae5864ee1a849bd9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "5ed262ba0c8d86ad1255208f350870e7b5be2c96", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "18c6da5f40284d36f1e0995201657b64716ae59b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "d8d952c761bf97fb4e50107f39673f74f3b756da", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "bea37a3def46600c32dce0a4cc024213a5be13bd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "ed966526f084de74115aebbf121d8c6c89774ef5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "e9bb2649be5c57e2f8e990d80cdebfd1d4a3fc2e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "1fd925feced46a126c9ceadb6a2bd894a825ad6f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "7556c4b94f191126ef6efb0aa6ef61450c2e7416", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "4fa6bd60eb8599c494845a839ca54c7886c30f80", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "e3075ed4cc1310fd1b758f4174654a3f9a7e70f1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "f183447e51e827f71548e3e38ffdcfa7e77e3ad7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "ad433e3f08a29dd844a3e13aa0e9093a6f2c7366", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "7912a7068f5055f7af819548b739de7e115d0099", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "a0fcc50f255df0609e5b2943e1cc10e52823fae1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "e8291ccd66a77c2b05bb4d2564ca12cc517f0546", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "f2ed3c15355388bad077723ad50fa20d76c5abbd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "e70a3737f77d681615fac8985f19450066327ebd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "8e172f2f9756bba2a55e7e0fec2e271b1ab19587", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "79bdc65b237c771abc527e6f37896290804a5a61", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "625ed4f58d1cc71263f1fa369fea4cb3dec2fdd9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "36748b299b4ae5df9812ccc716276adab034ac1c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "8cfd53544ae166885239dee5d34e0d0d91d00c9e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "f41b7ed09b0e5ba9dca6d98e49600a254e9c84dc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "f9023f42977526de11387758375f349f581fc7e4", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "038f2e53b19df1b59242d6ff7bc057f388fa67ef", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "d736b0a9c4822b62b56891066624c9c1c710d642", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "6f5d7ac6193f304f734c2e3015c84053929c5d7e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "e6c65af3b9f4513d937f6729f18ecba200c24276", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "2fe6b4f4f185d569cb4834806d79e09b107d6a91", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "4f70915a95b5b8464ea28f27aaf3ad6d24d4599a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "1e07306f558ccae97a246a6a775299e74e95d9f8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "12c70a551f617b320148e110c1985737e4e65cbe", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "5b6672078ea7e601231aded7aa3ee65278729aa5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "7cfffc24c89dfde569f0983047efc338339e9f15", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "080ce72c8cdf29859ee1a757b70d77b7f4b74b69", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "f12e4177512596075d92ac686aa55394a18dbdc6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "256bbec8f6d8656f98d70468ba78e8e0b448b44b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "77e0059d4e281af05157e1337992bc8a7a2177fa", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "162df71d25bab7455ac06d0a5b7bb3ddc28f43b9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "06fab985fb8c80151d7e84941631fac454055490", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "12d2e26f5b54e5b037a571edc7881107fd0acf1d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "d77061463a3de2b4610ad45e746d3f5f3f6131d2", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "35ec7e038b11bc743c0229f4d505d1f9e15e0118", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "940f2c7e77e777db95f8d9655b2cd0e522e6d08d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "024c016b58ddd410427d2c006d307fce4d4339d6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "f05d239996346e4ab8906d66ae8762150a1e0fa1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "90971cca3b6763c7bcf022c85473499049653b3c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "725389a57cd294016a381051e9a2c61661d84284", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "3dc38eaa5feb707bed952792d5b2e3abf0cabdb0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "fe4da6d28ac54a4c0bbd3cf01e6396d4d3176396", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "4178901faafec4fd4bc20dcf6085ba20027060f7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "55749876350b6c266cbd817e49099888679aa1e3", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "d180c17eb790ed09327a4fc9402826a79d9ede95", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "ae9c31472e69d21711d22364bb2d701f2f0fee45", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "c3a66586ab063d960601716ad76559742f2cd829", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "5d04af555cadf788ae2ada258a8d0db697360e6d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "1dbb43f85ded71f07dd4b8ae540434af00ac0a31", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "ddf8b7c0b73d8b9a7d28a8a91f7856273f873bb3", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "fbdf6164a75631ea39c54a281533190b72559aab", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "1812f5e4644102b70adfa150e2146336d3d080a5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "4a6600c50ff150a98085d2b46af31ede3fa538ee", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "2e0b2ad9b0dbeb0f89634640ca085839a94b4380", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "a61abc4d19a39160c6322b18ac7764ca196ba3dd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "d7bf998bc26cc74f02c4dfc75c591aebb3fa243e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "48f1ae3280bb6e5ba6b0a4b74cffb650915059ce", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "619eaac8efa4b610e78770b6284c7d428dbd614a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "e621c207d954db4e2056ea1c6a570498edfabcdb", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "5bacfd99e02514823df560ca34a636c4a953f61a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "8519c6c6a13a09e4475aa94bed3efabfbe489827", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "dae930970043b941c46f1fa8648a11508a381cf7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "289f6ff083381dd569a16bbc9429af3920e9efdb", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "042da773c6627a6a21160c2e752b5d8f1374628e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "6fb85eb73f13f592886a4235462710dfc685fbf0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "b4f5147f8600d6015abd6d88e9488c318a400c79", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "1b9376e205a84c4219ed14283bef1c4e1d1b54ad", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "236eb0129fcbc9bd72c8390dbb2d2e6be2bdc487", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "2da2bfb572424a494723c936d1df7f08db6275de", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "e5c17ee75e2965702a06bacdaa942010c3073fb1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "24ff219a3ef116f795a4ac1c00e72ea2b7a9ebd0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "a9d96b69a655be8a678df30bef8cbeb9f66593f8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "3bb1fbfcb04315c49576fd7885bdf426801c7c99", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "9fc8b29eb0c57955c9f1953579cd2a03608c3d16", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "10506fbea814c0b4e17407a847e835fa5aced5fb", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "79e25ce2382a5d719e3e3ad9677ca838d8c14ea8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "77dee3ca552d18f2c9c6ab6b8f73201857ee1c6b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "03b1f18557a16c6ac1efe2bdd8b76ad0dcf92af2", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "b10772b062eaacb36d8faef8631081f32a415219", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "4741de3e6a18911a1a456aeeab1faa3612c500bc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "556082419b45653ab2f28c7b9e8a8a00eefb5809", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "7f16731e7c53a9a74b5124cb993e8e1688fdae8f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "df497ac8fe49027f20ee9b0ec3fbc8c6e25d6d5d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "1e6b67f18042e994609416046ddf2af97e356fc6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "b0bdda550c79f2d3c7ad3d9d8e70ac69423e9707", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "4243c79b497a5102a956dbdc8b85592916587a6d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "bafdf1432daed9805e28db2d4fdf76bd9554bdc0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "6b50ca613e2a5b28fb71ff7259d1789bf3db3d20", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "9c1c028585bbeb9cc5cd38c2914d716a2b2eef16", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "2e459003257e1b1fa54e9dfe2f4cfa0bb11f2a5f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "a6863f9c042be2e4483ccdeaf9c6da68a9b63cb0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "d84f241e4aa0e8a0b7ac8667a50dae1448269926", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "16cb1ff4a7e3f6908fb346578ada19bfc1166d88", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "87954a142962952c539c2cd249b08965102b5e97", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "fe97eedb9994850909b19d97e1bf0d6b0d7c37bf", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "0b475f86ba96571897c6abeebef951ccd5c8c47b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "3eff96a9bf45f8ec8b0cd06e1ce5c204e1810f59", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "5578aa7fab2c3815d577568edd8a0c5a612ad278", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "d6622c77a8f99b966029f075d5479804ec7de2f6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "6182506b482a2e0ce1ee396127dcfadf5d12a596", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "3c529493012e773c054c763786ace2c0afb358df", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "1f8b4d975bfc0291e39ba6dd4c89e39d85ec8509", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "9258941e34ccdeab74ab945118fcc7416e6ef1df", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "682b30497ae9e9a712709f83ef8e0f24abce7f05", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "ce793e5b77d429c34181956b473baffdddb75c2a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "e84ddb5176fc101bd380e22a843af25edb8da724", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "65dee952427f7c90eb7eab306f78d963a9c6abb5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "8743cf160c990c048833eb29855f275877d7d4b3", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "02f8f44757072df41caed442a307f2b2347a5839", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "1abaa29414967915dc7b888b45925c5562faf43b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "232e32dd3a5a963ff007cf22b128475f7bab1e7a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "cc506123974b428901e9a8bd2f3568642adc0c54", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "8bfab556e562b007ce27f7523ae15c8be9c69aa0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "2ecd8365ae0fd8a41a0fd732f8b91711f4749b87", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "5b5e6aa29ded4d2f4a16896c44c76c14de4e5f44", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "2cd413cf3934c4302a20116d65bbdcd19b5d9c69", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "75327dd0c0289aab2966bea1213a01a266b4feba", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "869a99c7ea5d259d9d6a197ec803f3aab04e70dc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "ec0704acd92386baf09be37b0b0376430b4d38fd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "f223748b42cae83d42a93f2bc48b6786e54e6864", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "023567d666877dd8c8ec15143aa0cc8c17608263", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "472b1d6348e92c6ffe3a415d4e380e81ab92a559", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "a100c25d3a0d5e7726c4428758448bf3040a8e30", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "fa9e6f23131075a927fb4720ab28b469909b4a6f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "922386c300eff3578791818db3d480a42877b00d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "a6e05747628d085af6e53485f5eab5fb2bdbd171", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "12fc044136b4a5f03f21740c93b6e9e11a4abe5e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "883191032d2d17ea540e5ec528a2268716088d50", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "197006cb96477ad7148ee5ad06b960ae6739c324", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "75c7a65907de918b08ce7abc5b121f81b3dc192a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "ae75c54eeac2677b787bce0d62e291cbc0c07369", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "c2dd199f467c6d0466608719e2aa2e415d9b2b79", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "ec1cb487711320e545cc1f780f7cfe67159e6c95", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "421ad7bafd05a52f52eee96abfef4a0851974577", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "03664de2b4108123f46aadedb7a2f0fd96a03967", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "0b3e797b3dd82d3abdb852387420d591566e61f7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "0e31a7bbafc69b6777e446f14c806b2535289a79", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "e631d549985ce2cb42f51a729ea0982f427dcd82", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "6e754aaf1061bbb9b494a121140a49ee1e7b0e71", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "7c41f7f829ed482dbfa150b09786f8bcdfc84018", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "35644a3c09942ecc74ef97eef3f5c656da2c7fb8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "b5f1b036de6c782c8a5d5028cb1be1462cf89f42", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "bfe05e3c2eb9fb74c02fa9a842e21fc35a5dad76", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "165773378238a996890873487614a52a114c1493", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "032346df6d9587f1a1cf1d93326a5bdb188b797b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "910169c38aa0032529488367f38ed7076bb032e2", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "0f602050e280223f56255a33355e388f3c074558", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "fa491aeb109c73bee99af051c38da2093b4dc310", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "a04cb4faf22b66140e451fea5700936cd5cccf24", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "3e26c47b3cdec12647e7374b30a031990284fce0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "449a07de2e9c42c24894c9893ad8c99be1c0b771", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "789a5c5ee2086f9520a90ef48da3fa5d8cf4a4e0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "9c33150838750164a25b17d31f928879b7fa7b2a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "0f208498d1ee04a98665c861767cd01d96409af5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "f3a387d18b69c3cdd8d564d4f8425d215757e5b8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "93c0ecd9a440975fbd3c34742cf8607683bcc108", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "a9f79d6d8117d18979c5d4149df2114ddd10a889", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "9724f306319db86d6baaa61ea2aef7e3bc4c1c48", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "5f3d76e450d3627e1c23c9b625d91f1ba93661fa", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "3ed02783b7fad221a9a0f227582819ff1b616b1a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "813283553fdb64d8af3b6b5304e31615e220c9fc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "88959b1c4fa5d4b29de0a26e870a76f1cf0cb181", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "006a747b6cd2aff5b9dcfde498c1b4b66dc46adc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "7950f41fcd396dad336a110fc673135fd9593f4a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "3c0348c1c5278d94d023378f9837b0808457890a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "0218947b561231c4e6a757574e858a8b447e6070", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "d6d29b8d524a3c00daffc8c0721a8785f89cd692", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "ed4970b8588a5cb1394a09b1d2561721db52d824", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "32ed85976fd0b2d6a16112340120900bb702d859", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "92d71d7c006b16b8c28cd5ce44d76fae4b9b6013", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "512ccca2875a3caaa0891bc24fede1f375590b9c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "ff15f99491eb3e9b0d6fbd81009b477a91fe99a3", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "079dff8001d8a1915b45d7c178b25e80f9038af9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "d7deff459e6612a1af7f75c249d5bdb95a8941ae", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "7b0fa67a2f5f07f19a7ee2343686bbab114fbf55", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "7fed5cae6ed98eebf5e230b972bad8b3a4df6fb6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "96be916a83fd58e3c071637dfc2623dc390cafe0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "c358ba9c0c60e8f72bd9a9ee4e0e248bcb7c6584", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "c23222214b9f8a04ee505f750ad5cc9a887a535d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "49da5224af8160ddb4004c02b55024007e68382a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "613da807d138133eaea51e80a3f3229aa32a1019", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "65879d7798191c8788ef2aaa0b89d1338a1beeb9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "a9d579f6803a46a763317792b4c0c11c14c340a9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "a951f71867321785fa138fb700359bc5c1530fbd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "437f53c659d223e3c5ab5776870a03e64670f1cf", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "1b1013583b00a3494efbf81c48956570d38ad3f4", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "658e56037eac6242ed481355a857f2be8c463aa1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "e7d427a9bc7592adcb154916c906f877bf5c3aed", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "489c4b76eb5976ed62db98b424bdd1e566289383", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "66888443dbf88094b7bd537842d4939ee831b61b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "426ad61b193b3961ac922ca8b825d7ea5dfa82f6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "61efb7b57c17979f203e6d3c639b6bc8e7307bea", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "8b899e84ebbb7a7f70b05545560a7b7bfa27d2af", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "76be6d9239a5ccd0d6df1e2a7b778fe0e765041c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "03534a1f905bef0f68b0b1ce7db46ed8002afb1e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "6138137835da1981ad5579edfe9685a712eb488f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "58ae62965c99ce9a1d315af19e63a20dc38510f8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "f6e2b6adf6c7443dc4d2598038a2e03b9aa8cadc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "fbcb6bd55983d25833ef9d0cb8dd4bacf4b51e4b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "3cf175cbc01ce9334ad75a804cd0df90a9a1312e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "156209b576e139d4470096a9430b5d9711b3df71", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "baefe111821bc1a64eff83d3958d599deb9b967b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "91d845ab31dc5fec940f3798b9a67aaaa68431f4", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "553a3a147de8a4f345cad400ca3bc4b3b55b3c43", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "918a36bb26405649b36aa2527cc0f78f8f5a6331", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "18813cba3fc49f60e48bae3bdd24768054808aa8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "2051afa342220c7a764a25ca8af1340178b4f849", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "72d0f68dcf37f4a26ff037236747b48ddb6911d9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "146121083c660cfb0a279a972351aa303dd95d0c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "3442d611d34e73804e9305354e60bcd8a5500e28", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "e8572c6f1a7936fbbd612f7a0dd2465a8eeea861", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "e9098adeb90e4ea56896b687918eefe7a52f845d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "98f2917d2ae734b259d6d12f5a5d28fd5d914e59", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "6b6d6cf9e949e670011c82345b734ef44157f624", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "144de076ae20259c5025748e0c4a38c7c0fecba6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "d31de5001e6c6d77303bbd451b697f3999de2e3c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "d5c14ab51d28051588831306db116906e2f05f39", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "adade5e6a528b9e02d8dd195afe59de4a248398e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "c480ddbfd3cce8516e40ab5908039f5390cc2fb1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "e16f6e512077934506eaf59f80aef04492ff44a5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "f06016b0d907e281550b5646dfc8186cf78be7af", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "99fe8cb6a8e7ca0df7a800a0e1a967a225f2d558", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "ac02127f87920ead6e02a3250149337fa6243697", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "ec2e7385ef1f5bbc11e0138f782bcb14f1ade543", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "d384242328ecfbca0369fb2462b369578454563c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "2fab6e9e1c98ed93867231acc6aa76830982c0d4", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "512f8ecffa5e533778be2130fbd2eac4612f55b0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "1088a79779ae7e4653bbe2affc695f0025530136", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "a08fcf788e0f6bc8f1f9299f3ac55631569d2c06", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "a56d85ebbcd38264920bee8e73617293569e165b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "cca386b0c800031093bc1a2bd4f0906a9837a158", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "d3acf0bc418c8aad5608a0c9c04f2dc7c9bab11f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "0290aa3dd0b6866020837628c9dbc9e37691f27d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "67e5b6616102db8dc8b3edaaac1f019f36afa40f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "2da7a9cf8502326780b67f97919812d50085cfa6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "895690582b265deaafc13301dccabbaf2bcfb0cd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "b8726c90ee2e1482037d2a50d4d80a62fa3c94fd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "91e8993c50d1bcfba0ae4b45c308e9fd0d70cbdf", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "9541479f26db6094ab3428ae9191d6fbd56e2492", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "2279b782b940a979ea4f1a0cb113a2e91f02af88", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "64aa42b9081fdb03a4cbe6b76f8deafb8b4e5632", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "8dd3b38ab26b816b94e5d4c5636c6d4a24e3a909", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "4e3dc8cb27511504596e02b341ffaedb9be8d714", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "4555368437805d6dbd2cd7709e6d52c1f576e712", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "a2906452534aa3781c05ca4bb42133ce71129682", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "3ee8c0d950cb88479be690297a78e8837c047651", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "8952b15b3e9f52bb05c3f14b92f3ad872dc88bee", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "795d2861c7f33f5949282767d1f43196d2e1e30e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "9d1dc8b819dc1343dbaf347221320dac53c7f4b8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "f4f2988d4b3022bd7220ccd87a70f902b82e21c7", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "34f1a9b4abf286d2a2ae0413c6e2ab1cd44099dc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "92b08ad6bcd21da6dc559141960175f8e7751386", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "bcc353ac55aa139cd4e3709cdb5adf00f75d8162", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "aa88c5d69605d869e572255a5e829a5cf8f22790", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "4adbae0023e24dd76d938b9ab81329a8cc9654d1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "d4f2c17bcbb0bfb34e0a1215196502bea7329300", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "739b9d7e01ba5038d5895387baf3563386c5e4ec", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "21a2543ab056dcb8e7f4b5c43df3702c0958b78e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "ac40913af96cd9e573d6d1abb124b04b0462e079", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b162984eec7d573a8a189064ccf1f592edcefdec", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "b879d5158d8103c2c2da4a063d71626b9d6cf2f1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "6b8a91b55a3543496547e80c5cf4aa28bb6df239", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "3b860a1b70bb5d4d46a2df44f2a65bb458315e9c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "f18bf4f7c0373ee13cde267f1313a4d61b25d698", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "eea34261146958e98850200048d754d3c0522be5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "6127ed1871a449702b770433b484f9cf108d2bce", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "62e79b36e0f93e9ef1d372afd2a14e14c7a748c8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "c245366de79c0b83d055ee8a92455a31d6e58d91", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "29efe4a8b46ed7a5aa36fd29726b5fff378a4101", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "4843bac369e24d10418cb1de567b2e41b76055b8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "584c9bff39d80cb6de4fb343937bb92d128ffa9c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "887873efd2ac5fd482e64d00264cbcc50b363332", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "126ac93ddc6fac5ba264d7203557552d45f8a2d9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "0c7a87848abafff5bf8b77e0fcb5e06d08c4daf3", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "3cc7bce246c656d8b59ba2c835c80fd8fd4726bf", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "ddb339045fb5a46dea7ee0144843de12ce365f3d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "c12c10a46e8c0917622344e0d427031caf47e819", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "9e35cfba9c254531f716b4c0d5750d4437bb2adc", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "8efb3de4ab34350f007a444de907d52639cee030", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "cc5983785f3a11ebac0daa6124139e72fd60be17", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "53f22a09d5b7586fcf095d6d7940cb010c2b3168", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "58bf2356820e52b60f5dd6eeb1518159842de97a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "7bf2ebf06e6346a43cc1de5d6874f64ec24ff158", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "480aebe2fe88cfec6801ca1171a8c2845bfc08b4", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "35cbbf824762fd1bd17915238d23856e7171a28a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "2e39f0c5ff60bcbe6841c9404f13c2fe73fd52dd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "943fed440c81126a1b294890dd6b533d1a29f5f4", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "67c7cb4f30bdc5f5b14b2c299f6a9e62622c58c8", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "3077ae4890bfa3e6adf6e8fd58723e62b621ca4c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "624f2dbd363f482cec9ea650692eff15c8d34c00", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "b48addd912e0279d7d1cd5a70c18060d37e6dd1a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "320ef83db5631f3e1e84c655e5b046c25bec6b95", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "db00cb02975ed81a170be767c799452f8ce0b1c2", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "63e5c15c21991221047e4dd21fdb01a596c83a15", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "d0a95fa09686348c5cdeae6c369560b64a4611e4", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "2cdba65430cd983f2705a77098cf816c34ab70d4", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "fa1b7d60685bd9b548e38d0a3f3b1882d25ffd2c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "439b472ec92e26ffd49dbb394d594007b4a0a886", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "ad023b562a911b88bb45f0109baec5c4551e7ae9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "f9c872fe8c073986d81d8ef7efcc0c4519b52c5f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "5d02d47cf874fc903ae4ca0e115fc84c864627e1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "68302a52bac206267c97218e19625122edebe725", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "7ded70949c87f882ce20b86d372ab52309fa1307", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "ba14a07aebbba4e0f20f78a8518c4c3690840852", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "eaf2741b80482c15fbfaaf336f318cf1d9b3dbb5", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "5849140784286c46a4043288f64849c842e18a1c", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "9f430bfc89f61d0831a0a2c67b9b862aa53b20c6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "52ed93ccf1766a9944b2f5aca7721a968533924f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "3bf202365302eee208f13e4345e7591cbe53fd7e", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "677f545e8b383cee9be80f11da6d7c07b8752163", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "2943302d52f4007548012507e0d2613e899b0ecd", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "3b4812f1d93442defe82de2b2727be6cd32dad97", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "a95b720ce993d7e4db16a108df6679150c2821cb", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "cbc92d49de338ad62d0e9d36113c93b7e0ed638b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "6c2d0a37e67f692242a11b1daacb097d3d68fff9", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "5b3c25a49cabc2cd38de939ba1f0c0e7074c9d81", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "fc8913ca57f0656b8f067e486ff30dc25a8492a6", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "64e59bbf9075c2f864b7ecc5f90d051818a6ab60", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "780a29391db59535fdaa4fdd1e5ff3eab3696125", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "3c9a3e2b7c0ff22e621f2312683cc83fc46b697b", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "145d539effc554f3faec38a73a1d8481d4f3bde0", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "f032738ab1344fc721e962638552952ecfdd57aa", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "d8f4732bd36f21d11fb9e88c45cac6f6f574be9d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "1a3d462f0ccc9bfd1efd751bfc9ea007d9b7bdce", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "308d9e70cd49deb6db1efd7c07490df3be8ccd13", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "ef58caa7d03ad66f3577c621addbe8e5d530a046", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "0dce705a975b8a999073442fa353bd5d527b1a2f", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "06286fb7964fe9b9cf6e2588817b3f9e18367b9d", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "26aed483cad05024b4516a866340ca840e419789", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "2327450c275f6009861ee6d2fc66ec7ae8a3939a", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "42f7f0977a66e047996e6c5dbcc261141789eba1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "c8ac92869f431954b42f695c27ab857031e8ff07", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "db7e3b516d30e1ba97c751cb17b0c1e9b4aa1ff1", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "efb412a0474d5f15953364a0f82db4d3b58713de", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "ddc873aa02aa0babd400272f803791537a48bdce", + "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=resource\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "0c1d3bc2456b81298260a44a4f2267ab1179516c", "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=jobsize\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "172cae438aac65f2962f7707bf999599514ded08", "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=jobsize\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "5e38cca11632aa251c1cfeffcd2b420be407ce28", "dataset_type=timeseries\/statistic=avg_cpu_hours\/group_by=jobsize\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "3c938f9b83d6b98010de2c4f08056d9508150619", @@ -1919,198 +1919,198 @@ "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=none\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "6c097643986019289ef1fbf13565fc10f031ff58", "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=none\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "559554ab08cb7b4f012d19f6257532e2c46a8a97", "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=none\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "c82773f68114b6a883bb2792640f7d6bef2e559c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "388250f8666c9dd87cf3d0178f41ced6960cbffb", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "b81176f97c6873d5730a4f387d663a5cb41a7fd4", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "8b5e808b988ee4b20659abdd99d9b108fcd6f211", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "1e28287868e46aa0d45bc3d3982d5c0fa8bef318", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "dc3a3ec42cb4344017610b162d57ebf048aaaf14", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "ebde813927eb7afaf29f121017b04279412e1fd7", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "efbd8e061214e0faca1767ad98513e47572d7854", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "45cf3f9c1bee27473f6570f06b0b7ebc00dee27d", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "78357a99624cc63c24cf27b578d75e594d70fdb8", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "54ebc16116f430e606332ac580226e6a37d24a31", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "d6abfe8e3c639c8555803e79af266a448cfaa55e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "063315fea49bfeb7996799e28edd6690f7c9c5e1", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "63a2af68002e00e5189dbd8a0e0b058ecfe546fa", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "6e9ad6f78a37c4ea79145b4ce7d620c948656c3d", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "d9a656ea857f50d2aa02f3a195b8b56e51380857", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "944f199ab2bc4fb6baa23c8b0fbb29ae90a263e6", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "aa69d7baf9028d491024f8d287bd834d78d9e426", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "346bb0448d8f2056f829e0d14187a3200aa229e2", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "c6b8e767c3bd3036a30da495655f55cef3ef91fe", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "26d21cd5beaa505cd47e35788dcab6b420d42416", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "e008521f87a88d8a18dda3923ac2d2ac7eb676e0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "786a757695c038daa3fbfc9666b2ccd02c350410", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "9a86effdd6f77e5460107ebb740fdfbfddb8a1fa", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "ba0219b950d35dffa9582575f802972d8c7f6a4e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "0fdb925e86e6dc567f769b2662bfa8ef5af25792", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "8b5e808b988ee4b20659abdd99d9b108fcd6f211", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "c82be4631da8b1fca025e156aa9038410b72c35e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "b7daec391c7a52ef05557835a376f254d1df6383", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "b630add136ada56927c5db889334be5ce664de27", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "efbd8e061214e0faca1767ad98513e47572d7854", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "85cea9ef3eccebf04b8c9a8dea4b8954fbc07032", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "7f666c3dd5d7f17ca4360d709895f43de7e34db0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "cfd10393f1123a671723b7a1a9977649bf2b525d", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "d6abfe8e3c639c8555803e79af266a448cfaa55e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "77b54d6af04af97a9644734d601ed03c0d8a112a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "b16e6d54eef95f2c631a8ec9749a5f85ecf148b8", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "451cdf4364ab98a2d1459963f1a18c589cad97b4", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "d2393e028d778fd0d96e2d18eff429b3d893f991", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "59dcdf7bdaacfd2582d3fdee9ee1bed666a98c57", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "1f0289180cc4155e2f57576e651924998fc6f5c0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "f8f33984050db5f98e20f3734b358bfcd524f44a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "884f56d1810c3b20c0345dd8213b18a8a0752790", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "03aba14b27c512f2c505ce71726a5be3ebbd7610", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "ce15dea69ed272dc688783bbd7b8261b1664c8bc", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "01cd7810e1d14d1d43bfc2c6078d392509801d03", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "1a1ce98928948690fa794a0ae422cfc8b5363ebb", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "70e7e75cc7f01a052686717d322cd984427e11fd", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "d0b393e69e7cbda6a102309a003a3c38c5421ce3", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "758c85f9b57d9609ac6096eceb5ba8567ea6a4e3", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "e69ed72bc38945a4167f08362716e678e3c35dc4", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "45666d09f2f2460ba763c21c75e36fb24d74bfaa", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "033a2bbd40e296df60ee820b400c3ebce3a97d99", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "8f01049d27b91bfd87790dd0e4c7cf1d915b6471", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "4a460cd5ded226d0a42871b6a2a26cc56955130e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "56a9a47154c11b557933c1d55d6c9c342d4d5159", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "78c6ce6563b5439e12bc655b72b82a1e1a9e5546", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "6b0a6e8594f7489ac258e6f1da579b1647412bf2", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "2a723f1c56a414ae507082301b8227a2a2a0d5d7", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "a69b6b7b00df2dc77315cd3702b38ee44ea737aa", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "347b63b22f7cadd8bd201a844bc39b6e04ff408c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "bc302b0ceae225243327f41fb6bf6889cd112542", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "dee1773d26dfbc19e4857a49216a9a140fa58b25", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "08b7d082ae8e1a825bf1c2accb11451264221c44", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "8c7d835f2bbbd73e87fb332a927519c235997575", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "4fe92a12d868feabc2fee47e7b63054b7eb702c4", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "a3707cf68f0172e01fd93fe6a073f6dd4fd7c326", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "d2c1527416c9741860f1dfc4618525a6cf64c8f5", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b53b7b4273bae41af0b406727b76bd5ec4bec5d0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "7640322c2fa9894ebcf67fc2110c25121418a724", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "b8705b74c25304824e3de88a19d29312b8c7f377", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "4b0cea44526c9ee3920d657436662a522f866661", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "b45cffab63456b73332fbd9ca0308d3b3607591a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "d9ecbfa34d598db1319d5678db03fbf9bcb26de1", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "bf51eb8e09f9c8c8f8b18bb7358a3c200f40a016", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "99979682a16fb989977fb7ead8fdc52711b2201c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "311b364ce2bed8e502a4d9e0a59c1d03b2b8c67a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "998b26c11db6e1c82b5c8a527e4429b0dfbd55dd", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "d1c67e99f991f92f5397d51ea2f0142116a595a0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "57e75c273811827f88ce28c3ac2bd1dbe8006093", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "208a7c4059cecf259f8964d5b7eaa5ba7c592e83", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "676b9efc845a911686844ea3b9a82444e0a5234b", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "73c1a429d179f002092eb4d41c020c896f26f1c6", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "70bc6bc3c5f7c8bb9e3f394a8dc53dfcdcd112d0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "9c57492a38dc7671e0f1747799f7899bc3d32987", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "0fdc9a0420ca1b215c6138e02f37272377c367a9", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "04bb9fff0bd802848d87635fec5c75d89030c3fd", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "1d80d04bb2ac7ee534e04286119fa64c47e946be", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "1628f1383ec4ca74ba9a4d6a04a8fab3491ac973", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "64c5695ec9ee59975c6eb10010bcab4c9b3c4ea6", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "b12cbad3ff8b4d6978ecfc12a072bb7ddf1becd6", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "84be43a42bb7737a4eed95b108db7305f603dd5a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "723cbddc327e799576fdfca8626a21e24f1610dc", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "c9e66b250ac7969bd45e1695b9d411e04522bea2", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "143934ddbb4134e59f0360672f5258a2603fc365", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "e7c11c2c88baaec7b2ed0d22c7b504ea4facb621", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "dcc998de77f927d275ea5da16799e74d88d0eeb9", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "35c6a1f9db7a6a668e9ba4aa21497f102542574e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "f6e744ef6d93c3f80e71379b4560fab56eef671f", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "b5cfc9e0740027195070daea856b08ac03c0b904", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "b9bf7c6ea4c727233cc01a77ac067e61d32d9de6", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "c988b3c67dc06c800db33a50b40a8aacd74b96f1", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "e270a6f92ae9b0245f2441425dfa52742c053f94", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "bcecbf49a130b62972b657582771b321ae73dc6a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "96319c2d0e90388ef1354d401a42be61d59ab46c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "6423dd2db81d9256fb45df8ee573d251ea1dffc1", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "cec292a2e2c9ab81f640351ba6f6eaa3332a6e72", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "8071748685fc11f1dc63fb2c1e1b6e92b0d1ab35", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "9f8da902d5d5bf71c5918eed1b6156f2378cdd38", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "d6c278726b1bed62a98be0f0551339a2b45916fd", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "10e2284f13044f7d0b8cdb85bbb0f9b7eca22b12", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "82fa09e9946416f095dd96f2557f6298cb60c66c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "82e182728f7fe41df3a095cc986117b36ae83ee0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "2882274513d65edcb32d2861f0406eacbc071509", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "d88bfbd2ca0cc570fc05091bdb48ceb4d2416aab", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "45e9133c49cad43d41a97d65985825ecff9800e9", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "d363f4266beaedcfdacbbd518a9f4aaf00932e70", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "7ef1bc0bdc111fd89725f889434bdd48625027d1", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "0a2aa81409aec3014bcdd110bfbde0c7089e519d", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "d8b8b18a22daf225e4e85f502a342a11b45bd592", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "53f1d12a93af332a162de20d763e52b8a69f9a9a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "bfd2ab45e048db7b3e4710c3a5dd911d9ed3e0b4", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "e26e94d1cb31e46512d503deb453bc100f934f41", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "4657a415d0278c7e2685916ed277d2ff6e19127a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "43534e1a77fc551bed1f675e1506af188773dcf9", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "9f7756999c747ac5ee657b030b71f1dfbe3ab2d6", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "ecfeb8ddb7581ef767f777d81204f06aaf09410b", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "41c1ad404263d2a1722c21013102fbd1ecf87e0e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "779b0099976b30a68da0a8717cc1b0412794cebb", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "65abf2baa97251b520690782e57ed51890c3afdb", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "9c0a6aca747e553e5e01b3162839043946b79d8e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "2d7e8a294e786bafe9988d7811a090f38e88a7b4", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "496fc79a381b75ef76f059d282cbbf0382717415", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "686e42d9985bec4064cdf864f2e842eaa9329d3e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "81549fdce4d9cb6bbd503a568ab40d5b3d4bc9aa", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "b46d41dcad089969bd28a77a72da3e3919697fe7", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "96d1527daf102913aa3daec7717570dfd1c62f10", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "f486eecac219576580c9b96fd6681fc3ff7050bb", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "eff04934d097abdff970f10ec4a58b71d396ec9e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "ea8ea53230fd2d8c025a891cf2006a4dddbe2b8f", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "0a13c2a8052867ccc2f9913cafb44c2d54717f44", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "e1f16c2964894d5772e0166ab4cd5bd172468936", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "ae12e2bcfc9d2dd26071abf20bf168bcec14f95a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "1f21a0d9cc84add62f2a3f148791e54a39a1df7c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "4d8323567491790fcfd1a2046a9cb3094d06e6e3", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "38748a4866eaeb9b6199ff0f698850c348942ab5", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "bb018ef37f1ed6182bea1472a7dc27ab89c3795c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "3e28ad1e7529e74ade57c50cffc9e656f0dd155b", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "aa8a6592d9500dbf6a6b05c11ab0a277db0550c0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "c25cd4181941a2b4995019ddfb7395f362ef949b", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "d2626982da6c3d557fdd77ec16a0fb9143f9627c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "7e8656504786c941a3d7b8798443343c528a6aaa", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "1e8dae20f708f2696375579b81a69683f9343243", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "4ef60a71d5ca610b3e985ecbc55092a6d4741830", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "5868c60ca0da50fe53a0dc752d55d3d11bd081c9", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "6ccac892b8906d20b2f210eb56f244ad4122611c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "d1d1dfb333d598ea779b7f5cdeb7d58f77dafa1a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "6008e91ef5e6c3132772564f3232e08a24a8849f", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "c150d92c152498f1f09c876068069cbb8f29b64d", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "2bda96ab6436a070e3ac7c4bed08eaa557425f56", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "81dcbca583f7815df9ecdc224bb05b625bf152ed", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "be9489a79739526029383c8b8c72b914447ae48d", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "b4ffb87c8ddf7617eb7ec36eb8c5b0c3ee08aa27", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "bc518f3045421e26b505d0dc77cd9e729ab8eb44", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "43730fe0c6d89a2b7ab0932b902b4727e235cebd", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "0075e5067d0be6fe7c2c7a70af0dc06205aaab55", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "3a050d363c7049a13f5d9e9fb5db30c5c2443eb6", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "5bddd9c313d7ea2022a320f145c83808f1062afd", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "3fc2c021737512a0a1d806de6cf2742577d05a64", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "1e200ed0f2b3627f4334e575b747fc5f87ea9e9a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "1b43e79b8d9f713fe8bd73bac9517a58d2c44951", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "a90e6350adb4bce1aee14a3f5aa9e429c81ae9c4", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "be27660abe05bf1664d1420f1357b631391bae98", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "f33ebca3bbf6a226ab3288cc4089d957af1bae41", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "486376f356fd23e6c9056cb94e766bc7ed82f117", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "e0c67e8a25b962bbfad81174fdefc93cca7072be", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "305c205894fbbb21f9491d639be96906c38ba0c4", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "60f5c7939b62428458bd6f054bb302b47571fb5a", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "c2bb004ddab736c6ffc6872ca7f1e9c7a4065f2f", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "0809618f2c42e6c1be7d3e5126a17c60e0966913", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "1a16246a23123be16e8682c93fb9e37f093835ec", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "1e47cea0521914e255a6bb4d34e273cd299894c7", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "6b7c60f23f7d5d288a12c3223d195df8576c26dc", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "b47ea2101e019fc8f65896d19f837476a0cbead0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "73264eae9e2899bdadda41a30459d92751e7cd51", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "1ec419afd5f76c89906687eea3b4fe6889ed84bd", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "59f4d9f48142570b7f0f9bb87f1be06de731428c", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "95f72a21e5a705e3d461a77d3c58472c85b26605", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "05f4ce699053127c5ab20a2c84091572dd8d1ba8", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "805ca79f496602d5478a75cd64ad879a8ba70bd0", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "3f0b82603ab09ce303c39e579c5faf9809411331", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "c42a62f11c094e50198e2a24ec2d1cbe549a2b1e", - "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "0285a2f530cd350be99fe85b2f60f540416b63ba", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "93c3eb07e35ded4fb593bf44272bc915364dc296", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "5c0b3d43ba1bc0e749fe9eaf659d698ba92aa9ee", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "8e07324db87ce30a4e797e668c75be9aaade4f6d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "20575fc0441fdbbba39fb010743f6923d5f7740c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "f6296b6d923dab130d081221d9739371b9e5040a", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "cefff6b014f6b9095d65c5a7a3e29022f3f0bd9d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "89ede1c5c0063f8d63d1f0c1355158eeb3c3933e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "1a823a1bee5b4f61c5a0989c5b454a6d8a30519e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "fcadb43012c27ad5530c4522d5cbbb6d1baa147f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "174c2531e5e96a2816c20ca277d55edc285527a9", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "7231a2faea45114a0a01fd2418f657b2dcfa7cfd", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "bbd5390d3aaa1952c85c5abcbecc34c2fd058dcb", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "52889e19b396c4dee93321049394d4298a7476be", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "7f97789e569f9d34970df4e8e8ad00a9d31ff230", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "0fcfaf4c6d95eb42bf90dc2ca73d67455986457a", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "c62ae2d588689936b2d27f69116a7a9e86372d9d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "fd8c9f2f4c02e0239cbd0643186c58669857f84f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "862396426266ef1d0182f9b717e5bbd9a11fb47c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "a84f5601d6b134feb89abd07e60e9827cdf70394", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b9a36a8512e37dcb0f64623d05fc56472ed7024d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "e94609f6735c4747c84ddd40f52e972115057d79", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "716956787500101e85b6a616306de2e87efc2930", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "60b8fd878f3cede285fdd1a64524ecadbe67a617", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "c263239a0ac840f07c4d7dc3b2becdb4f47d4fa8", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "abfabd8177b8ff32df9c13c83303f1d12abe1c89", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "8e07324db87ce30a4e797e668c75be9aaade4f6d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "cba6294d3e9ef6e45c9ded394b775b41a51753ad", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "9bdbce897f8e57889716279e9a052283cdb26127", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "7b9eb225e12569405756d66852a348b2f42a88ae", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "89ede1c5c0063f8d63d1f0c1355158eeb3c3933e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "16240f864d4c3a96a8f3821688aaf4f6485a449c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "5150f8faaa9a1500f1c36fe3fb602bdf943acb3f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "e559dd00a4581f7e381e04b803bc24d453e66cd2", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "7231a2faea45114a0a01fd2418f657b2dcfa7cfd", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "8de253e8df272c96ee96578576202cf5f4606c81", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "6bd8401154f2b7488aa70616eea938aede80f620", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "5937d5587f282d86f74298e9f250d1fcb38529aa", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "212b0cbc033c0308039591be9bf94d3f0a07444f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "c33ea0e1f757c745575118ec8a8685ffe63ec731", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "eb2fd8e8155a7adb3e4f21f74af9acb2e3186f95", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "72d91cf97c14db945c01d210d1810fe639d99589", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "df2c0449c3a8ea8e6707f2b6c42160edd4165428", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "f0c09d287fc75cda608a3c0b3b7bd667b5f0e875", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b0469f13b57aa5755767266cdfe5f76fb2d61928", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "da873538fc64106e12dbafc10c70865a862f443b", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "6b4f12f6318746b1a573f92288eafa5fbb7e75e6", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "3430c7a2a7db9d3e0c01e061c262dfad574059cf", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "be2dd9ab4e434a2df6e5d9ae03d82d91e97c82ff", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "7690b2871f6dcaad74ebe2b08dc9487ffd66dd0c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "4acb959e2d77f983807b64efdf4da5c27c033c14", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "a2f1e5baaff27d1dddc0cb6ba373c873e30162db", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "ba9e02ded5a3cbe27d615eead997e9c0d0efe3fb", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "405d11af371f13eab23ebf63172b25d7a4c2b76f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "dba46227c742e8f3b8cac0fa9433f68fdc528f37", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "5602e17ebba55e77452eff56f5c0e8d78e9fea2e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "a6634d944f00b4ae5b7ea82f74804cbf32274b9a", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "a85a04ca967b9b3e5b807d7bf0f64fb75369736c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "88cedf9a78d5edd86751e65b16295cc9e1b21859", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "8ebbc24174ea0713fed901bfa2424cd87ca36d34", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "639b9d4ad343d4c61070e2a9f8908c536869b273", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "1721952ea9ad513c5d27cb6eb201a6dd8eb7856d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "2749453bd405dbd3cd7286ca2f3385b756ceb1ee", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "617090c734abacd82296b6023a99cf8f755104f0", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "bb0bab8b924188dceb6fb0a1227d08a75efea6d3", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "818f4b79ef04e8934131a99d2b4396f0737fc105", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "51a0db529cb82b804d01a1287a7dff47f74f372d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "dbb362eaa48df9df732e23d3359459c87cab9483", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "89fce176b538b649c5f41d5a8595f286ce187c21", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "35b1224632fd122a13f84eacb2326acc7a71d52d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "6b7c9a4bff0504be035fcc47cc428fd119c55ac3", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "e6711df20c41861499997f3056223628a9b89c9f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "b5501a5daafe8f662a2c93ee73daad606379f8a7", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "a1cf7a0db5a988c8184d74642bb4de02ba41e4f0", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "7bb031a9e85b8ee087bd5d83d423b7a0a229c8c0", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "77c2e054a135e5d5aaea6ad10735701a92c7412f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "cd908d1d400ec0b1739834fe979c04f27aba6346", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "f681face065aa38d1fce87d9e2d5a0e7aec36ea0", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "10ac25ea539326ba295f1bdb0f2a5216d505450b", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "34b1f30032e54fdade62963c5b6dec6cb3600974", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "55ffe173fd05cba0a630a495ec4152241b5ea14a", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "d2a0e24146d2493ed2e90dc3657a77e4b1a64255", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "f6d77e750c80d488e2c811f0809670e3a780f536", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "e17f6d75a62d8b42816cdbb6db5948b92d4bf470", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "15e723e160a283cbd344cf19fbc31a448913b659", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "61ce730aa1118b1c11a33ea69f8d1264545ceb5f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "1a169a4ca37bd7633b1d83fdf554dd1b6cfc9f1d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "78a2bc8ce8a2577a512e080fe29aa109fc428993", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "b539d03e98bf31d2456b146e4838e588ab74fdc5", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "e185d96966dc4e59ee927f615240c71411e6c9f9", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "78325eb9a2b4f431c75055d8300018723972474d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "11c9b68de3ebbecf7e4e53b4eee61a28cc01c87b", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "9b4691f5347b4881206263ba76f09267bfef39f2", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "22fc7a62dadd34b5ba0e99ca4ca81c221bdee67e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "1558cdd54bb7b8eb357dc90a338ab68ca73a2535", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "5b118ca6ad7f81c7b1dbc770f20f7cdc91644aa5", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=y\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "0433e5c4e629bdf0c9ea066e364553a216e45a6f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "d35e3f058245d3ae1cdd013f0312f6ceb3d5dc83", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "5d56f491a2f20e45cc6b757a9728eab1340de7b3", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "b3c3cd4f4ff5aa2b169725231b11efd2d7d62b8e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "9bf6ed5a8d4bbb98b138095d7476692bb1dfe1cc", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "656de832b659ca3f512780a5c55287683c777f3c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "683c6cfc09a93e8ccd166604be2eda7468f35366", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "ad8d37429396591536af50dcae506bf0d484892c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "c3a28cbabe1d792fe9d8036328aa0f48c88195bc", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "6a8188fbcc40255ef679e3044ac67fcf704bd5a7", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "eed06ed3105fad22c39b7820b65e3400c2f011ca", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "8b2d860e35a7aa384b4e20f809677222044bba8f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "b8e5eadd085aaae5dd9c46e968bd98ae8f41621e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "2101a305ed8270a59db40fa515d755dd9cceb57f", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "5aa48127236bf5fbc6272346d7d34eb64be23dca", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "decc440cb3bad96278f4ed53670994e11518d262", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "8e60f4d49705d58a2bdfdb4ade03ba84c4aa3a79", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "4dc9cf85be900bd90f879806ea96ee31be4d0f2a", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "00585a4542ff68734978422efbae5d90ba162dba", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "5ca1a04f288c1e9631b81e64312e2d7aa54ce023", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "0e0b412d5c0a7bc08fdcb604cee8248bb179cb4c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "249e823304ccdff515ac0b33eda598e860987ec9", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "ef5d9fdc39cc1319d3793fca67637a459a055862", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "3f408d938ba25efab5c5888823414dac82f3b52a", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "b1fcbee7e59e01d5ea29a990857059b50aff3471", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "049ad28b708df9621974e28b43647c667ceb1cd5", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "70bf33ba77d0f6b795cc6c2666b520d2376bb8df", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "5cb83e236fe91b3c4efecb415bd1cfc810a5e0ab", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "369cb5580f67c8ce25856a77c08809f2641822cf", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "d3c3cc63ac3b6b68ad37594d1e8a7787a82b0352", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "a759667f0e3051eec440da1a3ffb7c27d525f6d1", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "e243beb22a9d57d3a1836848ba1c60a32e63f32c", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b68ef3ac3b49e13b0da29e786f9bd8605945d8bf", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "0c37d02822bef03f974f096b6682cb7f3be75025", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "6ca457a905cf6411a81b261d9aaea0353ba84146", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "e132b55b6ecdb20f0dc41e6a06360805f1585abb", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "85822a43fc1a66df5f544cb1f0383400599b4ff2", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "20652684bfa735bc4e74c2b8dc3f1bea19ec209a", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "9dcdf113726a7bb14cae0a8f63c5374a021e0017", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "18f2446fd7463fe7f2b21eb1862f1d73c99523d6", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "ae447f4c2380c18677b03b3a6102e4981ef6355b", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "236646109f3dbd79880e5ddd0ad28fe0c257bc04", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "1a5695bba4015bcc4630762201a31321f8b88c92", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "b5605d1529dc7a7884fd72ce917e3c4e221783c7", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "2e48465dd9c21f6e49d1470d75bced4615c8fefc", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "0e927e6af1110c83d1012615359e2fff191eb3aa", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "450272bd79b082692c5ac1035f22ba8b417cc764", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "290b567743edaf08daed1279a0f4e2bcedb9498b", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=png\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "85d913a7e81dcad0b87cfa528055d2e95c6fbf52", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "34360c80e201845e7e904deb8ce774417214eac6", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "32f8ccd3a753977332546d1f9732fc8f2e21c07d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "585922347b41aece9109ba2ab69f2f43cf1b9ae5", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "435bfa5f98c87025f7e368d5a5fa35e695cadb97", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "75f90f35179354377c5d92777beb1d83e1fbb814", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "b5ec36d5e34bc508d337d71206959fcd6ba1c9b0", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "15b08b87536f6fc1b36fdec6f2f9922c2586a11d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "2c64f4e06ddb3783c105460ce0b0876829165025", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "6cdea96561e081e9f0856ac503e112df604980fa", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "675d1e816411ff3ab31140e16c3b71a54a652769", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "b6a35167173cfbeee2395accd66bae2f60648021", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "09013c04415b9dbf465423b00f7b3cfc966a9926", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "0dc2c09a1658e659c49f008971d554e4be1e4cdf", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "6ece624fd4d2c74c80e086309df0e30921c2c069", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "4a8a7d7a5aae8c6ab967799cdf7707af4b749056", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "fcbe83ea4a0d521da969078e3a0006be480c8617", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "82522225b52c06a78a18b67cc75f21d95f3da3eb", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "097d15330cfc610a2d2c9143f35836c6a69252b6", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "9828517c11c25609467cf0730734c09d0c784605", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "5244795ccdb11c707f6d93b226da069f03aa9447", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "c0f7f9c18efc491cf622db0aba466de8ff5c988e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "a42f422d2aa954a37809115eea23a9587d97836e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "a0b5848b3b485677de83a6f59fc17eb62349f453", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=y\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "52a78b4317abb853bd3c6ba06f7502940dd9d4f7", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "3d39b5b5d5dd6c30883169b119465557fa453d15", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "9ab914f110a34102a5249b3b6f739d60feab5923", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "a081b643dad7fa25d845d03762728be00a72c80d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "969a523eabb8c725cb21bf4a02a1f4b65d2b51ad", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "27787d555bae9a366082864d17ade0b788eff6a5", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "da7e10bad26c5c31ff5135f09923a9ec3a9d54dd", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "088363f6758015064894de6cea4e06cc92c917a5", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "0ae1d10b3d42f53034393c379d12796efec8339e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "703fed4561f91a7c659e642f7aa9c885b85cf8fd", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "6b7e193a780713c121fb0b38530e2bfc18f2771b", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "d6409cd8a932605492e47fdb855ac116e5bd6ff2", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=y\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "c07e78c84c62b45e56577cc1c6f97dcc6c0cbd4b", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "3e79fc4b5f5503d087a1f7e361b9386826a2bee3", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "635beda7ca6a72113ee7069e99b40b292d80034d", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "141cf0ddf1085513688229b4a67eb7c6ed587f85", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=line\/show_error_bars=n\/show_error_labels=n\/": "9c5209cd0aa0a8a35ab25883fbf24d39a033be56", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=y\/": "38d2a931c6d0f486f7801ceb6e9e131dfe62a6b3", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=y\/show_error_labels=n\/": "2c26b9b32b0d9f16d3e821b96579908b18749567", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=y\/": "67df79e6d0b6b61ffaf6b4c4c0aacb0474885d14", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=area\/show_error_bars=n\/show_error_labels=n\/": "b1139b54173ed4b0ec4afe76069acc9d9f21b97a", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=y\/": "630eb6de6aa27bda2701c353f10a72e5e5f43f06", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=y\/show_error_labels=n\/": "e2ada5ed65cbdd24586f4be480d3615843f29ff3", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=y\/": "e0ae273018c1cc7dee4fd65b9abc51f9d402ec4e", + "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=person\/log_scale=n\/format=svg\/show_aggregate_labels=n\/show_trend_line=n\/display_type=bar\/show_error_bars=n\/show_error_labels=n\/": "f6139a391e0445bf059e1d06fb32718683036b28", "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=y\/": "c789ba80a2aa100c7f0202830b3c847ef69c75f1", "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=y\/show_error_labels=n\/": "9b1d61454d1379f9e1071210575d94bf01e46f9b", "dataset_type=timeseries\/statistic=avg_node_hours\/group_by=resource\/log_scale=y\/format=png\/show_aggregate_labels=y\/show_trend_line=y\/display_type=line\/show_error_bars=n\/show_error_labels=y\/": "c789ba80a2aa100c7f0202830b3c847ef69c75f1", From 1f68a28a29b9a1eed9f79e22822d06480588c2e0 Mon Sep 17 00:00:00 2001 From: "Joseph P. White" Date: Thu, 13 Jun 2019 13:05:27 -0400 Subject: [PATCH 3/3] Update ui tests --- tests/ui/test/specs/xdmod/metricExplorer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ui/test/specs/xdmod/metricExplorer.js b/tests/ui/test/specs/xdmod/metricExplorer.js index 2c48781138..2684539aa4 100644 --- a/tests/ui/test/specs/xdmod/metricExplorer.js +++ b/tests/ui/test/specs/xdmod/metricExplorer.js @@ -139,11 +139,11 @@ describe('Metric Explorer', function metricExplorer() { me.checkChart('untitled query 1', 'CPU Hour', [expected.legend + ' [CPU Hours: Total]', expected.legend + ' [CPU Hours: Per Job]']); }); - it('Switch to aggregate chart (expect incompatible metric error)', function () { + it('Switch to aggregate chart', function () { me.waitForChartToChange(me.switchToAggregate); }); - it('Check that error message is displayed', function () { - me.checkChart('An error occurred while loading the chart.', null, null, false); + it('Chart contains correct information', function () { + me.checkChart('untitled query 1', 'CPU Hour', ['CPU Hours: Total', 'CPU Hours: Per Job']); }); it('Undo Scratch Pad switch to aggregate', function () { me.waitForChartToChange(me.undoAggregateOrTrendLine, $container);